ETH Price: $3,270.54 (-4.10%)
Gas: 14 Gwei

Token

Meta Force Army (MFA)
 

Overview

Max Total Supply

3,333 MFA

Holders

1,628

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MFA
0xfb9e7da3951c9a9cc96c6afa70da670d11241ef1
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:
MetaForceArmy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// MetaForce Army Contract

pragma solidity ^0.8.4;



contract MetaForceArmy is ERC721A, Ownable {
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public publicCost = 1 wei;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 2;
  bool public isPublic = false;

    constructor() ERC721A("Meta Force Army", "MFA") {
        setBaseURI("https://mint.metaforcearmy.com/nfts/");
        _mint(msg.sender, 130);
    }

        function setBaseURI(string memory _newBaseURI) public onlyOwner {
            baseURI = _newBaseURI;
        }

        function setPublicPrice(uint256 _newPrice) public onlyOwner {
            publicCost = _newPrice;
        }

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

        function setPublicMint(bool _paused) public {
            require(msg.sender == owner(), "You are not the owner");
            isPublic = _paused;
        }

        function withdraw(uint256 withdrawAmount) public onlyOwner {
            require(withdrawAmount <= address(this).balance, "Invalid amount");
            payable(msg.sender).transfer(withdrawAmount);
        }

        function publicMint(uint256 quantity) external payable {
              if (msg.sender != owner()) {
                    require(isPublic == true, "Public Mint not activated");
                    require((balanceOf(msg.sender) + quantity) <= 2, "Cannot mint more than 2 NFTs per wallet");
                    require(quantity > 0, "Cannot mint less than 1");
                    require(quantity <= 2, "Cannot mint more than 2");
                    require(msg.value >= publicCost * quantity, "Insufficient funds");
              }
            require(_totalMinted() + quantity <= maxSupply, "Cannot mint more than maxSupply");
            _mint(msg.sender, quantity);
        }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","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":[{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620005e1565b506001600b55610d05600c556002600d556000600e60006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b506040518060400160405280600f81526020017f4d65746120466f7263652041726d7900000000000000000000000000000000008152506040518060400160405280600381526020017f4d4641000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010f929190620005e1565b50806003908051906020019062000128929190620005e1565b5062000139620001a460201b60201c565b60008190555050506200016162000155620001ad60201b60201c565b620001b560201b60201c565b6200018b60405180606001604052806024815260200162003513602491396200027b60201b60201c565b6200019e336082620002a760201b60201c565b62000779565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028b620004a660201b60201c565b8060099080519060200190620002a3929190620005e1565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000315576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141562000351576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200036660008483856200053760201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003f583620003d760008660006200053d60201b60201c565b620003e8856200056d60201b60201c565b176200057d60201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200041957806000819055505050620004a16000848385620005a860201b60201c565b505050565b620004b6620001ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004dc620005ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000535576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052c90620006b8565b60405180910390fd5b565b50505050565b60008060e883901c905060e86200055c868684620005d860201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60009392505050565b828054620005ef90620006eb565b90600052602060002090601f0160209004810192826200061357600085556200065f565b82601f106200062e57805160ff19168380011785556200065f565b828001600101855582156200065f579182015b828111156200065e57825182559160200191906001019062000641565b5b5090506200066e919062000672565b5090565b5b808211156200068d57600081600090555060010162000673565b5090565b6000620006a0602083620006da565b9150620006ad8262000750565b602082019050919050565b60006020820190508181036000830152620006d38162000691565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200070457607f821691505b602082108114156200071b576200071a62000721565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612d8a80620007896000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063c62752551161008a578063d5abeb0111610064578063d5abeb01146105e9578063dc9a153514610614578063e985e9c51461063f578063f2fde38b1461067c576101b7565b8063c627525514610558578063c668286214610581578063c87b56dd146105ac576101b7565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db578063a22cb46514610506578063b88d4fde1461052f576101b7565b806370a0823114610431578063715018a61461046e5780638693da2014610485576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461037757806355f804b3146103a05780636352211e146103c95780636c0360eb14610406576101b7565b806323b872dd146103095780632db11544146103325780632e1a7d4d1461034e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630e2d56cf1461028a57806318160ddd146102b3578063239c70ae146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612255565b6106a5565b6040516101f0919061260c565b60405180910390f35b34801561020557600080fd5b5061020e610737565b60405161021b9190612627565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122f8565b6107c9565b60405161025891906125a5565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906121e8565b610845565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612228565b610986565b005b3480156102bf57600080fd5b506102c8610a18565b6040516102d59190612789565b60405180910390f35b3480156102ea57600080fd5b506102f3610a2f565b6040516103009190612789565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b91906120d2565b610a35565b005b61034c600480360381019061034791906122f8565b610d5a565b005b34801561035a57600080fd5b50610375600480360381019061037091906122f8565b610f7d565b005b34801561038357600080fd5b5061039e600480360381019061039991906120d2565b611012565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906122af565b611032565b005b3480156103d557600080fd5b506103f060048036038101906103eb91906122f8565b611054565b6040516103fd91906125a5565b60405180910390f35b34801561041257600080fd5b5061041b611066565b6040516104289190612627565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190612065565b6110f4565b6040516104659190612789565b60405180910390f35b34801561047a57600080fd5b506104836111ad565b005b34801561049157600080fd5b5061049a6111c1565b6040516104a79190612789565b60405180910390f35b3480156104bc57600080fd5b506104c56111c7565b6040516104d291906125a5565b60405180910390f35b3480156104e757600080fd5b506104f06111f1565b6040516104fd9190612627565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906121a8565b611283565b005b34801561053b57600080fd5b5061055660048036038101906105519190612125565b6113fb565b005b34801561056457600080fd5b5061057f600480360381019061057a91906122f8565b61146e565b005b34801561058d57600080fd5b50610596611480565b6040516105a39190612627565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906122f8565b61150e565b6040516105e09190612627565b60405180910390f35b3480156105f557600080fd5b506105fe6115ad565b60405161060b9190612789565b60405180910390f35b34801561062057600080fd5b506106296115b3565b604051610636919061260c565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612092565b6115c6565b604051610673919061260c565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612065565b61165a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610746906129d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610772906129d4565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b60006107d4826116de565b61080a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082611054565b90508073ffffffffffffffffffffffffffffffffffffffff1661087161173d565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d8161089861173d565b6115c6565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61098e6111c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f2906126c9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610a22611745565b6001546000540303905090565b600d5481565b6000610a408261174e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ab38461181c565b91509150610ac98187610ac461173d565b61183e565b610b1557610ade86610ad961173d565b6115c6565b610b14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b898686866001611882565b8015610b9457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c6285610c3e888887611888565b7c0200000000000000000000000000000000000000000000000000000000176118b0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cea576000600185019050600060046000838152602001908152602001600020541415610ce8576000548114610ce7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d5286868660016118db565b505050505050565b610d626111c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f195760011515600e60009054906101000a900460ff16151514610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190612749565b60405180910390fd5b600281610df6336110f4565b610e00919061286e565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612709565b60405180910390fd5b60008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906126a9565b60405180910390fd5b6002811115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612769565b60405180910390fd5b80600b54610ed691906128c4565b341015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906126e9565b60405180910390fd5b5b600c5481610f256118e1565b610f2f919061286e565b1115610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790612649565b60405180910390fd5b610f7a33826118f4565b50565b610f85611ac8565b47811115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612689565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100e573d6000803e3d6000fd5b5050565b61102d838383604051806020016040528060008152506113fb565b505050565b61103a611ac8565b8060099080519060200190611050929190611e79565b5050565b600061105f8261174e565b9050919050565b60098054611073906129d4565b80601f016020809104026020016040519081016040528092919081815260200182805461109f906129d4565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b5611ac8565b6111bf6000611b46565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611200906129d4565b80601f016020809104026020016040519081016040528092919081815260200182805461122c906129d4565b80156112795780601f1061124e57610100808354040283529160200191611279565b820191906000526020600020905b81548152906001019060200180831161125c57829003601f168201915b5050505050905090565b61128b61173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fd61173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113aa61173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ef919061260c565b60405180910390a35050565b611406848484610a35565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114685761143184848484611c0c565b611467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611476611ac8565b80600b8190555050565b600a805461148d906129d4565b80601f01602080910402602001604051908101604052809291908181526020018280546114b9906129d4565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b505050505081565b6060611519826116de565b61154f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611559611d6c565b905060008151141561157a57604051806020016040528060008152506115a5565b8061158484611dfe565b604051602001611595929190612576565b6040516020818303038152906040525b915050919050565b600c5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611662611ac8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990612669565b60405180910390fd5b6116db81611b46565b50565b6000816116e9611745565b111580156116f8575060005482105b8015611736575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061175d611745565b116117e5576000548110156117e45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e2575b60008114156117d85760046000836001900393508381526020019081526020016000205490506117ad565b8092505050611817565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861189f868684611e58565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006118eb611745565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611961576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561199c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119a96000848385611882565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a2083611a116000866000611888565b611a1a85611e61565b176118b0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a4457806000819055505050611ac360008483856118db565b505050565b611ad0611e71565b73ffffffffffffffffffffffffffffffffffffffff16611aee6111c7565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612729565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c3261173d565b8786866040518563ffffffff1660e01b8152600401611c5494939291906125c0565b602060405180830381600087803b158015611c6e57600080fd5b505af1925050508015611c9f57506040513d601f19601f82011682018060405250810190611c9c9190612282565b60015b611d19573d8060008114611ccf576040519150601f19603f3d011682016040523d82523d6000602084013e611cd4565b606091505b50600081511415611d11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d7b906129d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611da7906129d4565b8015611df45780601f10611dc957610100808354040283529160200191611df4565b820191906000526020600020905b815481529060010190602001808311611dd757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611e4457600183039250600a81066030018353600a81049050611e24565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b828054611e85906129d4565b90600052602060002090601f016020900481019282611ea75760008555611eee565b82601f10611ec057805160ff1916838001178555611eee565b82800160010185558215611eee579182015b82811115611eed578251825591602001919060010190611ed2565b5b509050611efb9190611eff565b5090565b5b80821115611f18576000816000905550600101611f00565b5090565b6000611f2f611f2a846127c9565b6127a4565b905082815260208101848484011115611f4b57611f4a612ac9565b5b611f56848285612992565b509392505050565b6000611f71611f6c846127fa565b6127a4565b905082815260208101848484011115611f8d57611f8c612ac9565b5b611f98848285612992565b509392505050565b600081359050611faf81612cf8565b92915050565b600081359050611fc481612d0f565b92915050565b600081359050611fd981612d26565b92915050565b600081519050611fee81612d26565b92915050565b600082601f83011261200957612008612ac4565b5b8135612019848260208601611f1c565b91505092915050565b600082601f83011261203757612036612ac4565b5b8135612047848260208601611f5e565b91505092915050565b60008135905061205f81612d3d565b92915050565b60006020828403121561207b5761207a612ad3565b5b600061208984828501611fa0565b91505092915050565b600080604083850312156120a9576120a8612ad3565b5b60006120b785828601611fa0565b92505060206120c885828601611fa0565b9150509250929050565b6000806000606084860312156120eb576120ea612ad3565b5b60006120f986828701611fa0565b935050602061210a86828701611fa0565b925050604061211b86828701612050565b9150509250925092565b6000806000806080858703121561213f5761213e612ad3565b5b600061214d87828801611fa0565b945050602061215e87828801611fa0565b935050604061216f87828801612050565b925050606085013567ffffffffffffffff8111156121905761218f612ace565b5b61219c87828801611ff4565b91505092959194509250565b600080604083850312156121bf576121be612ad3565b5b60006121cd85828601611fa0565b92505060206121de85828601611fb5565b9150509250929050565b600080604083850312156121ff576121fe612ad3565b5b600061220d85828601611fa0565b925050602061221e85828601612050565b9150509250929050565b60006020828403121561223e5761223d612ad3565b5b600061224c84828501611fb5565b91505092915050565b60006020828403121561226b5761226a612ad3565b5b600061227984828501611fca565b91505092915050565b60006020828403121561229857612297612ad3565b5b60006122a684828501611fdf565b91505092915050565b6000602082840312156122c5576122c4612ad3565b5b600082013567ffffffffffffffff8111156122e3576122e2612ace565b5b6122ef84828501612022565b91505092915050565b60006020828403121561230e5761230d612ad3565b5b600061231c84828501612050565b91505092915050565b61232e8161291e565b82525050565b61233d81612930565b82525050565b600061234e8261282b565b6123588185612841565b93506123688185602086016129a1565b61237181612ad8565b840191505092915050565b600061238782612836565b6123918185612852565b93506123a18185602086016129a1565b6123aa81612ad8565b840191505092915050565b60006123c082612836565b6123ca8185612863565b93506123da8185602086016129a1565b80840191505092915050565b60006123f3601f83612852565b91506123fe82612ae9565b602082019050919050565b6000612416602683612852565b915061242182612b12565b604082019050919050565b6000612439600e83612852565b915061244482612b61565b602082019050919050565b600061245c601783612852565b915061246782612b8a565b602082019050919050565b600061247f601583612852565b915061248a82612bb3565b602082019050919050565b60006124a2601283612852565b91506124ad82612bdc565b602082019050919050565b60006124c5602783612852565b91506124d082612c05565b604082019050919050565b60006124e8600583612863565b91506124f382612c54565b600582019050919050565b600061250b602083612852565b915061251682612c7d565b602082019050919050565b600061252e601983612852565b915061253982612ca6565b602082019050919050565b6000612551601783612852565b915061255c82612ccf565b602082019050919050565b61257081612988565b82525050565b600061258282856123b5565b915061258e82846123b5565b9150612599826124db565b91508190509392505050565b60006020820190506125ba6000830184612325565b92915050565b60006080820190506125d56000830187612325565b6125e26020830186612325565b6125ef6040830185612567565b81810360608301526126018184612343565b905095945050505050565b60006020820190506126216000830184612334565b92915050565b60006020820190508181036000830152612641818461237c565b905092915050565b60006020820190508181036000830152612662816123e6565b9050919050565b6000602082019050818103600083015261268281612409565b9050919050565b600060208201905081810360008301526126a28161242c565b9050919050565b600060208201905081810360008301526126c28161244f565b9050919050565b600060208201905081810360008301526126e281612472565b9050919050565b6000602082019050818103600083015261270281612495565b9050919050565b60006020820190508181036000830152612722816124b8565b9050919050565b60006020820190508181036000830152612742816124fe565b9050919050565b6000602082019050818103600083015261276281612521565b9050919050565b6000602082019050818103600083015261278281612544565b9050919050565b600060208201905061279e6000830184612567565b92915050565b60006127ae6127bf565b90506127ba8282612a06565b919050565b6000604051905090565b600067ffffffffffffffff8211156127e4576127e3612a95565b5b6127ed82612ad8565b9050602081019050919050565b600067ffffffffffffffff82111561281557612814612a95565b5b61281e82612ad8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287982612988565b915061288483612988565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612a37565b5b828201905092915050565b60006128cf82612988565b91506128da83612988565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561291357612912612a37565b5b828202905092915050565b600061292982612968565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129bf5780820151818401526020810190506129a4565b838111156129ce576000848401525b50505050565b600060028204905060018216806129ec57607f821691505b60208210811415612a00576129ff612a66565b5b50919050565b612a0f82612ad8565b810181811067ffffffffffffffff82111715612a2e57612a2d612a95565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178537570706c7900600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206c657373207468616e2031000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032204e4654732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74206e6f742061637469766174656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032000000000000000000600082015250565b612d018161291e565b8114612d0c57600080fd5b50565b612d1881612930565b8114612d2357600080fd5b50565b612d2f8161293c565b8114612d3a57600080fd5b50565b612d4681612988565b8114612d5157600080fd5b5056fea264697066735822122011e47be4ff59d150a340cfeca4aba88fc8344e02dd45e919010ccc59e278399664736f6c6343000807003368747470733a2f2f6d696e742e6d657461666f72636561726d792e636f6d2f6e6674732f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063c62752551161008a578063d5abeb0111610064578063d5abeb01146105e9578063dc9a153514610614578063e985e9c51461063f578063f2fde38b1461067c576101b7565b8063c627525514610558578063c668286214610581578063c87b56dd146105ac576101b7565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db578063a22cb46514610506578063b88d4fde1461052f576101b7565b806370a0823114610431578063715018a61461046e5780638693da2014610485576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461037757806355f804b3146103a05780636352211e146103c95780636c0360eb14610406576101b7565b806323b872dd146103095780632db11544146103325780632e1a7d4d1461034e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630e2d56cf1461028a57806318160ddd146102b3578063239c70ae146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612255565b6106a5565b6040516101f0919061260c565b60405180910390f35b34801561020557600080fd5b5061020e610737565b60405161021b9190612627565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122f8565b6107c9565b60405161025891906125a5565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906121e8565b610845565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612228565b610986565b005b3480156102bf57600080fd5b506102c8610a18565b6040516102d59190612789565b60405180910390f35b3480156102ea57600080fd5b506102f3610a2f565b6040516103009190612789565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b91906120d2565b610a35565b005b61034c600480360381019061034791906122f8565b610d5a565b005b34801561035a57600080fd5b50610375600480360381019061037091906122f8565b610f7d565b005b34801561038357600080fd5b5061039e600480360381019061039991906120d2565b611012565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906122af565b611032565b005b3480156103d557600080fd5b506103f060048036038101906103eb91906122f8565b611054565b6040516103fd91906125a5565b60405180910390f35b34801561041257600080fd5b5061041b611066565b6040516104289190612627565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190612065565b6110f4565b6040516104659190612789565b60405180910390f35b34801561047a57600080fd5b506104836111ad565b005b34801561049157600080fd5b5061049a6111c1565b6040516104a79190612789565b60405180910390f35b3480156104bc57600080fd5b506104c56111c7565b6040516104d291906125a5565b60405180910390f35b3480156104e757600080fd5b506104f06111f1565b6040516104fd9190612627565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906121a8565b611283565b005b34801561053b57600080fd5b5061055660048036038101906105519190612125565b6113fb565b005b34801561056457600080fd5b5061057f600480360381019061057a91906122f8565b61146e565b005b34801561058d57600080fd5b50610596611480565b6040516105a39190612627565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906122f8565b61150e565b6040516105e09190612627565b60405180910390f35b3480156105f557600080fd5b506105fe6115ad565b60405161060b9190612789565b60405180910390f35b34801561062057600080fd5b506106296115b3565b604051610636919061260c565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612092565b6115c6565b604051610673919061260c565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612065565b61165a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610746906129d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610772906129d4565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b60006107d4826116de565b61080a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082611054565b90508073ffffffffffffffffffffffffffffffffffffffff1661087161173d565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d8161089861173d565b6115c6565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61098e6111c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f2906126c9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610a22611745565b6001546000540303905090565b600d5481565b6000610a408261174e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ab38461181c565b91509150610ac98187610ac461173d565b61183e565b610b1557610ade86610ad961173d565b6115c6565b610b14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b898686866001611882565b8015610b9457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c6285610c3e888887611888565b7c0200000000000000000000000000000000000000000000000000000000176118b0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cea576000600185019050600060046000838152602001908152602001600020541415610ce8576000548114610ce7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d5286868660016118db565b505050505050565b610d626111c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f195760011515600e60009054906101000a900460ff16151514610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190612749565b60405180910390fd5b600281610df6336110f4565b610e00919061286e565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612709565b60405180910390fd5b60008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906126a9565b60405180910390fd5b6002811115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612769565b60405180910390fd5b80600b54610ed691906128c4565b341015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906126e9565b60405180910390fd5b5b600c5481610f256118e1565b610f2f919061286e565b1115610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790612649565b60405180910390fd5b610f7a33826118f4565b50565b610f85611ac8565b47811115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612689565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100e573d6000803e3d6000fd5b5050565b61102d838383604051806020016040528060008152506113fb565b505050565b61103a611ac8565b8060099080519060200190611050929190611e79565b5050565b600061105f8261174e565b9050919050565b60098054611073906129d4565b80601f016020809104026020016040519081016040528092919081815260200182805461109f906129d4565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b5611ac8565b6111bf6000611b46565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611200906129d4565b80601f016020809104026020016040519081016040528092919081815260200182805461122c906129d4565b80156112795780601f1061124e57610100808354040283529160200191611279565b820191906000526020600020905b81548152906001019060200180831161125c57829003601f168201915b5050505050905090565b61128b61173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fd61173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113aa61173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ef919061260c565b60405180910390a35050565b611406848484610a35565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114685761143184848484611c0c565b611467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611476611ac8565b80600b8190555050565b600a805461148d906129d4565b80601f01602080910402602001604051908101604052809291908181526020018280546114b9906129d4565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b505050505081565b6060611519826116de565b61154f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611559611d6c565b905060008151141561157a57604051806020016040528060008152506115a5565b8061158484611dfe565b604051602001611595929190612576565b6040516020818303038152906040525b915050919050565b600c5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611662611ac8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990612669565b60405180910390fd5b6116db81611b46565b50565b6000816116e9611745565b111580156116f8575060005482105b8015611736575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061175d611745565b116117e5576000548110156117e45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e2575b60008114156117d85760046000836001900393508381526020019081526020016000205490506117ad565b8092505050611817565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861189f868684611e58565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006118eb611745565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611961576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561199c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119a96000848385611882565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a2083611a116000866000611888565b611a1a85611e61565b176118b0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a4457806000819055505050611ac360008483856118db565b505050565b611ad0611e71565b73ffffffffffffffffffffffffffffffffffffffff16611aee6111c7565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612729565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c3261173d565b8786866040518563ffffffff1660e01b8152600401611c5494939291906125c0565b602060405180830381600087803b158015611c6e57600080fd5b505af1925050508015611c9f57506040513d601f19601f82011682018060405250810190611c9c9190612282565b60015b611d19573d8060008114611ccf576040519150601f19603f3d011682016040523d82523d6000602084013e611cd4565b606091505b50600081511415611d11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d7b906129d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611da7906129d4565b8015611df45780601f10611dc957610100808354040283529160200191611df4565b820191906000526020600020905b815481529060010190602001808311611dd757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611e4457600183039250600a81066030018353600a81049050611e24565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b828054611e85906129d4565b90600052602060002090601f016020900481019282611ea75760008555611eee565b82601f10611ec057805160ff1916838001178555611eee565b82800160010185558215611eee579182015b82811115611eed578251825591602001919060010190611ed2565b5b509050611efb9190611eff565b5090565b5b80821115611f18576000816000905550600101611f00565b5090565b6000611f2f611f2a846127c9565b6127a4565b905082815260208101848484011115611f4b57611f4a612ac9565b5b611f56848285612992565b509392505050565b6000611f71611f6c846127fa565b6127a4565b905082815260208101848484011115611f8d57611f8c612ac9565b5b611f98848285612992565b509392505050565b600081359050611faf81612cf8565b92915050565b600081359050611fc481612d0f565b92915050565b600081359050611fd981612d26565b92915050565b600081519050611fee81612d26565b92915050565b600082601f83011261200957612008612ac4565b5b8135612019848260208601611f1c565b91505092915050565b600082601f83011261203757612036612ac4565b5b8135612047848260208601611f5e565b91505092915050565b60008135905061205f81612d3d565b92915050565b60006020828403121561207b5761207a612ad3565b5b600061208984828501611fa0565b91505092915050565b600080604083850312156120a9576120a8612ad3565b5b60006120b785828601611fa0565b92505060206120c885828601611fa0565b9150509250929050565b6000806000606084860312156120eb576120ea612ad3565b5b60006120f986828701611fa0565b935050602061210a86828701611fa0565b925050604061211b86828701612050565b9150509250925092565b6000806000806080858703121561213f5761213e612ad3565b5b600061214d87828801611fa0565b945050602061215e87828801611fa0565b935050604061216f87828801612050565b925050606085013567ffffffffffffffff8111156121905761218f612ace565b5b61219c87828801611ff4565b91505092959194509250565b600080604083850312156121bf576121be612ad3565b5b60006121cd85828601611fa0565b92505060206121de85828601611fb5565b9150509250929050565b600080604083850312156121ff576121fe612ad3565b5b600061220d85828601611fa0565b925050602061221e85828601612050565b9150509250929050565b60006020828403121561223e5761223d612ad3565b5b600061224c84828501611fb5565b91505092915050565b60006020828403121561226b5761226a612ad3565b5b600061227984828501611fca565b91505092915050565b60006020828403121561229857612297612ad3565b5b60006122a684828501611fdf565b91505092915050565b6000602082840312156122c5576122c4612ad3565b5b600082013567ffffffffffffffff8111156122e3576122e2612ace565b5b6122ef84828501612022565b91505092915050565b60006020828403121561230e5761230d612ad3565b5b600061231c84828501612050565b91505092915050565b61232e8161291e565b82525050565b61233d81612930565b82525050565b600061234e8261282b565b6123588185612841565b93506123688185602086016129a1565b61237181612ad8565b840191505092915050565b600061238782612836565b6123918185612852565b93506123a18185602086016129a1565b6123aa81612ad8565b840191505092915050565b60006123c082612836565b6123ca8185612863565b93506123da8185602086016129a1565b80840191505092915050565b60006123f3601f83612852565b91506123fe82612ae9565b602082019050919050565b6000612416602683612852565b915061242182612b12565b604082019050919050565b6000612439600e83612852565b915061244482612b61565b602082019050919050565b600061245c601783612852565b915061246782612b8a565b602082019050919050565b600061247f601583612852565b915061248a82612bb3565b602082019050919050565b60006124a2601283612852565b91506124ad82612bdc565b602082019050919050565b60006124c5602783612852565b91506124d082612c05565b604082019050919050565b60006124e8600583612863565b91506124f382612c54565b600582019050919050565b600061250b602083612852565b915061251682612c7d565b602082019050919050565b600061252e601983612852565b915061253982612ca6565b602082019050919050565b6000612551601783612852565b915061255c82612ccf565b602082019050919050565b61257081612988565b82525050565b600061258282856123b5565b915061258e82846123b5565b9150612599826124db565b91508190509392505050565b60006020820190506125ba6000830184612325565b92915050565b60006080820190506125d56000830187612325565b6125e26020830186612325565b6125ef6040830185612567565b81810360608301526126018184612343565b905095945050505050565b60006020820190506126216000830184612334565b92915050565b60006020820190508181036000830152612641818461237c565b905092915050565b60006020820190508181036000830152612662816123e6565b9050919050565b6000602082019050818103600083015261268281612409565b9050919050565b600060208201905081810360008301526126a28161242c565b9050919050565b600060208201905081810360008301526126c28161244f565b9050919050565b600060208201905081810360008301526126e281612472565b9050919050565b6000602082019050818103600083015261270281612495565b9050919050565b60006020820190508181036000830152612722816124b8565b9050919050565b60006020820190508181036000830152612742816124fe565b9050919050565b6000602082019050818103600083015261276281612521565b9050919050565b6000602082019050818103600083015261278281612544565b9050919050565b600060208201905061279e6000830184612567565b92915050565b60006127ae6127bf565b90506127ba8282612a06565b919050565b6000604051905090565b600067ffffffffffffffff8211156127e4576127e3612a95565b5b6127ed82612ad8565b9050602081019050919050565b600067ffffffffffffffff82111561281557612814612a95565b5b61281e82612ad8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287982612988565b915061288483612988565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612a37565b5b828201905092915050565b60006128cf82612988565b91506128da83612988565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561291357612912612a37565b5b828202905092915050565b600061292982612968565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129bf5780820151818401526020810190506129a4565b838111156129ce576000848401525b50505050565b600060028204905060018216806129ec57607f821691505b60208210811415612a00576129ff612a66565b5b50919050565b612a0f82612ad8565b810181811067ffffffffffffffff82111715612a2e57612a2d612a95565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178537570706c7900600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206c657373207468616e2031000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032204e4654732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74206e6f742061637469766174656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032000000000000000000600082015250565b612d018161291e565b8114612d0c57600080fd5b50565b612d1881612930565b8114612d2357600080fd5b50565b612d2f8161293c565b8114612d3a57600080fd5b50565b612d4681612988565b8114612d5157600080fd5b5056fea264697066735822122011e47be4ff59d150a340cfeca4aba88fc8344e02dd45e919010ccc59e278399664736f6c63430008070033

Deployed Bytecode Sourcemap

48425:1885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25789:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25337:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49224:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17241:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48615:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35054:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49618:689;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49395:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48851:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23623:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48473:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18866:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;48541:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24003:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26065:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26935:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48975:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48499:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24178:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48579:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48652:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26444:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18187:615;18272:4;18587:10;18572:25;;:11;:25;;;;:102;;;;18664:10;18649:25;;:11;:25;;;;18572:102;:179;;;;18741:10;18726:25;;:11;:25;;;;18572:179;18552:199;;18187:615;;;:::o;23834:100::-;23888:13;23921:5;23914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23834:100;:::o;25789:204::-;25857:7;25882:16;25890:7;25882;:16::i;:::-;25877:64;;25907:34;;;;;;;;;;;;;;25877:64;25961:15;:24;25977:7;25961:24;;;;;;;;;;;;;;;;;;;;;25954:31;;25789:204;;;:::o;25337:386::-;25410:13;25426:16;25434:7;25426;:16::i;:::-;25410:32;;25482:5;25459:28;;:19;:17;:19::i;:::-;:28;;;25455:175;;25507:44;25524:5;25531:19;:17;:19::i;:::-;25507:16;:44::i;:::-;25502:128;;25579:35;;;;;;;;;;;;;;25502:128;25455:175;25669:2;25642:15;:24;25658:7;25642:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25707:7;25703:2;25687:28;;25696:5;25687:28;;;;;;;;;;;;25399:324;25337:386;;:::o;49224:159::-;49305:7;:5;:7::i;:::-;49291:21;;:10;:21;;;49283:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49364:7;49353:8;;:18;;;;;;;;;;;;;;;;;;49224:159;:::o;17241:315::-;17294:7;17522:15;:13;:15::i;:::-;17507:12;;17491:13;;:28;:46;17484:53;;17241:315;:::o;48615:32::-;;;;:::o;35054:2800::-;35188:27;35218;35237:7;35218:18;:27::i;:::-;35188:57;;35303:4;35262:45;;35278:19;35262:45;;;35258:86;;35316:28;;;;;;;;;;;;;;35258:86;35358:27;35387:23;35414:28;35434:7;35414:19;:28::i;:::-;35357:85;;;;35542:62;35561:15;35578:4;35584:19;:17;:19::i;:::-;35542:18;:62::i;:::-;35537:174;;35624:43;35641:4;35647:19;:17;:19::i;:::-;35624:16;:43::i;:::-;35619:92;;35676:35;;;;;;;;;;;;;;35619:92;35537:174;35742:1;35728:16;;:2;:16;;;35724:52;;;35753:23;;;;;;;;;;;;;;35724:52;35789:43;35811:4;35817:2;35821:7;35830:1;35789:21;:43::i;:::-;35925:15;35922:160;;;36065:1;36044:19;36037:30;35922:160;36460:18;:24;36479:4;36460:24;;;;;;;;;;;;;;;;36458:26;;;;;;;;;;;;36529:18;:22;36548:2;36529:22;;;;;;;;;;;;;;;;36527:24;;;;;;;;;;;36851:145;36888:2;36936:45;36951:4;36957:2;36961:19;36936:14;:45::i;:::-;14469:8;36909:72;36851:18;:145::i;:::-;36822:17;:26;36840:7;36822:26;;;;;;;;;;;:174;;;;37166:1;14469:8;37116:19;:46;:51;37112:626;;;37188:19;37220:1;37210:7;:11;37188:33;;37377:1;37343:17;:30;37361:11;37343:30;;;;;;;;;;;;:35;37339:384;;;37481:13;;37466:11;:28;37462:242;;37661:19;37628:17;:30;37646:11;37628:30;;;;;;;;;;;:52;;;;37462:242;37339:384;37169:569;37112:626;37785:7;37781:2;37766:27;;37775:4;37766:27;;;;;;;;;;;;37804:42;37825:4;37831:2;37835:7;37844:1;37804:20;:42::i;:::-;35177:2677;;;35054:2800;;;:::o;49618:689::-;49708:7;:5;:7::i;:::-;49694:21;;:10;:21;;;49690:467;;49760:4;49748:16;;:8;;;;;;;;;;;:16;;;49740:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49863:1;49850:8;49826:21;49836:10;49826:9;:21::i;:::-;:32;;;;:::i;:::-;49825:39;;49817:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;49950:1;49939:8;:12;49931:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50022:1;50010:8;:13;;50002:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50108:8;50095:10;;:21;;;;:::i;:::-;50082:9;:34;;50074:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49690:467;50208:9;;50196:8;50179:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;50171:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;50268:27;50274:10;50286:8;50268:5;:27::i;:::-;49618:689;:::o;49395:211::-;2014:13;:11;:13::i;:::-;49495:21:::1;49477:14;:39;;49469:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49558:10;49550:28;;:44;49579:14;49550:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49395:211:::0;:::o;26679:185::-;26817:39;26834:4;26840:2;26844:7;26817:39;;;;;;;;;;;;:16;:39::i;:::-;26679:185;;;:::o;48851:112::-;2014:13;:11;:13::i;:::-;48940:11:::1;48930:7;:21;;;;;;;;;;;;:::i;:::-;;48851:112:::0;:::o;23623:144::-;23687:7;23730:27;23749:7;23730:18;:27::i;:::-;23707:52;;23623:144;;;:::o;48473:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18866:224::-;18930:7;18971:1;18954:19;;:5;:19;;;18950:60;;;18982:28;;;;;;;;;;;;;;18950:60;13421:13;19028:18;:25;19047:5;19028:25;;;;;;;;;;;;;;;;:54;19021:61;;18866:224;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;48541:33::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;24003:104::-;24059:13;24092:7;24085:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24003:104;:::o;26065:308::-;26176:19;:17;:19::i;:::-;26164:31;;:8;:31;;;26160:61;;;26204:17;;;;;;;;;;;;;;26160:61;26286:8;26234:18;:39;26253:19;:17;:19::i;:::-;26234:39;;;;;;;;;;;;;;;:49;26274:8;26234:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26346:8;26310:55;;26325:19;:17;:19::i;:::-;26310:55;;;26356:8;26310:55;;;;;;:::i;:::-;;;;;;;;26065:308;;:::o;26935:399::-;27102:31;27115:4;27121:2;27125:7;27102:12;:31::i;:::-;27166:1;27148:2;:14;;;:19;27144:183;;27187:56;27218:4;27224:2;27228:7;27237:5;27187:30;:56::i;:::-;27182:145;;27271:40;;;;;;;;;;;;;;27182:145;27144:183;26935:399;;;;:::o;48975:109::-;2014:13;:11;:13::i;:::-;49063:9:::1;49050:10;:22;;;;48975:109:::0;:::o;48499:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24178:327::-;24251:13;24282:16;24290:7;24282;:16::i;:::-;24277:59;;24307:29;;;;;;;;;;;;;;24277:59;24349:21;24373:10;:8;:10::i;:::-;24349:34;;24426:1;24407:7;24401:21;:26;;:96;;;;;;;;;;;;;;;;;24454:7;24463:18;24473:7;24463:9;:18::i;:::-;24437:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24401:96;24394:103;;;24178:327;;;:::o;48579:31::-;;;;:::o;48652:28::-;;;;;;;;;;;;;:::o;26444:164::-;26541:4;26565:18;:25;26584:5;26565:25;;;;;;;;;;;;;;;:35;26591:8;26565:35;;;;;;;;;;;;;;;;;;;;;;;;;26558:42;;26444:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;27589:273::-;27646:4;27702:7;27683:15;:13;:15::i;:::-;:26;;:66;;;;;27736:13;;27726:7;:23;27683:66;:152;;;;;27834:1;14191:8;27787:17;:26;27805:7;27787:26;;;;;;;;;;;;:43;:48;27683:152;27663:172;;27589:273;;;:::o;46150:105::-;46210:7;46237:10;46230:17;;46150:105;:::o;16765:92::-;16821:7;16848:1;16841:8;;16765:92;:::o;20540:1129::-;20607:7;20627:12;20642:7;20627:22;;20710:4;20691:15;:13;:15::i;:::-;:23;20687:915;;20744:13;;20737:4;:20;20733:869;;;20782:14;20799:17;:23;20817:4;20799:23;;;;;;;;;;;;20782:40;;20915:1;14191:8;20888:6;:23;:28;20884:699;;;21407:113;21424:1;21414:6;:11;21407:113;;;21467:17;:25;21485:6;;;;;;;21467:25;;;;;;;;;;;;21458:34;;21407:113;;;21553:6;21546:13;;;;;;20884:699;20759:843;20733:869;20687:915;21630:31;;;;;;;;;;;;;;20540:1129;;;;:::o;33390:652::-;33485:27;33514:23;33555:53;33611:15;33555:71;;33797:7;33791:4;33784:21;33832:22;33826:4;33819:36;33908:4;33902;33892:21;33869:44;;34004:19;33998:26;33979:45;;33735:300;33390:652;;;:::o;34155:645::-;34297:11;34459:15;34453:4;34449:26;34441:34;;34618:15;34607:9;34603:31;34590:44;;34765:15;34754:9;34751:30;34744:4;34733:9;34730:19;34727:55;34717:65;;34155:645;;;;;:::o;44983:159::-;;;;;:::o;43295:309::-;43430:7;43450:16;14592:3;43476:19;:40;;43450:67;;14592:3;43543:31;43554:4;43560:2;43564:9;43543:10;:31::i;:::-;43535:40;;:61;;43528:68;;;43295:309;;;;;:::o;23114:447::-;23194:14;23362:15;23355:5;23351:27;23342:36;;23536:5;23522:11;23498:22;23494:40;23491:51;23484:5;23481:62;23471:72;;23114:447;;;;:::o;45801:158::-;;;;;:::o;17654:285::-;17701:7;17905:15;:13;:15::i;:::-;17889:13;;:31;17882:38;;17654:285;:::o;29420:1529::-;29485:20;29508:13;;29485:36;;29550:1;29536:16;;:2;:16;;;29532:48;;;29561:19;;;;;;;;;;;;;;29532:48;29607:1;29595:8;:13;29591:44;;;29617:18;;;;;;;;;;;;;;29591:44;29648:61;29678:1;29682:2;29686:12;29700:8;29648:21;:61::i;:::-;30191:1;13558:2;30162:1;:25;;30161:31;30149:8;:44;30123:18;:22;30142:2;30123:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30470:139;30507:2;30561:33;30584:1;30588:2;30592:1;30561:14;:33::i;:::-;30528:30;30549:8;30528:20;:30::i;:::-;:66;30470:18;:139::i;:::-;30436:17;:31;30454:12;30436:31;;;;;;;;;;;:173;;;;30626:15;30644:12;30626:30;;30671:11;30700:8;30685:12;:23;30671:37;;30723:101;30775:9;;;;;;30771:2;30750:35;;30767:1;30750:35;;;;;;;;;;;;30819:3;30809:7;:13;30723:101;;30856:3;30840:13;:19;;;;29897:974;;30881:60;30910:1;30914:2;30918:12;30932:8;30881:20;:60::i;:::-;29474:1475;29420:1529;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;41805:716::-;41968:4;42014:2;41989:45;;;42035:19;:17;:19::i;:::-;42056:4;42062:7;42071:5;41989:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41985:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42289:1;42272:6;:13;:18;42268:235;;;42318:40;;;;;;;;;;;;;;42268:235;42461:6;42455:13;42446:6;42442:2;42438:15;42431:38;41985:529;42158:54;;;42148:64;;;:6;:64;;;;42141:71;;;41805:716;;;;;;:::o;49096:116::-;49156:13;49193:7;49186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49096:116;:::o;46361:1960::-;46418:17;46837:3;46830:4;46824:11;46820:21;46813:28;;46928:3;46922:4;46915:17;47034:3;47490:5;47620:1;47615:3;47611:11;47604:18;;47757:2;47751:4;47747:13;47743:2;47739:22;47734:3;47726:36;47798:2;47792:4;47788:13;47780:21;;47382:697;47817:4;47382:697;;;48008:1;48003:3;47999:11;47992:18;;48059:2;48053:4;48049:13;48045:2;48041:22;48036:3;48028:36;47912:2;47906:4;47902:13;47894:21;;47382:697;;;47386:430;48118:3;48113;48109:13;48233:2;48228:3;48224:12;48217:19;;48296:6;48291:3;48284:19;46457:1857;;46361:1960;;;:::o;44180:147::-;44317:6;44180:147;;;;;:::o;24953:322::-;25023:14;25254:1;25244:8;25241:15;25216:23;25212:45;25202:55;;24953:322;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:400::-;11609:3;11630:84;11712:1;11707:3;11630:84;:::i;:::-;11623:91;;11723:93;11812:3;11723:93;:::i;:::-;11841:1;11836:3;11832:11;11825:18;;11449:400;;;:::o;11855:366::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:::-;12369:3;12390:67;12454:2;12449:3;12390:67;:::i;:::-;12383:74;;12466:93;12555:3;12466:93;:::i;:::-;12584:2;12579:3;12575:12;12568:19;;12227:366;;;:::o;12599:::-;12741:3;12762:67;12826:2;12821:3;12762:67;:::i;:::-;12755:74;;12838:93;12927:3;12838:93;:::i;:::-;12956:2;12951:3;12947:12;12940:19;;12599:366;;;:::o;12971:118::-;13058:24;13076:5;13058:24;:::i;:::-;13053:3;13046:37;12971:118;;:::o;13095:701::-;13376:3;13398:95;13489:3;13480:6;13398:95;:::i;:::-;13391:102;;13510:95;13601:3;13592:6;13510:95;:::i;:::-;13503:102;;13622:148;13766:3;13622:148;:::i;:::-;13615:155;;13787:3;13780:10;;13095:701;;;;;:::o;13802:222::-;13895:4;13933:2;13922:9;13918:18;13910:26;;13946:71;14014:1;14003:9;13999:17;13990:6;13946:71;:::i;:::-;13802:222;;;;:::o;14030:640::-;14225:4;14263:3;14252:9;14248:19;14240:27;;14277:71;14345:1;14334:9;14330:17;14321:6;14277:71;:::i;:::-;14358:72;14426:2;14415:9;14411:18;14402:6;14358:72;:::i;:::-;14440;14508:2;14497:9;14493:18;14484:6;14440:72;:::i;:::-;14559:9;14553:4;14549:20;14544:2;14533:9;14529:18;14522:48;14587:76;14658:4;14649:6;14587:76;:::i;:::-;14579:84;;14030:640;;;;;;;:::o;14676:210::-;14763:4;14801:2;14790:9;14786:18;14778:26;;14814:65;14876:1;14865:9;14861:17;14852:6;14814:65;:::i;:::-;14676:210;;;;:::o;14892:313::-;15005:4;15043:2;15032:9;15028:18;15020:26;;15092:9;15086:4;15082:20;15078:1;15067:9;15063:17;15056:47;15120:78;15193:4;15184:6;15120:78;:::i;:::-;15112:86;;14892:313;;;;:::o;15211:419::-;15377:4;15415:2;15404:9;15400:18;15392:26;;15464:9;15458:4;15454:20;15450:1;15439:9;15435:17;15428:47;15492:131;15618:4;15492:131;:::i;:::-;15484:139;;15211:419;;;:::o;15636:::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15889:9;15883:4;15879:20;15875:1;15864:9;15860:17;15853:47;15917:131;16043:4;15917:131;:::i;:::-;15909:139;;15636:419;;;:::o;16061:::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:131;16468:4;16342:131;:::i;:::-;16334:139;;16061:419;;;:::o;16486:::-;16652:4;16690:2;16679:9;16675:18;16667:26;;16739:9;16733:4;16729:20;16725:1;16714:9;16710:17;16703:47;16767:131;16893:4;16767:131;:::i;:::-;16759:139;;16486:419;;;:::o;16911:::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17164:9;17158:4;17154:20;17150:1;17139:9;17135:17;17128:47;17192:131;17318:4;17192:131;:::i;:::-;17184:139;;16911:419;;;:::o;17336:::-;17502:4;17540:2;17529:9;17525:18;17517:26;;17589:9;17583:4;17579:20;17575:1;17564:9;17560:17;17553:47;17617:131;17743:4;17617:131;:::i;:::-;17609:139;;17336:419;;;:::o;17761:::-;17927:4;17965:2;17954:9;17950:18;17942:26;;18014:9;18008:4;18004:20;18000:1;17989:9;17985:17;17978:47;18042:131;18168:4;18042:131;:::i;:::-;18034:139;;17761:419;;;:::o;18186:::-;18352:4;18390:2;18379:9;18375:18;18367:26;;18439:9;18433:4;18429:20;18425:1;18414:9;18410:17;18403:47;18467:131;18593:4;18467:131;:::i;:::-;18459:139;;18186:419;;;:::o;18611:::-;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:::-;19202:4;19240:2;19229:9;19225:18;19217:26;;19289:9;19283:4;19279:20;19275:1;19264:9;19260:17;19253:47;19317:131;19443:4;19317:131;:::i;:::-;19309:139;;19036:419;;;:::o;19461:222::-;19554:4;19592:2;19581:9;19577:18;19569:26;;19605:71;19673:1;19662:9;19658:17;19649:6;19605:71;:::i;:::-;19461:222;;;;:::o;19689:129::-;19723:6;19750:20;;:::i;:::-;19740:30;;19779:33;19807:4;19799:6;19779:33;:::i;:::-;19689:129;;;:::o;19824:75::-;19857:6;19890:2;19884:9;19874:19;;19824:75;:::o;19905:307::-;19966:4;20056:18;20048:6;20045:30;20042:56;;;20078:18;;:::i;:::-;20042:56;20116:29;20138:6;20116:29;:::i;:::-;20108:37;;20200:4;20194;20190:15;20182:23;;19905:307;;;:::o;20218:308::-;20280:4;20370:18;20362:6;20359:30;20356:56;;;20392:18;;:::i;:::-;20356:56;20430:29;20452:6;20430:29;:::i;:::-;20422:37;;20514:4;20508;20504:15;20496:23;;20218:308;;;:::o;20532:98::-;20583:6;20617:5;20611:12;20601:22;;20532:98;;;:::o;20636:99::-;20688:6;20722:5;20716:12;20706:22;;20636:99;;;:::o;20741:168::-;20824:11;20858:6;20853:3;20846:19;20898:4;20893:3;20889:14;20874:29;;20741:168;;;;:::o;20915:169::-;20999:11;21033:6;21028:3;21021:19;21073:4;21068:3;21064:14;21049:29;;20915:169;;;;:::o;21090:148::-;21192:11;21229:3;21214:18;;21090:148;;;;:::o;21244:305::-;21284:3;21303:20;21321:1;21303:20;:::i;:::-;21298:25;;21337:20;21355:1;21337:20;:::i;:::-;21332:25;;21491:1;21423:66;21419:74;21416:1;21413:81;21410:107;;;21497:18;;:::i;:::-;21410:107;21541:1;21538;21534:9;21527:16;;21244:305;;;;:::o;21555:348::-;21595:7;21618:20;21636:1;21618:20;:::i;:::-;21613:25;;21652:20;21670:1;21652:20;:::i;:::-;21647:25;;21840:1;21772:66;21768:74;21765:1;21762:81;21757:1;21750:9;21743:17;21739:105;21736:131;;;21847:18;;:::i;:::-;21736:131;21895:1;21892;21888:9;21877:20;;21555:348;;;;:::o;21909:96::-;21946:7;21975:24;21993:5;21975:24;:::i;:::-;21964:35;;21909:96;;;:::o;22011:90::-;22045:7;22088:5;22081:13;22074:21;22063:32;;22011:90;;;:::o;22107:149::-;22143:7;22183:66;22176:5;22172:78;22161:89;;22107:149;;;:::o;22262:126::-;22299:7;22339:42;22332:5;22328:54;22317:65;;22262:126;;;:::o;22394:77::-;22431:7;22460:5;22449:16;;22394:77;;;:::o;22477:154::-;22561:6;22556:3;22551;22538:30;22623:1;22614:6;22609:3;22605:16;22598:27;22477:154;;;:::o;22637:307::-;22705:1;22715:113;22729:6;22726:1;22723:13;22715:113;;;22814:1;22809:3;22805:11;22799:18;22795:1;22790:3;22786:11;22779:39;22751:2;22748:1;22744:10;22739:15;;22715:113;;;22846:6;22843:1;22840:13;22837:101;;;22926:1;22917:6;22912:3;22908:16;22901:27;22837:101;22686:258;22637:307;;;:::o;22950:320::-;22994:6;23031:1;23025:4;23021:12;23011:22;;23078:1;23072:4;23068:12;23099:18;23089:81;;23155:4;23147:6;23143:17;23133:27;;23089:81;23217:2;23209:6;23206:14;23186:18;23183:38;23180:84;;;23236:18;;:::i;:::-;23180:84;23001:269;22950:320;;;:::o;23276:281::-;23359:27;23381:4;23359:27;:::i;:::-;23351:6;23347:40;23489:6;23477:10;23474:22;23453:18;23441:10;23438:34;23435:62;23432:88;;;23500:18;;:::i;:::-;23432:88;23540:10;23536:2;23529:22;23319:238;23276:281;;:::o;23563:180::-;23611:77;23608:1;23601:88;23708:4;23705:1;23698:15;23732:4;23729:1;23722:15;23749:180;23797:77;23794:1;23787:88;23894:4;23891:1;23884:15;23918:4;23915:1;23908:15;23935:180;23983:77;23980:1;23973:88;24080:4;24077:1;24070:15;24104:4;24101:1;24094:15;24121:117;24230:1;24227;24220:12;24244:117;24353:1;24350;24343:12;24367:117;24476:1;24473;24466:12;24490:117;24599:1;24596;24589:12;24613:102;24654:6;24705:2;24701:7;24696:2;24689:5;24685:14;24681:28;24671:38;;24613:102;;;:::o;24721:181::-;24861:33;24857:1;24849:6;24845:14;24838:57;24721:181;:::o;24908:225::-;25048:34;25044:1;25036:6;25032:14;25025:58;25117:8;25112:2;25104:6;25100:15;25093:33;24908:225;:::o;25139:164::-;25279:16;25275:1;25267:6;25263:14;25256:40;25139:164;:::o;25309:173::-;25449:25;25445:1;25437:6;25433:14;25426:49;25309:173;:::o;25488:171::-;25628:23;25624:1;25616:6;25612:14;25605:47;25488:171;:::o;25665:168::-;25805:20;25801:1;25793:6;25789:14;25782:44;25665:168;:::o;25839:226::-;25979:34;25975:1;25967:6;25963:14;25956:58;26048:9;26043:2;26035:6;26031:15;26024:34;25839:226;:::o;26071:155::-;26211:7;26207:1;26199:6;26195:14;26188:31;26071:155;:::o;26232:182::-;26372:34;26368:1;26360:6;26356:14;26349:58;26232:182;:::o;26420:175::-;26560:27;26556:1;26548:6;26544:14;26537:51;26420:175;:::o;26601:173::-;26741:25;26737:1;26729:6;26725:14;26718:49;26601:173;:::o;26780:122::-;26853:24;26871:5;26853:24;:::i;:::-;26846:5;26843:35;26833:63;;26892:1;26889;26882:12;26833:63;26780:122;:::o;26908:116::-;26978:21;26993:5;26978:21;:::i;:::-;26971:5;26968:32;26958:60;;27014:1;27011;27004:12;26958:60;26908:116;:::o;27030:120::-;27102:23;27119:5;27102:23;:::i;:::-;27095:5;27092:34;27082:62;;27140:1;27137;27130:12;27082:62;27030:120;:::o;27156:122::-;27229:24;27247:5;27229:24;:::i;:::-;27222:5;27219:35;27209:63;;27268:1;27265;27258:12;27209:63;27156:122;:::o

Swarm Source

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