ETH Price: $2,501.28 (-0.60%)

Token

smolfrensworld (sfw)
 

Overview

Max Total Supply

662 sfw

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 sfw
0x4d0952cf53f1941d862e0641f6b705c3d2a05929
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:
smolfrensworld

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-06-29
*/

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


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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    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;
    }

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary 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;
        assembly { // Cast aux without masking.
            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;
    }

    /**
     * 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 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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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/smolfren.sol



pragma solidity >=0.8.9 <0.9.0;





contract smolfrensworld is ERC721A, Ownable, ReentrancyGuard {
    
    using Strings for uint256;
    
    //it's cco summer and we are throwing it back to the summer of 21 with mfers. yup 22 1/1 for summer of 22
    uint256 private maxTotalTokens;
    
    //boring stuff
    string private _currentBaseURI;
    
    //How many reserved we keep. 
    uint private _reservedMints;
    
    //the max amount of reserved for the dev wallter for stuff and things.
    uint private maxReservedMints = 222;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {WeAreFrens, YouWishYouCouldMint}

    State private saleState_;
    
    //declaring initial values for variables
    constructor() ERC721A('smolfrensworld', 'sfw') {
        maxTotalTokens = 2022;

        _currentBaseURI = "ipfs://QmV7kgsn9ETrzfH1aYNcyfPa6NsUW8UJPXzjgn7THa68yM/";
    }
    
    //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_;
    }

    function setSaleState(uint newSaleState) public onlyOwner {
        require(newSaleState < 2, "Invalid Sale State!");
        if (newSaleState == 0) {
            saleState_ = State.WeAreFrens;
        }
        else {
            saleState_ = State.YouWishYouCouldMint;
        }
    }

    //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(saleState_ == State.YouWishYouCouldMint, "Public Sale in not open yet!");
        require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] == 0, "Wallet has already have minted an NFT!");

        _safeMint(msg.sender, 10);
        mintsPerAddress[msg.sender] += 10;
    }
    
    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
    function saleState() public view returns(State){
        return saleState_;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[],"name":"saleState","outputs":[{"internalType":"enum smolfrensworld.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","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"}]

608060405260de600d553480156200001657600080fd5b506040518060400160405280600e81526020017f736d6f6c6672656e73776f726c640000000000000000000000000000000000008152506040518060400160405280600381526020017f736677000000000000000000000000000000000000000000000000000000000081525081600290816200009491906200046e565b508060039081620000a691906200046e565b50620000b76200012160201b60201c565b6000819055505050620000df620000d36200012660201b60201c565b6200012e60201b60201c565b60016009819055506107e6600a8190555060405180606001604052806036815260200162003e4360369139600b90816200011a91906200046e565b5062000555565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027657607f821691505b6020821081036200028c576200028b6200022e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b7565b620003028683620002b7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200034f6200034962000343846200031a565b62000324565b6200031a565b9050919050565b6000819050919050565b6200036b836200032e565b620003836200037a8262000356565b848454620002c4565b825550505050565b600090565b6200039a6200038b565b620003a781848462000360565b505050565b5b81811015620003cf57620003c360008262000390565b600181019050620003ad565b5050565b601f8211156200041e57620003e88162000292565b620003f384620002a7565b8101602085101562000403578190505b6200041b6200041285620002a7565b830182620003ac565b50505b505050565b600082821c905092915050565b6000620004436000198460080262000423565b1980831691505092915050565b60006200045e838362000430565b9150826002028217905092915050565b6200047982620001f4565b67ffffffffffffffff811115620004955762000494620001ff565b5b620004a182546200025d565b620004ae828285620003d3565b600060209050601f831160018114620004e65760008415620004d1578287015190505b620004dd858262000450565b8655506200054d565b601f198416620004f68662000292565b60005b828110156200052057848901518255600182019150602085019450602081019050620004f9565b868310156200054057848901516200053c601f89168262000430565b8355505b6001600288020188555050505b505050505050565b6138de80620005656000396000f3fe6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce9190612522565b610651565b6040516101e0919061256a565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b919061261e565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612676565b610801565b60405161025f91906126e4565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612676565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b3919061272b565b6109a3565b005b3480156102c657600080fd5b506102cf610b49565b005b3480156102dd57600080fd5b506102e6610dcc565b6040516102f3919061277a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612795565b610de3565b005b34801561033157600080fd5b5061034c600480360381019061034791906127d5565b610f2e565b005b34801561035a57600080fd5b5061037560048036038101906103709190612828565b610f3e565b604051610382919061277a565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061298a565b610f56565b005b3480156103c057600080fd5b506103c9610fe5565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906127d5565b6110bd565b005b34801561040057600080fd5b506104096110dd565b604051610416919061277a565b60405180910390f35b34801561042b57600080fd5b50610434611170565b6040516104419190612a4a565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612676565b611187565b60405161047e91906126e4565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612828565b611199565b6040516104bb919061277a565b60405180910390f35b3480156104d057600080fd5b506104d9611251565b005b3480156104e757600080fd5b506104f06112d9565b6040516104fd91906126e4565b60405180910390f35b34801561051257600080fd5b5061051b611303565b604051610528919061261e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612a91565b611395565b005b34801561056657600080fd5b5061056f61150c565b60405161057c919061277a565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612b72565b611590565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612676565b611603565b6040516105e2919061261e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612bf5565b61169a565b60405161061f919061256a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612828565b61172e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612c64565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d611825565b73ffffffffffffffffffffffffffffffffffffffff1661079b6112d9565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612ce1565b60405180910390fd5b6107f9610dcc565b600a81905550565b600061080c8261182d565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610885611825565b73ffffffffffffffffffffffffffffffffffffffff166108a36112d9565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612ce1565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612d4d565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a576109696129d3565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a576109996129d3565b5b02179055505b50565b60006109ae8261188c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a34611958565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b611958565b61169a565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612db9565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612e4b565b60405180910390fd5b600180811115610c1757610c166129d3565b5b600f60009054906101000a900460ff166001811115610c3957610c386129d3565b5b14610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612eb7565b60405180910390fd5b600c54600d54610c899190612f06565b600a54610c969190612f06565b610c9e610dcc565b10610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612f86565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613018565b60405180910390fd5b610d6b33600a611960565b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbb9190613038565b925050819055506001600981905550565b6000610dd661197e565b6001546000540303905090565b610deb611825565b73ffffffffffffffffffffffffffffffffffffffff16610e096112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612ce1565b60405180910390fd5b600d5482600c54610e709190613038565b1115610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613100565b60405180910390fd5b610ebb8183611960565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0a9190613038565b9250508190555081600c6000828254610f239190613038565b925050819055505050565b610f39838383611983565b505050565b600e6020528060005260406000206000915090505481565b610f5e611825565b73ffffffffffffffffffffffffffffffffffffffff16610f7c6112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612ce1565b60405180910390fd5b80600b9081610fe191906132cc565b5050565b610fed611825565b73ffffffffffffffffffffffffffffffffffffffff1661100b6112d9565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890612ce1565b60405180910390fd5b600061106b61150c565b9050600081116110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613410565b60405180910390fd5b6110ba3382611d2a565b50565b6110d883838360405180602001604052806000815250611590565b505050565b60006110e7611825565b73ffffffffffffffffffffffffffffffffffffffff166111056112d9565b73ffffffffffffffffffffffffffffffffffffffff161461115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612ce1565b60405180910390fd5b600c54600d5461116b9190612f06565b905090565b6000600f60009054906101000a900460ff16905090565b60006111928261188c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611200576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611259611825565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612ce1565b60405180910390fd5b6112d76000611ddb565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131290612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90612c64565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b61139d611958565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611401576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140e611958565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114bb611958565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611500919061256a565b60405180910390a35050565b6000611516611825565b73ffffffffffffffffffffffffffffffffffffffff166115346112d9565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612ce1565b60405180910390fd5b47905090565b61159b848484611983565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115fd576115c684848484611ea1565b6115fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061160e8261182d565b61164d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611644906134a2565b60405180910390fd5b60018261165a9190613038565b91506000611666611ff1565b90508061167284612083565b60405160200161168392919061354a565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611736611825565b73ffffffffffffffffffffffffffffffffffffffff166117546112d9565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612ce1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611810906135eb565b60405180910390fd5b61182281611ddb565b50565b600033905090565b60008161183861197e565b11158015611847575060005482105b8015611885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061189b61197e565b11611921576000548110156119205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361191e575b600081036119145760046000836001900393508381526020019081526020016000205490506118ea565b8092505050611953565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b61197a8282604051806020016040528060008152506121e3565b5050565b600090565b600061198e8261188c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a16611958565b73ffffffffffffffffffffffffffffffffffffffff161480611a455750611a4485611a3f611958565b61169a565b5b80611a8a5750611a53611958565b73ffffffffffffffffffffffffffffffffffffffff16611a7284610801565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ac3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b368585856001612496565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c338661249c565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cbb5760006001840190506000600460008381526020019081526020016000205403611cb9576000548114611cb8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2385858560016124a6565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d509061363c565b60006040518083038185875af1925050503d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b5050905080611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061369d565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec7611958565b8786866040518563ffffffff1660e01b8152600401611ee99493929190613712565b6020604051808303816000875af1925050508015611f2557506040513d601f19601f82011682018060405250810190611f229190613773565b60015b611f9e573d8060008114611f55576040519150601f19603f3d011682016040523d82523d6000602084013e611f5a565b606091505b506000815103611f96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461200090612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461202c90612c64565b80156120795780601f1061204e57610100808354040283529160200191612079565b820191906000526020600020905b81548152906001019060200180831161205c57829003601f168201915b5050505050905090565b6060600082036120ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121de565b600082905060005b600082146120fc5780806120e5906137a0565b915050600a826120f59190613817565b91506120d2565b60008167ffffffffffffffff8111156121185761211761285f565b5b6040519080825280601f01601f19166020018201604052801561214a5781602001600182028036833780820191505090505b5090505b600085146121d7576001826121639190612f06565b9150600a856121729190613848565b603061217e9190613038565b60f81b81838151811061219457612193613879565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d09190613817565b945061214e565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361224f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612289576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122966000858386612496565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122fb600185146124ac565b901b60a042901b61230b8661249c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461240f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123bf6000878480600101955087611ea1565b6123f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235057826000541461240a57600080fd5b61247a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612410575b81600081905550505061249060008583866124a6565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ff816124ca565b811461250a57600080fd5b50565b60008135905061251c816124f6565b92915050565b600060208284031215612538576125376124c0565b5b60006125468482850161250d565b91505092915050565b60008115159050919050565b6125648161254f565b82525050565b600060208201905061257f600083018461255b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125bf5780820151818401526020810190506125a4565b838111156125ce576000848401525b50505050565b6000601f19601f8301169050919050565b60006125f082612585565b6125fa8185612590565b935061260a8185602086016125a1565b612613816125d4565b840191505092915050565b6000602082019050818103600083015261263881846125e5565b905092915050565b6000819050919050565b61265381612640565b811461265e57600080fd5b50565b6000813590506126708161264a565b92915050565b60006020828403121561268c5761268b6124c0565b5b600061269a84828501612661565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ce826126a3565b9050919050565b6126de816126c3565b82525050565b60006020820190506126f960008301846126d5565b92915050565b612708816126c3565b811461271357600080fd5b50565b600081359050612725816126ff565b92915050565b60008060408385031215612742576127416124c0565b5b600061275085828601612716565b925050602061276185828601612661565b9150509250929050565b61277481612640565b82525050565b600060208201905061278f600083018461276b565b92915050565b600080604083850312156127ac576127ab6124c0565b5b60006127ba85828601612661565b92505060206127cb85828601612716565b9150509250929050565b6000806000606084860312156127ee576127ed6124c0565b5b60006127fc86828701612716565b935050602061280d86828701612716565b925050604061281e86828701612661565b9150509250925092565b60006020828403121561283e5761283d6124c0565b5b600061284c84828501612716565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612897826125d4565b810181811067ffffffffffffffff821117156128b6576128b561285f565b5b80604052505050565b60006128c96124b6565b90506128d5828261288e565b919050565b600067ffffffffffffffff8211156128f5576128f461285f565b5b6128fe826125d4565b9050602081019050919050565b82818337600083830152505050565b600061292d612928846128da565b6128bf565b9050828152602081018484840111156129495761294861285a565b5b61295484828561290b565b509392505050565b600082601f83011261297157612970612855565b5b813561298184826020860161291a565b91505092915050565b6000602082840312156129a05761299f6124c0565b5b600082013567ffffffffffffffff8111156129be576129bd6124c5565b5b6129ca8482850161295c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612a1357612a126129d3565b5b50565b6000819050612a2482612a02565b919050565b6000612a3482612a16565b9050919050565b612a4481612a29565b82525050565b6000602082019050612a5f6000830184612a3b565b92915050565b612a6e8161254f565b8114612a7957600080fd5b50565b600081359050612a8b81612a65565b92915050565b60008060408385031215612aa857612aa76124c0565b5b6000612ab685828601612716565b9250506020612ac785828601612a7c565b9150509250929050565b600067ffffffffffffffff821115612aec57612aeb61285f565b5b612af5826125d4565b9050602081019050919050565b6000612b15612b1084612ad1565b6128bf565b905082815260208101848484011115612b3157612b3061285a565b5b612b3c84828561290b565b509392505050565b600082601f830112612b5957612b58612855565b5b8135612b69848260208601612b02565b91505092915050565b60008060008060808587031215612b8c57612b8b6124c0565b5b6000612b9a87828801612716565b9450506020612bab87828801612716565b9350506040612bbc87828801612661565b925050606085013567ffffffffffffffff811115612bdd57612bdc6124c5565b5b612be987828801612b44565b91505092959194509250565b60008060408385031215612c0c57612c0b6124c0565b5b6000612c1a85828601612716565b9250506020612c2b85828601612716565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c7c57607f821691505b602082108103612c8f57612c8e612c35565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ccb602083612590565b9150612cd682612c95565b602082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612d37601383612590565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612da3601f83612590565b9150612dae82612d6d565b602082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e35602183612590565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612ea1601c83612590565b9150612eac82612e6b565b602082019050919050565b60006020820190508181036000830152612ed081612e94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1182612640565b9150612f1c83612640565b925082821015612f2f57612f2e612ed7565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612f70601e83612590565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000613002602683612590565b915061300d82612fa6565b604082019050919050565b6000602082019050818103600083015261303181612ff5565b9050919050565b600061304382612640565b915061304e83612640565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561308357613082612ed7565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006130ea602783612590565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613145565b61318c8683613145565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131c96131c46131bf84612640565b6131a4565b612640565b9050919050565b6000819050919050565b6131e3836131ae565b6131f76131ef826131d0565b848454613152565b825550505050565b600090565b61320c6131ff565b6132178184846131da565b505050565b5b8181101561323b57613230600082613204565b60018101905061321d565b5050565b601f8211156132805761325181613120565b61325a84613135565b81016020851015613269578190505b61327d61327585613135565b83018261321c565b50505b505050565b600082821c905092915050565b60006132a360001984600802613285565b1980831691505092915050565b60006132bc8383613292565b9150826002028217905092915050565b6132d582612585565b67ffffffffffffffff8111156132ee576132ed61285f565b5b6132f88254612c64565b61330382828561323f565b600060209050601f8311600181146133365760008415613324578287015190505b61332e85826132b0565b865550613396565b601f19841661334486613120565b60005b8281101561336c57848901518255600182019150602085019450602081019050613347565b868310156133895784890151613385601f891682613292565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b60006133fa602283612590565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061348c602f83612590565b915061349782613430565b604082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b600081905092915050565b60006134d882612585565b6134e281856134c2565b93506134f28185602086016125a1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135346005836134c2565b915061353f826134fe565b600582019050919050565b600061355682856134cd565b915061356282846134cd565b915061356d82613527565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d5602683612590565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b600081905092915050565b50565b600061362660008361360b565b915061363182613616565b600082019050919050565b600061364782613619565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613687601483612590565b915061369282613651565b602082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136e4826136bd565b6136ee81856136c8565b93506136fe8185602086016125a1565b613707816125d4565b840191505092915050565b600060808201905061372760008301876126d5565b61373460208301866126d5565b613741604083018561276b565b818103606083015261375381846136d9565b905095945050505050565b60008151905061376d816124f6565b92915050565b600060208284031215613789576137886124c0565b5b60006137978482850161375e565b91505092915050565b60006137ab82612640565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137dd576137dc612ed7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382282612640565b915061382d83612640565b92508261383d5761383c6137e8565b5b828204905092915050565b600061385382612640565b915061385e83612640565b92508261386e5761386d6137e8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122041a1be4df7b1ce6b926eab670a3347cc240c7fbbee42821d5cf36d442e9a322c64736f6c634300080f0033697066733a2f2f516d56376b67736e394554727a66483161594e6379665061364e73555738554a50587a6a676e375448613638794d2f

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce9190612522565b610651565b6040516101e0919061256a565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b919061261e565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612676565b610801565b60405161025f91906126e4565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612676565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b3919061272b565b6109a3565b005b3480156102c657600080fd5b506102cf610b49565b005b3480156102dd57600080fd5b506102e6610dcc565b6040516102f3919061277a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612795565b610de3565b005b34801561033157600080fd5b5061034c600480360381019061034791906127d5565b610f2e565b005b34801561035a57600080fd5b5061037560048036038101906103709190612828565b610f3e565b604051610382919061277a565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061298a565b610f56565b005b3480156103c057600080fd5b506103c9610fe5565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906127d5565b6110bd565b005b34801561040057600080fd5b506104096110dd565b604051610416919061277a565b60405180910390f35b34801561042b57600080fd5b50610434611170565b6040516104419190612a4a565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612676565b611187565b60405161047e91906126e4565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612828565b611199565b6040516104bb919061277a565b60405180910390f35b3480156104d057600080fd5b506104d9611251565b005b3480156104e757600080fd5b506104f06112d9565b6040516104fd91906126e4565b60405180910390f35b34801561051257600080fd5b5061051b611303565b604051610528919061261e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612a91565b611395565b005b34801561056657600080fd5b5061056f61150c565b60405161057c919061277a565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612b72565b611590565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612676565b611603565b6040516105e2919061261e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612bf5565b61169a565b60405161061f919061256a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612828565b61172e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612c64565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d611825565b73ffffffffffffffffffffffffffffffffffffffff1661079b6112d9565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612ce1565b60405180910390fd5b6107f9610dcc565b600a81905550565b600061080c8261182d565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610885611825565b73ffffffffffffffffffffffffffffffffffffffff166108a36112d9565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612ce1565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612d4d565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a576109696129d3565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a576109996129d3565b5b02179055505b50565b60006109ae8261188c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a34611958565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b611958565b61169a565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612db9565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612e4b565b60405180910390fd5b600180811115610c1757610c166129d3565b5b600f60009054906101000a900460ff166001811115610c3957610c386129d3565b5b14610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612eb7565b60405180910390fd5b600c54600d54610c899190612f06565b600a54610c969190612f06565b610c9e610dcc565b10610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612f86565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613018565b60405180910390fd5b610d6b33600a611960565b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbb9190613038565b925050819055506001600981905550565b6000610dd661197e565b6001546000540303905090565b610deb611825565b73ffffffffffffffffffffffffffffffffffffffff16610e096112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612ce1565b60405180910390fd5b600d5482600c54610e709190613038565b1115610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613100565b60405180910390fd5b610ebb8183611960565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0a9190613038565b9250508190555081600c6000828254610f239190613038565b925050819055505050565b610f39838383611983565b505050565b600e6020528060005260406000206000915090505481565b610f5e611825565b73ffffffffffffffffffffffffffffffffffffffff16610f7c6112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612ce1565b60405180910390fd5b80600b9081610fe191906132cc565b5050565b610fed611825565b73ffffffffffffffffffffffffffffffffffffffff1661100b6112d9565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890612ce1565b60405180910390fd5b600061106b61150c565b9050600081116110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613410565b60405180910390fd5b6110ba3382611d2a565b50565b6110d883838360405180602001604052806000815250611590565b505050565b60006110e7611825565b73ffffffffffffffffffffffffffffffffffffffff166111056112d9565b73ffffffffffffffffffffffffffffffffffffffff161461115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612ce1565b60405180910390fd5b600c54600d5461116b9190612f06565b905090565b6000600f60009054906101000a900460ff16905090565b60006111928261188c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611200576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611259611825565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612ce1565b60405180910390fd5b6112d76000611ddb565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131290612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90612c64565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b61139d611958565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611401576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140e611958565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114bb611958565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611500919061256a565b60405180910390a35050565b6000611516611825565b73ffffffffffffffffffffffffffffffffffffffff166115346112d9565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612ce1565b60405180910390fd5b47905090565b61159b848484611983565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115fd576115c684848484611ea1565b6115fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061160e8261182d565b61164d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611644906134a2565b60405180910390fd5b60018261165a9190613038565b91506000611666611ff1565b90508061167284612083565b60405160200161168392919061354a565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611736611825565b73ffffffffffffffffffffffffffffffffffffffff166117546112d9565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612ce1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611810906135eb565b60405180910390fd5b61182281611ddb565b50565b600033905090565b60008161183861197e565b11158015611847575060005482105b8015611885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061189b61197e565b11611921576000548110156119205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361191e575b600081036119145760046000836001900393508381526020019081526020016000205490506118ea565b8092505050611953565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b61197a8282604051806020016040528060008152506121e3565b5050565b600090565b600061198e8261188c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a16611958565b73ffffffffffffffffffffffffffffffffffffffff161480611a455750611a4485611a3f611958565b61169a565b5b80611a8a5750611a53611958565b73ffffffffffffffffffffffffffffffffffffffff16611a7284610801565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ac3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b368585856001612496565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c338661249c565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cbb5760006001840190506000600460008381526020019081526020016000205403611cb9576000548114611cb8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2385858560016124a6565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d509061363c565b60006040518083038185875af1925050503d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b5050905080611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061369d565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec7611958565b8786866040518563ffffffff1660e01b8152600401611ee99493929190613712565b6020604051808303816000875af1925050508015611f2557506040513d601f19601f82011682018060405250810190611f229190613773565b60015b611f9e573d8060008114611f55576040519150601f19603f3d011682016040523d82523d6000602084013e611f5a565b606091505b506000815103611f96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461200090612c64565b80601f016020809104026020016040519081016040528092919081815260200182805461202c90612c64565b80156120795780601f1061204e57610100808354040283529160200191612079565b820191906000526020600020905b81548152906001019060200180831161205c57829003601f168201915b5050505050905090565b6060600082036120ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121de565b600082905060005b600082146120fc5780806120e5906137a0565b915050600a826120f59190613817565b91506120d2565b60008167ffffffffffffffff8111156121185761211761285f565b5b6040519080825280601f01601f19166020018201604052801561214a5781602001600182028036833780820191505090505b5090505b600085146121d7576001826121639190612f06565b9150600a856121729190613848565b603061217e9190613038565b60f81b81838151811061219457612193613879565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d09190613817565b945061214e565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361224f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612289576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122966000858386612496565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122fb600185146124ac565b901b60a042901b61230b8661249c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461240f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123bf6000878480600101955087611ea1565b6123f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235057826000541461240a57600080fd5b61247a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612410575b81600081905550505061249060008583866124a6565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ff816124ca565b811461250a57600080fd5b50565b60008135905061251c816124f6565b92915050565b600060208284031215612538576125376124c0565b5b60006125468482850161250d565b91505092915050565b60008115159050919050565b6125648161254f565b82525050565b600060208201905061257f600083018461255b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125bf5780820151818401526020810190506125a4565b838111156125ce576000848401525b50505050565b6000601f19601f8301169050919050565b60006125f082612585565b6125fa8185612590565b935061260a8185602086016125a1565b612613816125d4565b840191505092915050565b6000602082019050818103600083015261263881846125e5565b905092915050565b6000819050919050565b61265381612640565b811461265e57600080fd5b50565b6000813590506126708161264a565b92915050565b60006020828403121561268c5761268b6124c0565b5b600061269a84828501612661565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ce826126a3565b9050919050565b6126de816126c3565b82525050565b60006020820190506126f960008301846126d5565b92915050565b612708816126c3565b811461271357600080fd5b50565b600081359050612725816126ff565b92915050565b60008060408385031215612742576127416124c0565b5b600061275085828601612716565b925050602061276185828601612661565b9150509250929050565b61277481612640565b82525050565b600060208201905061278f600083018461276b565b92915050565b600080604083850312156127ac576127ab6124c0565b5b60006127ba85828601612661565b92505060206127cb85828601612716565b9150509250929050565b6000806000606084860312156127ee576127ed6124c0565b5b60006127fc86828701612716565b935050602061280d86828701612716565b925050604061281e86828701612661565b9150509250925092565b60006020828403121561283e5761283d6124c0565b5b600061284c84828501612716565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612897826125d4565b810181811067ffffffffffffffff821117156128b6576128b561285f565b5b80604052505050565b60006128c96124b6565b90506128d5828261288e565b919050565b600067ffffffffffffffff8211156128f5576128f461285f565b5b6128fe826125d4565b9050602081019050919050565b82818337600083830152505050565b600061292d612928846128da565b6128bf565b9050828152602081018484840111156129495761294861285a565b5b61295484828561290b565b509392505050565b600082601f83011261297157612970612855565b5b813561298184826020860161291a565b91505092915050565b6000602082840312156129a05761299f6124c0565b5b600082013567ffffffffffffffff8111156129be576129bd6124c5565b5b6129ca8482850161295c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612a1357612a126129d3565b5b50565b6000819050612a2482612a02565b919050565b6000612a3482612a16565b9050919050565b612a4481612a29565b82525050565b6000602082019050612a5f6000830184612a3b565b92915050565b612a6e8161254f565b8114612a7957600080fd5b50565b600081359050612a8b81612a65565b92915050565b60008060408385031215612aa857612aa76124c0565b5b6000612ab685828601612716565b9250506020612ac785828601612a7c565b9150509250929050565b600067ffffffffffffffff821115612aec57612aeb61285f565b5b612af5826125d4565b9050602081019050919050565b6000612b15612b1084612ad1565b6128bf565b905082815260208101848484011115612b3157612b3061285a565b5b612b3c84828561290b565b509392505050565b600082601f830112612b5957612b58612855565b5b8135612b69848260208601612b02565b91505092915050565b60008060008060808587031215612b8c57612b8b6124c0565b5b6000612b9a87828801612716565b9450506020612bab87828801612716565b9350506040612bbc87828801612661565b925050606085013567ffffffffffffffff811115612bdd57612bdc6124c5565b5b612be987828801612b44565b91505092959194509250565b60008060408385031215612c0c57612c0b6124c0565b5b6000612c1a85828601612716565b9250506020612c2b85828601612716565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c7c57607f821691505b602082108103612c8f57612c8e612c35565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ccb602083612590565b9150612cd682612c95565b602082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612d37601383612590565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612da3601f83612590565b9150612dae82612d6d565b602082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e35602183612590565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612ea1601c83612590565b9150612eac82612e6b565b602082019050919050565b60006020820190508181036000830152612ed081612e94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1182612640565b9150612f1c83612640565b925082821015612f2f57612f2e612ed7565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612f70601e83612590565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000613002602683612590565b915061300d82612fa6565b604082019050919050565b6000602082019050818103600083015261303181612ff5565b9050919050565b600061304382612640565b915061304e83612640565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561308357613082612ed7565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006130ea602783612590565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613145565b61318c8683613145565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131c96131c46131bf84612640565b6131a4565b612640565b9050919050565b6000819050919050565b6131e3836131ae565b6131f76131ef826131d0565b848454613152565b825550505050565b600090565b61320c6131ff565b6132178184846131da565b505050565b5b8181101561323b57613230600082613204565b60018101905061321d565b5050565b601f8211156132805761325181613120565b61325a84613135565b81016020851015613269578190505b61327d61327585613135565b83018261321c565b50505b505050565b600082821c905092915050565b60006132a360001984600802613285565b1980831691505092915050565b60006132bc8383613292565b9150826002028217905092915050565b6132d582612585565b67ffffffffffffffff8111156132ee576132ed61285f565b5b6132f88254612c64565b61330382828561323f565b600060209050601f8311600181146133365760008415613324578287015190505b61332e85826132b0565b865550613396565b601f19841661334486613120565b60005b8281101561336c57848901518255600182019150602085019450602081019050613347565b868310156133895784890151613385601f891682613292565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b60006133fa602283612590565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061348c602f83612590565b915061349782613430565b604082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b600081905092915050565b60006134d882612585565b6134e281856134c2565b93506134f28185602086016125a1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135346005836134c2565b915061353f826134fe565b600582019050919050565b600061355682856134cd565b915061356282846134cd565b915061356d82613527565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d5602683612590565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b600081905092915050565b50565b600061362660008361360b565b915061363182613616565b600082019050919050565b600061364782613619565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613687601483612590565b915061369282613651565b602082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136e4826136bd565b6136ee81856136c8565b93506136fe8185602086016125a1565b613707816125d4565b840191505092915050565b600060808201905061372760008301876126d5565b61373460208301866126d5565b613741604083018561276b565b818103606083015261375381846136d9565b905095945050505050565b60008151905061376d816124f6565b92915050565b600060208284031215613789576137886124c0565b5b60006137978482850161375e565b91505092915050565b60006137ab82612640565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137dd576137dc612ed7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382282612640565b915061382d83612640565b92508261383d5761383c6137e8565b5b828204905092915050565b600061385382612640565b915061385e83612640565b92508261386e5761386d6137e8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122041a1be4df7b1ce6b926eab670a3347cc240c7fbbee42821d5cf36d442e9a322c64736f6c634300080f0033

Deployed Bytecode Sourcemap

46768:4202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47908:8;;;21412:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49849:88;;;;;;;;;;;;;:::i;:::-;;28493:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48244:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27953:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48597:513;;;;;;;;;;;;;:::i;:::-;;20466:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49505:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29379:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47346:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48127:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50126:212;;;;;;;;;;;;;:::i;:::-;;29620:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50663:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50873:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26214:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22091:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26594:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28769:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49957:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29876:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49122:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21412:615;21497:4;21812:10;21797:25;;:11;:25;;;;:102;;;;21889:10;21874:25;;:11;:25;;;;21797:102;:179;;;;21966:10;21951:25;;:11;:25;;;;21797:179;21777:199;;21412:615;;;:::o;26425:100::-;26479:13;26512:5;26505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26425:100;:::o;49849:88::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49916:13:::1;:11;:13::i;:::-;49899:14;:30;;;;49849:88::o:0;28493:204::-;28561:7;28586:16;28594:7;28586;:16::i;:::-;28581:64;;28611:34;;;;;;;;;;;;;;28581:64;28665:15;:24;28681:7;28665:24;;;;;;;;;;;;;;;;;;;;;28658:31;;28493:204;;;:::o;48244:294::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48336:1:::1;48321:12;:16;48313:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48392:1;48376:12;:17:::0;48372:159:::1;;48423:16;48410:10;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;48372:159;;;48494:25;48481:10;;:38;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;48372:159;48244:294:::0;:::o;27953:474::-;28026:13;28058:27;28077:7;28058:18;:27::i;:::-;28026:61;;28108:5;28102:11;;:2;:11;;;28098:48;;28122:24;;;;;;;;;;;;;;28098:48;28186:5;28163:28;;:19;:17;:19::i;:::-;:28;;;28159:175;;28211:44;28228:5;28235:19;:17;:19::i;:::-;28211:16;:44::i;:::-;28206:128;;28283:35;;;;;;;;;;;;;;28206:128;28159:175;28373:2;28346:15;:24;28362:7;28346:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28411:7;28407:2;28391:28;;28400:5;28391:28;;;;;;;;;;;;28015:412;27953:474;;:::o;48597:513::-;3969:1;4567:7;;:19;4559:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3969:1;4700:7;:18;;;;48666:9:::1;48652:23;;:10;:23;;;48644:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48746:25;48732:39:::0;::::1;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:39;;;;;;;;:::i;:::-;;;48724:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48876:14;;48857:16;;:33;;;;:::i;:::-;48839:14;;:52;;;;:::i;:::-;48823:13;:11;:13::i;:::-;:68;48815:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;48976:1;48945:15;:27;48961:10;48945:27;;;;;;;;;;;;;;;;:32;48937:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49033:25;49043:10;49055:2;49033:9;:25::i;:::-;49100:2;49069:15;:27;49085:10;49069:27;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;3925:1:::0;4879:7;:22;;;;48597:513::o;20466:315::-;20519:7;20747:15;:13;:15::i;:::-;20732:12;;20716:13;;:28;:46;20709:53;;20466:315;:::o;49505:319::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49622:16:::1;;49612:6;49595:14;;:23;;;;:::i;:::-;:43;;49587:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;49695:28;49705:9;49716:6;49695:9;:28::i;:::-;49764:6;49734:15;:26;49750:9;49734:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;49799:6;49781:14;;:24;;;;;;;:::i;:::-;;;;;;;;49505:319:::0;;:::o;29379:170::-;29513:28;29523:4;29529:2;29533:7;29513:9;:28::i;:::-;29379:170;;;:::o;47346:50::-;;;;;;;;;;;;;;;;;:::o;48127:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48220:8:::1;48202:15;:26;;;;;;:::i;:::-;;48127:109:::0;:::o;50126:212::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50174:15:::1;50192:16;:14;:16::i;:::-;50174:34;;50237:1;50227:7;:11;50219:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50290:39;50308:10;50321:7;50290:9;:39::i;:::-;50163:175;50126:212::o:0;29620:185::-;29758:39;29775:4;29781:2;29785:7;29758:39;;;;;;;;;;;;:16;:39::i;:::-;29620:185;;;:::o;50663:124::-;50722:4;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50765:14:::1;;50746:16;;:33;;;;:::i;:::-;50739:40;;50663:124:::0;:::o;50873:83::-;50914:5;50938:10;;;;;;;;;;;50931:17;;50873:83;:::o;26214:144::-;26278:7;26321:27;26340:7;26321:18;:27::i;:::-;26298:52;;26214:144;;;:::o;22091:224::-;22155:7;22196:1;22179:19;;:5;:19;;;22175:60;;22207:28;;;;;;;;;;;;;;22175:60;17430:13;22253:18;:25;22272:5;22253:25;;;;;;;;;;;;;;;;:54;22246:61;;22091:224;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;26594:104::-;26650:13;26683:7;26676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26594:104;:::o;28769:308::-;28880:19;:17;:19::i;:::-;28868:31;;:8;:31;;;28864:61;;28908:17;;;;;;;;;;;;;;28864:61;28990:8;28938:18;:39;28957:19;:17;:19::i;:::-;28938:39;;;;;;;;;;;;;;;:49;28978:8;28938:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29050:8;29014:55;;29029:19;:17;:19::i;:::-;29014:55;;;29060:8;29014:55;;;;;;:::i;:::-;;;;;;;;28769:308;;:::o;49957:109::-;50013:4;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50037:21:::1;50030:28;;49957:109:::0;:::o;29876:396::-;30043:28;30053:4;30059:2;30063:7;30043:9;:28::i;:::-;30104:1;30086:2;:14;;;:19;30082:183;;30125:56;30156:4;30162:2;30166:7;30175:5;30125:30;:56::i;:::-;30120:145;;30209:40;;;;;;;;;;;;;;30120:145;30082:183;29876:396;;;;:::o;49122:338::-;49196:13;49230:17;49238:8;49230:7;:17::i;:::-;49222:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49324:1;49312:13;;;;;:::i;:::-;;;49336:21;49360:10;:8;:10::i;:::-;49336:34;;49412:7;49421:19;:8;:17;:19::i;:::-;49395:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49381:70;;;49122:338;;;:::o;29148:164::-;29245:4;29269:18;:25;29288:5;29269:25;;;;;;;;;;;;;;;:35;29295:8;29269:35;;;;;;;;;;;;;;;;;;;;;;;;;29262:42;;29148:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;30527:273::-;30584:4;30640:7;30621:15;:13;:15::i;:::-;:26;;:66;;;;;30674:13;;30664:7;:23;30621:66;:152;;;;;30772:1;18200:8;30725:17;:26;30743:7;30725:26;;;;;;;;;;;;:43;:48;30621:152;30601:172;;30527:273;;;:::o;23729:1129::-;23796:7;23816:12;23831:7;23816:22;;23899:4;23880:15;:13;:15::i;:::-;:23;23876:915;;23933:13;;23926:4;:20;23922:869;;;23971:14;23988:17;:23;24006:4;23988:23;;;;;;;;;;;;23971:40;;24104:1;18200:8;24077:6;:23;:28;24073:699;;24596:113;24613:1;24603:6;:11;24596:113;;24656:17;:25;24674:6;;;;;;;24656:25;;;;;;;;;;;;24647:34;;24596:113;;;24742:6;24735:13;;;;;;24073:699;23948:843;23922:869;23876:915;24819:31;;;;;;;;;;;;;;23729:1129;;;;:::o;44509:105::-;44569:7;44596:10;44589:17;;44509:105;:::o;30884:104::-;30953:27;30963:2;30967:8;30953:27;;;;;;;;;;;;:9;:27::i;:::-;30884:104;;:::o;19989:92::-;20045:7;19989:92;:::o;35766:2515::-;35881:27;35911;35930:7;35911:18;:27::i;:::-;35881:57;;35996:4;35955:45;;35971:19;35955:45;;;35951:86;;36009:28;;;;;;;;;;;;;;35951:86;36050:22;36099:4;36076:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36120:43;36137:4;36143:19;:17;:19::i;:::-;36120:16;:43::i;:::-;36076:87;:147;;;;36204:19;:17;:19::i;:::-;36180:43;;:20;36192:7;36180:11;:20::i;:::-;:43;;;36076:147;36050:174;;36242:17;36237:66;;36268:35;;;;;;;;;;;;;;36237:66;36332:1;36318:16;;:2;:16;;;36314:52;;36343:23;;;;;;;;;;;;;;36314:52;36379:43;36401:4;36407:2;36411:7;36420:1;36379:21;:43::i;:::-;36495:15;:24;36511:7;36495:24;;;;;;;;;;;;36488:31;;;;;;;;;;;36887:18;:24;36906:4;36887:24;;;;;;;;;;;;;;;;36885:26;;;;;;;;;;;;36956:18;:22;36975:2;36956:22;;;;;;;;;;;;;;;;36954:24;;;;;;;;;;;18482:8;18084:3;37337:15;:41;;37295:21;37313:2;37295:17;:21::i;:::-;:84;:128;37249:17;:26;37267:7;37249:26;;;;;;;;;;;:174;;;;37593:1;18482:8;37543:19;:46;:51;37539:626;;37615:19;37647:1;37637:7;:11;37615:33;;37804:1;37770:17;:30;37788:11;37770:30;;;;;;;;;;;;:35;37766:384;;37908:13;;37893:11;:28;37889:242;;38088:19;38055:17;:30;38073:11;38055:30;;;;;;;;;;;:52;;;;37889:242;37766:384;37596:569;37539:626;38212:7;38208:2;38193:27;;38202:4;38193:27;;;;;;;;;;;;38231:42;38252:4;38258:2;38262:7;38271:1;38231:20;:42::i;:::-;35870:2411;;35766:2515;;;:::o;50413:183::-;50494:9;50509:7;:12;;50529:6;50509:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50493:47;;;50559:4;50551:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;50482:114;50413:183;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;41978:716::-;42141:4;42187:2;42162:45;;;42208:19;:17;:19::i;:::-;42229:4;42235:7;42244:5;42162:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42462:1;42445:6;:13;:18;42441:235;;42491:40;;;;;;;;;;;;;;42441:235;42634:6;42628:13;42619:6;42615:2;42611:15;42604:38;42158:529;42331:54;;;42321:64;;;:6;:64;;;;42314:71;;;41978:716;;;;;;:::o;47961:116::-;48021:13;48054:15;48047:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47961:116;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;31361:2236::-;31484:20;31507:13;;31484:36;;31549:1;31535:16;;:2;:16;;;31531:48;;31560:19;;;;;;;;;;;;;;31531:48;31606:1;31594:8;:13;31590:44;;31616:18;;;;;;;;;;;;;;31590:44;31647:61;31677:1;31681:2;31685:12;31699:8;31647:21;:61::i;:::-;32251:1;17567:2;32222:1;:25;;32221:31;32209:8;:44;32183:18;:22;32202:2;32183:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18347:3;32652:29;32679:1;32667:8;:13;32652:14;:29::i;:::-;:56;;18084:3;32589:15;:41;;32547:21;32565:2;32547:17;:21::i;:::-;:84;:162;32496:17;:31;32514:12;32496:31;;;;;;;;;;;:213;;;;32726:20;32749:12;32726:35;;32776:11;32805:8;32790:12;:23;32776:37;;32852:1;32834:2;:14;;;:19;32830:635;;32874:313;32930:12;32926:2;32905:38;;32922:1;32905:38;;;;;;;;;;;;32971:69;33010:1;33014:2;33018:14;;;;;;33034:5;32971:30;:69::i;:::-;32966:174;;33076:40;;;;;;;;;;;;;;32966:174;33182:3;33167:12;:18;32874:313;;33268:12;33251:13;;:29;33247:43;;33282:8;;;33247:43;32830:635;;;33331:119;33387:14;;;;;;33383:2;33362:40;;33379:1;33362:40;;;;;;;;;;;;33445:3;33430:12;:18;33331:119;;32830:635;33495:12;33479:13;:28;;;;31960:1559;;33529:60;33558:1;33562:2;33566:12;33580:8;33529:20;:60::i;:::-;31473:2124;31361:2236;;;:::o;43342:159::-;;;;;:::o;27514:148::-;27578:14;27639:5;27629:15;;27514:148;;;:::o;44160:158::-;;;;;:::o;27749:142::-;27807:14;27868:5;27858:15;;27749:142;;;:::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:180::-;9399:77;9396:1;9389:88;9496:4;9493:1;9486:15;9520:4;9517:1;9510:15;9537:115;9620:1;9613:5;9610:12;9600:46;;9626:18;;:::i;:::-;9600:46;9537:115;:::o;9658:131::-;9705:7;9734:5;9723:16;;9740:43;9777:5;9740:43;:::i;:::-;9658:131;;;:::o;9795:::-;9853:9;9886:34;9914:5;9886:34;:::i;:::-;9873:47;;9795:131;;;:::o;9932:147::-;10027:45;10066:5;10027:45;:::i;:::-;10022:3;10015:58;9932:147;;:::o;10085:238::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10237:79;10313:1;10302:9;10298:17;10289:6;10237:79;:::i;:::-;10085:238;;;;:::o;10329:116::-;10399:21;10414:5;10399:21;:::i;:::-;10392:5;10389:32;10379:60;;10435:1;10432;10425:12;10379:60;10329:116;:::o;10451:133::-;10494:5;10532:6;10519:20;10510:29;;10548:30;10572:5;10548:30;:::i;:::-;10451:133;;;;:::o;10590:468::-;10655:6;10663;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:53;10908:7;10899:6;10888:9;10884:22;10863:53;:::i;:::-;10853:63;;10809:117;10965:2;10991:50;11033:7;11024:6;11013:9;11009:22;10991:50;:::i;:::-;10981:60;;10936:115;10590:468;;;;;:::o;11064:307::-;11125:4;11215:18;11207:6;11204:30;11201:56;;;11237:18;;:::i;:::-;11201:56;11275:29;11297:6;11275:29;:::i;:::-;11267:37;;11359:4;11353;11349:15;11341:23;;11064:307;;;:::o;11377:410::-;11454:5;11479:65;11495:48;11536:6;11495:48;:::i;:::-;11479:65;:::i;:::-;11470:74;;11567:6;11560:5;11553:21;11605:4;11598:5;11594:16;11643:3;11634:6;11629:3;11625:16;11622:25;11619:112;;;11650:79;;:::i;:::-;11619:112;11740:41;11774:6;11769:3;11764;11740:41;:::i;:::-;11460:327;11377:410;;;;;:::o;11806:338::-;11861:5;11910:3;11903:4;11895:6;11891:17;11887:27;11877:122;;11918:79;;:::i;:::-;11877:122;12035:6;12022:20;12060:78;12134:3;12126:6;12119:4;12111:6;12107:17;12060:78;:::i;:::-;12051:87;;11867:277;11806:338;;;;:::o;12150:943::-;12245:6;12253;12261;12269;12318:3;12306:9;12297:7;12293:23;12289:33;12286:120;;;12325:79;;:::i;:::-;12286:120;12445:1;12470:53;12515:7;12506:6;12495:9;12491:22;12470:53;:::i;:::-;12460:63;;12416:117;12572:2;12598:53;12643:7;12634:6;12623:9;12619:22;12598:53;:::i;:::-;12588:63;;12543:118;12700:2;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12671:118;12856:2;12845:9;12841:18;12828:32;12887:18;12879:6;12876:30;12873:117;;;12909:79;;:::i;:::-;12873:117;13014:62;13068:7;13059:6;13048:9;13044:22;13014:62;:::i;:::-;13004:72;;12799:287;12150:943;;;;;;;:::o;13099:474::-;13167:6;13175;13224:2;13212:9;13203:7;13199:23;13195:32;13192:119;;;13230:79;;:::i;:::-;13192:119;13350:1;13375:53;13420:7;13411:6;13400:9;13396:22;13375:53;:::i;:::-;13365:63;;13321:117;13477:2;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13448:118;13099:474;;;;;:::o;13579:180::-;13627:77;13624:1;13617:88;13724:4;13721:1;13714:15;13748:4;13745:1;13738:15;13765:320;13809:6;13846:1;13840:4;13836:12;13826:22;;13893:1;13887:4;13883:12;13914:18;13904:81;;13970:4;13962:6;13958:17;13948:27;;13904:81;14032:2;14024:6;14021:14;14001:18;13998:38;13995:84;;14051:18;;:::i;:::-;13995:84;13816:269;13765:320;;;:::o;14091:182::-;14231:34;14227:1;14219:6;14215:14;14208:58;14091:182;:::o;14279:366::-;14421:3;14442:67;14506:2;14501:3;14442:67;:::i;:::-;14435:74;;14518:93;14607:3;14518:93;:::i;:::-;14636:2;14631:3;14627:12;14620:19;;14279:366;;;:::o;14651:419::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:131;15058:4;14932:131;:::i;:::-;14924:139;;14651:419;;;:::o;15076:169::-;15216:21;15212:1;15204:6;15200:14;15193:45;15076:169;:::o;15251:366::-;15393:3;15414:67;15478:2;15473:3;15414:67;:::i;:::-;15407:74;;15490:93;15579:3;15490:93;:::i;:::-;15608:2;15603:3;15599:12;15592:19;;15251:366;;;:::o;15623:419::-;15789:4;15827:2;15816:9;15812:18;15804:26;;15876:9;15870:4;15866:20;15862:1;15851:9;15847:17;15840:47;15904:131;16030:4;15904:131;:::i;:::-;15896:139;;15623:419;;;:::o;16048:181::-;16188:33;16184:1;16176:6;16172:14;16165:57;16048:181;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:220::-;17172:34;17168:1;17160:6;17156:14;17149:58;17241:3;17236:2;17228:6;17224:15;17217:28;17032:220;:::o;17258:366::-;17400:3;17421:67;17485:2;17480:3;17421:67;:::i;:::-;17414:74;;17497:93;17586:3;17497:93;:::i;:::-;17615:2;17610:3;17606:12;17599:19;;17258:366;;;:::o;17630:419::-;17796:4;17834:2;17823:9;17819:18;17811:26;;17883:9;17877:4;17873:20;17869:1;17858:9;17854:17;17847:47;17911:131;18037:4;17911:131;:::i;:::-;17903:139;;17630:419;;;:::o;18055:178::-;18195:30;18191:1;18183:6;18179:14;18172:54;18055:178;:::o;18239:366::-;18381:3;18402:67;18466:2;18461:3;18402:67;:::i;:::-;18395:74;;18478:93;18567:3;18478:93;:::i;:::-;18596:2;18591:3;18587:12;18580:19;;18239:366;;;:::o;18611:419::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:180::-;19084:77;19081:1;19074:88;19181:4;19178:1;19171:15;19205:4;19202:1;19195:15;19222:191;19262:4;19282:20;19300:1;19282:20;:::i;:::-;19277:25;;19316:20;19334:1;19316:20;:::i;:::-;19311:25;;19355:1;19352;19349:8;19346:34;;;19360:18;;:::i;:::-;19346:34;19405:1;19402;19398:9;19390:17;;19222:191;;;;:::o;19419:180::-;19559:32;19555:1;19547:6;19543:14;19536:56;19419:180;:::o;19605:366::-;19747:3;19768:67;19832:2;19827:3;19768:67;:::i;:::-;19761:74;;19844:93;19933:3;19844:93;:::i;:::-;19962:2;19957:3;19953:12;19946:19;;19605:366;;;:::o;19977:419::-;20143:4;20181:2;20170:9;20166:18;20158:26;;20230:9;20224:4;20220:20;20216:1;20205:9;20201:17;20194:47;20258:131;20384:4;20258:131;:::i;:::-;20250:139;;19977:419;;;:::o;20402:225::-;20542:34;20538:1;20530:6;20526:14;20519:58;20611:8;20606:2;20598:6;20594:15;20587:33;20402:225;:::o;20633:366::-;20775:3;20796:67;20860:2;20855:3;20796:67;:::i;:::-;20789:74;;20872:93;20961:3;20872:93;:::i;:::-;20990:2;20985:3;20981:12;20974:19;;20633:366;;;:::o;21005:419::-;21171:4;21209:2;21198:9;21194:18;21186:26;;21258:9;21252:4;21248:20;21244:1;21233:9;21229:17;21222:47;21286:131;21412:4;21286:131;:::i;:::-;21278:139;;21005:419;;;:::o;21430:305::-;21470:3;21489:20;21507:1;21489:20;:::i;:::-;21484:25;;21523:20;21541:1;21523:20;:::i;:::-;21518:25;;21677:1;21609:66;21605:74;21602:1;21599:81;21596:107;;;21683:18;;:::i;:::-;21596:107;21727:1;21724;21720:9;21713:16;;21430:305;;;;:::o;21741:226::-;21881:34;21877:1;21869:6;21865:14;21858:58;21950:9;21945:2;21937:6;21933:15;21926:34;21741:226;:::o;21973:366::-;22115:3;22136:67;22200:2;22195:3;22136:67;:::i;:::-;22129:74;;22212:93;22301:3;22212:93;:::i;:::-;22330:2;22325:3;22321:12;22314:19;;21973:366;;;:::o;22345:419::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22598:9;22592:4;22588:20;22584:1;22573:9;22569:17;22562:47;22626:131;22752:4;22626:131;:::i;:::-;22618:139;;22345:419;;;:::o;22770:141::-;22819:4;22842:3;22834:11;;22865:3;22862:1;22855:14;22899:4;22896:1;22886:18;22878:26;;22770:141;;;:::o;22917:93::-;22954:6;23001:2;22996;22989:5;22985:14;22981:23;22971:33;;22917:93;;;:::o;23016:107::-;23060:8;23110:5;23104:4;23100:16;23079:37;;23016:107;;;;:::o;23129:393::-;23198:6;23248:1;23236:10;23232:18;23271:97;23301:66;23290:9;23271:97;:::i;:::-;23389:39;23419:8;23408:9;23389:39;:::i;:::-;23377:51;;23461:4;23457:9;23450:5;23446:21;23437:30;;23510:4;23500:8;23496:19;23489:5;23486:30;23476:40;;23205:317;;23129:393;;;;;:::o;23528:60::-;23556:3;23577:5;23570:12;;23528:60;;;:::o;23594:142::-;23644:9;23677:53;23695:34;23704:24;23722:5;23704:24;:::i;:::-;23695:34;:::i;:::-;23677:53;:::i;:::-;23664:66;;23594:142;;;:::o;23742:75::-;23785:3;23806:5;23799:12;;23742:75;;;:::o;23823:269::-;23933:39;23964:7;23933:39;:::i;:::-;23994:91;24043:41;24067:16;24043:41;:::i;:::-;24035:6;24028:4;24022:11;23994:91;:::i;:::-;23988:4;23981:105;23899:193;23823:269;;;:::o;24098:73::-;24143:3;24098:73;:::o;24177:189::-;24254:32;;:::i;:::-;24295:65;24353:6;24345;24339:4;24295:65;:::i;:::-;24230:136;24177:189;;:::o;24372:186::-;24432:120;24449:3;24442:5;24439:14;24432:120;;;24503:39;24540:1;24533:5;24503:39;:::i;:::-;24476:1;24469:5;24465:13;24456:22;;24432:120;;;24372:186;;:::o;24564:543::-;24665:2;24660:3;24657:11;24654:446;;;24699:38;24731:5;24699:38;:::i;:::-;24783:29;24801:10;24783:29;:::i;:::-;24773:8;24769:44;24966:2;24954:10;24951:18;24948:49;;;24987:8;24972:23;;24948:49;25010:80;25066:22;25084:3;25066:22;:::i;:::-;25056:8;25052:37;25039:11;25010:80;:::i;:::-;24669:431;;24654:446;24564:543;;;:::o;25113:117::-;25167:8;25217:5;25211:4;25207:16;25186:37;;25113:117;;;;:::o;25236:169::-;25280:6;25313:51;25361:1;25357:6;25349:5;25346:1;25342:13;25313:51;:::i;:::-;25309:56;25394:4;25388;25384:15;25374:25;;25287:118;25236:169;;;;:::o;25410:295::-;25486:4;25632:29;25657:3;25651:4;25632:29;:::i;:::-;25624:37;;25694:3;25691:1;25687:11;25681:4;25678:21;25670:29;;25410:295;;;;:::o;25710:1395::-;25827:37;25860:3;25827:37;:::i;:::-;25929:18;25921:6;25918:30;25915:56;;;25951:18;;:::i;:::-;25915:56;25995:38;26027:4;26021:11;25995:38;:::i;:::-;26080:67;26140:6;26132;26126:4;26080:67;:::i;:::-;26174:1;26198:4;26185:17;;26230:2;26222:6;26219:14;26247:1;26242:618;;;;26904:1;26921:6;26918:77;;;26970:9;26965:3;26961:19;26955:26;26946:35;;26918:77;27021:67;27081:6;27074:5;27021:67;:::i;:::-;27015:4;27008:81;26877:222;26212:887;;26242:618;26294:4;26290:9;26282:6;26278:22;26328:37;26360:4;26328:37;:::i;:::-;26387:1;26401:208;26415:7;26412:1;26409:14;26401:208;;;26494:9;26489:3;26485:19;26479:26;26471:6;26464:42;26545:1;26537:6;26533:14;26523:24;;26592:2;26581:9;26577:18;26564:31;;26438:4;26435:1;26431:12;26426:17;;26401:208;;;26637:6;26628:7;26625:19;26622:179;;;26695:9;26690:3;26686:19;26680:26;26738:48;26780:4;26772:6;26768:17;26757:9;26738:48;:::i;:::-;26730:6;26723:64;26645:156;26622:179;26847:1;26843;26835:6;26831:14;26827:22;26821:4;26814:36;26249:611;;;26212:887;;25802:1303;;;25710:1395;;:::o;27111:221::-;27251:34;27247:1;27239:6;27235:14;27228:58;27320:4;27315:2;27307:6;27303:15;27296:29;27111:221;:::o;27338:366::-;27480:3;27501:67;27565:2;27560:3;27501:67;:::i;:::-;27494:74;;27577:93;27666:3;27577:93;:::i;:::-;27695:2;27690:3;27686:12;27679:19;;27338:366;;;:::o;27710:419::-;27876:4;27914:2;27903:9;27899:18;27891:26;;27963:9;27957:4;27953:20;27949:1;27938:9;27934:17;27927:47;27991:131;28117:4;27991:131;:::i;:::-;27983:139;;27710:419;;;:::o;28135:234::-;28275:34;28271:1;28263:6;28259:14;28252:58;28344:17;28339:2;28331:6;28327:15;28320:42;28135:234;:::o;28375:366::-;28517:3;28538:67;28602:2;28597:3;28538:67;:::i;:::-;28531:74;;28614:93;28703:3;28614:93;:::i;:::-;28732:2;28727:3;28723:12;28716:19;;28375:366;;;:::o;28747:419::-;28913:4;28951:2;28940:9;28936:18;28928:26;;29000:9;28994:4;28990:20;28986:1;28975:9;28971:17;28964:47;29028:131;29154:4;29028:131;:::i;:::-;29020:139;;28747:419;;;:::o;29172:148::-;29274:11;29311:3;29296:18;;29172:148;;;;:::o;29326:377::-;29432:3;29460:39;29493:5;29460:39;:::i;:::-;29515:89;29597:6;29592:3;29515:89;:::i;:::-;29508:96;;29613:52;29658:6;29653:3;29646:4;29639:5;29635:16;29613:52;:::i;:::-;29690:6;29685:3;29681:16;29674:23;;29436:267;29326:377;;;;:::o;29709:155::-;29849:7;29845:1;29837:6;29833:14;29826:31;29709:155;:::o;29870:400::-;30030:3;30051:84;30133:1;30128:3;30051:84;:::i;:::-;30044:91;;30144:93;30233:3;30144:93;:::i;:::-;30262:1;30257:3;30253:11;30246:18;;29870:400;;;:::o;30276:701::-;30557:3;30579:95;30670:3;30661:6;30579:95;:::i;:::-;30572:102;;30691:95;30782:3;30773:6;30691:95;:::i;:::-;30684:102;;30803:148;30947:3;30803:148;:::i;:::-;30796:155;;30968:3;30961:10;;30276:701;;;;;:::o;30983:225::-;31123:34;31119:1;31111:6;31107:14;31100:58;31192:8;31187:2;31179:6;31175:15;31168:33;30983:225;:::o;31214:366::-;31356:3;31377:67;31441:2;31436:3;31377:67;:::i;:::-;31370:74;;31453:93;31542:3;31453:93;:::i;:::-;31571:2;31566:3;31562:12;31555:19;;31214:366;;;:::o;31586:419::-;31752:4;31790:2;31779:9;31775:18;31767:26;;31839:9;31833:4;31829:20;31825:1;31814:9;31810:17;31803:47;31867:131;31993:4;31867:131;:::i;:::-;31859:139;;31586:419;;;:::o;32011:147::-;32112:11;32149:3;32134:18;;32011:147;;;;:::o;32164:114::-;;:::o;32284:398::-;32443:3;32464:83;32545:1;32540:3;32464:83;:::i;:::-;32457:90;;32556:93;32645:3;32556:93;:::i;:::-;32674:1;32669:3;32665:11;32658:18;;32284:398;;;:::o;32688:379::-;32872:3;32894:147;33037:3;32894:147;:::i;:::-;32887:154;;33058:3;33051:10;;32688:379;;;:::o;33073:170::-;33213:22;33209:1;33201:6;33197:14;33190:46;33073:170;:::o;33249:366::-;33391:3;33412:67;33476:2;33471:3;33412:67;:::i;:::-;33405:74;;33488:93;33577:3;33488:93;:::i;:::-;33606:2;33601:3;33597:12;33590:19;;33249:366;;;:::o;33621:419::-;33787:4;33825:2;33814:9;33810:18;33802:26;;33874:9;33868:4;33864:20;33860:1;33849:9;33845:17;33838:47;33902:131;34028:4;33902:131;:::i;:::-;33894:139;;33621:419;;;:::o;34046:98::-;34097:6;34131:5;34125:12;34115:22;;34046:98;;;:::o;34150:168::-;34233:11;34267:6;34262:3;34255:19;34307:4;34302:3;34298:14;34283:29;;34150:168;;;;:::o;34324:360::-;34410:3;34438:38;34470:5;34438:38;:::i;:::-;34492:70;34555:6;34550:3;34492:70;:::i;:::-;34485:77;;34571:52;34616:6;34611:3;34604:4;34597:5;34593:16;34571:52;:::i;:::-;34648:29;34670:6;34648:29;:::i;:::-;34643:3;34639:39;34632:46;;34414:270;34324:360;;;;:::o;34690:640::-;34885:4;34923:3;34912:9;34908:19;34900:27;;34937:71;35005:1;34994:9;34990:17;34981:6;34937:71;:::i;:::-;35018:72;35086:2;35075:9;35071:18;35062:6;35018:72;:::i;:::-;35100;35168:2;35157:9;35153:18;35144:6;35100:72;:::i;:::-;35219:9;35213:4;35209:20;35204:2;35193:9;35189:18;35182:48;35247:76;35318:4;35309:6;35247:76;:::i;:::-;35239:84;;34690:640;;;;;;;:::o;35336:141::-;35392:5;35423:6;35417:13;35408:22;;35439:32;35465:5;35439:32;:::i;:::-;35336:141;;;;:::o;35483:349::-;35552:6;35601:2;35589:9;35580:7;35576:23;35572:32;35569:119;;;35607:79;;:::i;:::-;35569:119;35727:1;35752:63;35807:7;35798:6;35787:9;35783:22;35752:63;:::i;:::-;35742:73;;35698:127;35483:349;;;;:::o;35838:233::-;35877:3;35900:24;35918:5;35900:24;:::i;:::-;35891:33;;35946:66;35939:5;35936:77;35933:103;;36016:18;;:::i;:::-;35933:103;36063:1;36056:5;36052:13;36045:20;;35838:233;;;:::o;36077:180::-;36125:77;36122:1;36115:88;36222:4;36219:1;36212:15;36246:4;36243:1;36236:15;36263:185;36303:1;36320:20;36338:1;36320:20;:::i;:::-;36315:25;;36354:20;36372:1;36354:20;:::i;:::-;36349:25;;36393:1;36383:35;;36398:18;;:::i;:::-;36383:35;36440:1;36437;36433:9;36428:14;;36263:185;;;;:::o;36454:176::-;36486:1;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36576:1;36566:35;;36581:18;;:::i;:::-;36566:35;36622:1;36619;36615:9;36610:14;;36454:176;;;;:::o;36636:180::-;36684:77;36681:1;36674:88;36781:4;36778:1;36771:15;36805:4;36802:1;36795:15

Swarm Source

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