ETH Price: $2,943.22 (-3.98%)
Gas: 2 Gwei

Token

Schweine (Schweine)
 

Overview

Max Total Supply

1,141 Schweine

Holders

239

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Schweine
0x353a8a0cfed45ed5c020c16e2beb049463596351
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:
Schweine

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

// SPDX-License-Identifier: MIT



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

     /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721A.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}
// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}


    pragma solidity ^0.8.13;
    
    contract Schweine is ERC721A, Ownable,  OperatorFilterer, ERC721Burnable {
        enum MintState {
        Closed,
        Open
    }
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeiblulr63dlkqi47zzxgsfkcnq4c6sizgnsf3zdenf6yqqxeihon5u/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  
 
  

  uint256 public MAX_SUPPLY = 4567;
    
    uint256 public FREE_TOKEN_PRICE = 0 ether;
    uint256 public PAID_TOKEN_PRICE = 0.001 ether;
    
    uint256 public FREE_MINT_LIMIT = 1;
    uint256 public PAID_MINT_LIMIT = 20;
     bool public operatorFilteringEnabled;
                                                             
 
  MintState public mintState;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
   function setMintState(uint256 newState) external onlyOwner {
        if (newState == 0) mintState = MintState.Closed;
        else if (newState == 1) mintState = MintState.Open;
        else revert("Mint state does not exist");
    }

    function freeTokensRemainingForAddress(address who) public view returns (uint256) {
        if (mintState == MintState.Open)
            return FREE_MINT_LIMIT - _getAux(who);
        else revert("Mint state mismatch");
    }

    function paidTokensRemainingForAddress(address who) public view returns (uint256) {
        if (mintState == MintState.Open)
            return PAID_MINT_LIMIT + _getAux(who) - _numberMinted(who);
        else revert("Mint state mismatch");
    }

    function mintFree() external callerIsUser {
        uint256 quantity = FREE_MINT_LIMIT;
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Open, "Mint state mismatch");
        require(freeTokensRemainingForAddress(msg.sender) >= quantity, "Mint limit for user reached");

       _safeMint(msg.sender, quantity);

        _setAux(msg.sender, _getAux(msg.sender) + uint64(quantity));
    }

    function mintPaid(uint256 quantity) external payable callerIsUser {
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Open, "Mint state mismatch");
        require(msg.value >= PAID_TOKEN_PRICE * quantity, "Insufficient value");
        require(paidTokensRemainingForAddress(msg.sender) >= quantity, "Mint limit for user reached");

       _safeMint(msg.sender, quantity );
    }

   function Reserve(uint16 quantity, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
     _safeMint(_receiver , quantity);
     delete quantity;
     delete _receiver;
     delete totalSupply;
  }
 

 

    function setSupply(uint256 _newSupply) external onlyOwner {
        MAX_SUPPLY = _newSupply;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        PAID_TOKEN_PRICE = _newPrice;
    }

    function setPaidLimit(uint256 _newLimit) external onlyOwner {
        PAID_MINT_LIMIT = _newLimit;
    }

    function setFreeLimit(uint256 _newLimit) external onlyOwner {
        FREE_MINT_LIMIT = _newLimit;
    }

   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }



    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }






 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }



  function withdraw() public onlyOwner  {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

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

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"freeTokensRemainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum Schweine.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"who","type":"address"}],"name":"paidTokensRemainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPaidLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002d2360a03960099062000023908262000296565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004f908262000296565b506111d7600c556000600d5566038d7ea4c68000600e556001600f5560146010556011805462ff00001916620100001790553480156200008e57600080fd5b5060405162002d6638038062002d66833981016040819052620000b19162000411565b81816002620000c1838262000296565b506003620000d0828262000296565b5050600160005550620000e33362000102565b620000ed62000154565b50506011805460ff191660011790556200047b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000175733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000177565b565b6001600160a01b0390911690637d3e3dbe81620001a75782620001a05750634420e486620001a7565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001e7578060005160e01c03620001e757600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021c57607f821691505b6020821081036200023d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029157600081815260208120601f850160051c810160208610156200026c5750805b601f850160051c820191505b818110156200028d5782815560010162000278565b5050505b505050565b81516001600160401b03811115620002b257620002b2620001f1565b620002ca81620002c3845462000207565b8462000243565b602080601f831160018114620003025760008415620002e95750858301515b600019600386901b1c1916600185901b1785556200028d565b600085815260208120601f198616915b82811015620003335788860151825594840194600190910190840162000312565b5085821015620003525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200037457600080fd5b81516001600160401b0380821115620003915762000391620001f1565b604051601f8301601f19908116603f01168101908282118183101715620003bc57620003bc620001f1565b81604052838152602092508683858801011115620003d957600080fd5b600091505b83821015620003fd5785820183015181830184015290820190620003de565b600093810190920192909252949350505050565b600080604083850312156200042557600080fd5b82516001600160401b03808211156200043d57600080fd5b6200044b8683870162000362565b935060208501519150808211156200046257600080fd5b50620004718582860162000362565b9150509250929050565b612898806200048b6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a7048ae1116100b6578063c87b56dd1161007a578063c87b56dd146106b0578063ce82c489146106d0578063e985e9c5146106e6578063f2fde38b14610706578063f8604f1114610726578063fb796e6c1461074657600080fd5b8063a7048ae114610618578063b47cacc91461062e578063b7c0b8e814610644578063b88d4fde14610664578063c051e38a1461068457600080fd5b80638da5cb5b116100fd5780638da5cb5b1461058557806391b7f5ed146105a357806395d89b41146105c3578063a22cb465146105d8578063a475b5dd146105f857600080fd5b806370a08231146104fb578063715018a61461051b5780637ec4a659146105305780638087b013146105505780638ab534471461057057600080fd5b806326c7f77c116101d25780633bd64968116101965780633bd64968146104515780633ccfd60b1461046657806342842e0e1461047b57806342966c681461049b578063613687f2146104bb5780636352211e146104db57600080fd5b806326c7f77c146103c85780632f6f98e1146103db578063305ae775146103fb57806332cb6b0c1461041b5780633b4c4b251461043157600080fd5b80630bb862d1116102195780630bb862d1146103355780631067fcc714610355578063140f3a971461037557806318160ddd1461038b57806323b872dd146103a857600080fd5b806301ffc9a71461025657806303abc9181461028b57806306fdde03146102b9578063081812fc146102db578063095ea7b314610313575b600080fd5b34801561026257600080fd5b506102766102713660046120fe565b610760565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612132565b6107b2565b604051908152602001610282565b3480156102c557600080fd5b506102ce61081c565b604051610282919061219d565b3480156102e757600080fd5b506102fb6102f63660046121b0565b6108ae565b6040516001600160a01b039091168152602001610282565b34801561031f57600080fd5b5061033361032e3660046121c9565b6108f2565b005b34801561034157600080fd5b506103336103503660046121b0565b61097f565b34801561036157600080fd5b5061033361037036600461227e565b610a34565b34801561038157600080fd5b506102ab60105481565b34801561039757600080fd5b5060015460005403600019016102ab565b3480156103b457600080fd5b506103336103c33660046122c6565b610a6e565b6103336103d63660046121b0565b610aa4565b3480156103e757600080fd5b506103336103f6366004612302565b610c70565b34801561040757600080fd5b5061033361041636600461227e565b610d51565b34801561042757600080fd5b506102ab600c5481565b34801561043d57600080fd5b5061033361044c3660046121b0565b610d87565b34801561045d57600080fd5b50610333610db6565b34801561047257600080fd5b50610333610dff565b34801561048757600080fd5b506103336104963660046122c6565b610e9a565b3480156104a757600080fd5b506103336104b63660046121b0565b610eca565b3480156104c757600080fd5b506103336104d63660046121b0565b610f3f565b3480156104e757600080fd5b506102fb6104f63660046121b0565b610f6e565b34801561050757600080fd5b506102ab610516366004612132565b610f80565b34801561052757600080fd5b50610333610fce565b34801561053c57600080fd5b5061033361054b36600461227e565b611004565b34801561055c57600080fd5b506102ab61056b366004612132565b61103a565b34801561057c57600080fd5b506103336110b1565b34801561059157600080fd5b506008546001600160a01b03166102fb565b3480156105af57600080fd5b506103336105be3660046121b0565b611289565b3480156105cf57600080fd5b506102ce6112b8565b3480156105e457600080fd5b506103336105f336600461234e565b6112c7565b34801561060457600080fd5b506011546102769062010000900460ff1681565b34801561062457600080fd5b506102ab600f5481565b34801561063a57600080fd5b506102ab600d5481565b34801561065057600080fd5b5061033361065f366004612378565b61135c565b34801561067057600080fd5b5061033361067f366004612393565b611399565b34801561069057600080fd5b506011546106a390610100900460ff1681565b6040516102829190612424565b3480156106bc57600080fd5b506102ce6106cb3660046121b0565b6113d1565b3480156106dc57600080fd5b506102ab600e5481565b3480156106f257600080fd5b5061027661070136600461244c565b611546565b34801561071257600080fd5b50610333610721366004612132565b611574565b34801561073257600080fd5b506103336107413660046121b0565b61160c565b34801561075257600080fd5b506011546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061079157506001600160e01b03198216635b5e139f60e01b145b806107ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006001601154610100900460ff1660018111156107d2576107d261240e565b036107f6576107e08261163b565b6001600160401b0316600f546107ac919061247e565b60405162461bcd60e51b815260040161080e90612491565b60405180910390fd5b919050565b60606002805461082b906124be565b80601f0160208091040260200160405190810160405280929190818152602001828054610857906124be565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611666565b6108d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108fd82610f6e565b9050806001600160a01b0316836001600160a01b0316036109315760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610951575061094f8133611546565b155b1561096f576040516367d9dca160e11b815260040160405180910390fd5b61097a83838361169f565b505050565b6008546001600160a01b031633146109a95760405162461bcd60e51b815260040161080e906124f8565b806000036109cb57601180546000919061ff001916610100835b021790555050565b806001036109e957601180546001919061ff001916610100836109c3565b60405162461bcd60e51b815260206004820152601960248201527f4d696e7420737461746520646f6573206e6f7420657869737400000000000000604482015260640161080e565b50565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161080e906124f8565b600b610a6a828261257b565b5050565b826001600160a01b0381163314610a935760115460ff1615610a9357610a93336116fb565b610a9e84848461173f565b50505050565b323314610af35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161080e565b600c5481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b59919061263a565b610b639190612653565b1115610b815760405162461bcd60e51b815260040161080e90612666565b6001601154610100900460ff166001811115610b9f57610b9f61240e565b14610bbc5760405162461bcd60e51b815260040161080e90612491565b80600e54610bca919061269d565b341015610c0e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b604482015260640161080e565b80610c183361103a565b1015610c665760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f72207573657220726561636865640000000000604482015260640161080e565b610a31338261174a565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b815260040161080e906124f8565b6000610caf6001546000546000199190030190565b9050600c548361ffff16306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b919061263a565b610d259190612653565b1115610d435760405162461bcd60e51b815260040161080e90612666565b61097a828461ffff1661174a565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161080e906124f8565b600a610a6a828261257b565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161080e906124f8565b600c55565b6008546001600160a01b03163314610de05760405162461bcd60e51b815260040161080e906124f8565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610e295760405162461bcd60e51b815260040161080e906124f8565b6000610e3d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e87576040519150601f19603f3d011682016040523d82523d6000602084013e610e8c565b606091505b5050905080610a3157600080fd5b826001600160a01b0381163314610ebf5760115460ff1615610ebf57610ebf336116fb565b610a9e848484611764565b610ed4338261177f565b610f365760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161080e565b610a31816117de565b6008546001600160a01b03163314610f695760405162461bcd60e51b815260040161080e906124f8565b601055565b6000610f79826117e9565b5192915050565b60006001600160a01b038216610fa9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161080e906124f8565b6110026000611910565b565b6008546001600160a01b0316331461102e5760405162461bcd60e51b815260040161080e906124f8565b6009610a6a828261257b565b60006001601154610100900460ff16600181111561105a5761105a61240e565b036107f6576001600160a01b038216600090815260056020526040902054600160401b90046001600160401b03166110918361163b565b6001600160401b03166010546110a79190612653565b6107ac919061247e565b3233146111005760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161080e565b6000600f549050600c5481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611149573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116d919061263a565b6111779190612653565b11156111955760405162461bcd60e51b815260040161080e90612666565b6001601154610100900460ff1660018111156111b3576111b361240e565b146111d05760405162461bcd60e51b815260040161080e90612491565b806111da336107b2565b10156112285760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f72207573657220726561636865640000000000604482015260640161080e565b611232338261174a565b610a3133826112403361163b565b61124a91906126b4565b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6008546001600160a01b031633146112b35760405162461bcd60e51b815260040161080e906124f8565b600e55565b60606003805461082b906124be565b336001600160a01b038316036112f05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113865760405162461bcd60e51b815260040161080e906124f8565b6011805460ff1916911515919091179055565b836001600160a01b03811633146113be5760115460ff16156113be576113be336116fb565b6113ca85858585611962565b5050505050565b60606113dc82611666565b6114405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60115462010000900460ff1615156000036114e757600b8054611462906124be565b80601f016020809104026020016040519081016040528092919081815260200182805461148e906124be565b80156114db5780601f106114b0576101008083540402835291602001916114db565b820191906000526020600020905b8154815290600101906020018083116114be57829003601f168201915b50505050509050919050565b60006114f16119ad565b90506000815111611511576040518060200160405280600081525061153f565b8061151b846119bc565b600a60405160200161152f939291906126db565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159e5760405162461bcd60e51b815260040161080e906124f8565b6001600160a01b0381166116035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610a3181611910565b6008546001600160a01b031633146116365760405162461bcd60e51b815260040161080e906124f8565b600f55565b6001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b60008160011115801561167a575060005482105b80156107ac575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611737573d6000803e3d6000fd5b6000603a5250565b61097a838383611abc565b610a6a828260405180602001604052806000815250611c95565b61097a83838360405180602001604052806000815250611399565b60008061178b83610f6e565b9050806001600160a01b0316846001600160a01b031614806117b257506117b28185611546565b806117d65750836001600160a01b03166117cb846108ae565b6001600160a01b0316145b949350505050565b610a31816000611ca2565b60408051606081018252600080825260208201819052918101919091528180600111158015611819575060005481105b156118f757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118f55780516001600160a01b03161561188c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118f0579392505050565b61188c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196d848484611abc565b6001600160a01b0383163b1515801561198f575061198d84848484611e55565b155b15610a9e576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461082b906124be565b6060816000036119e35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0d57806119f78161277b565b9150611a069050600a836127aa565b91506119e7565b6000816001600160401b03811115611a2757611a276121f3565b6040519080825280601f01601f191660200182016040528015611a51576020820181803683370190505b5090505b84156117d657611a6660018361247e565b9150611a73600a866127be565b611a7e906030612653565b60f81b818381518110611a9357611a936127d2565b60200101906001600160f81b031916908160001a905350611ab5600a866127aa565b9450611a55565b6000611ac7826117e9565b9050836001600160a01b031681600001516001600160a01b031614611afe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b1c5750611b1c8533611546565b80611b37575033611b2c846108ae565b6001600160a01b0316145b905080611b5757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7e57604051633a954ecd60e21b815260040160405180910390fd5b611b8a6000848761169f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c5e576000548214611c5e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061284383398151915260405160405180910390a46113ca565b61097a8383836001611f40565b6000611cad836117e9565b80519091508215611d13576000336001600160a01b0383161480611cd65750611cd68233611546565b80611cf1575033611ce6866108ae565b6001600160a01b0316145b905080611d1157604051632ce44b5f60e11b815260040160405180910390fd5b505b611d1f6000858361169f565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e1d576000548214611e1d57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612843833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e8a9033908990889088906004016127e8565b6020604051808303816000875af1925050508015611ec5575060408051601f3d908101601f19168201909252611ec291810190612825565b60015b611f23573d808015611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b508051600003611f1b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f6957604051622e076360e81b815260040160405180910390fd5b83600003611f8a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561203657506001600160a01b0387163b15155b156120ac575b60405182906001600160a01b03891690600090600080516020612843833981519152908290a46120756000888480600101955088611e55565b612092576040516368d2bf6b60e11b815260040160405180910390fd5b80820361203c5782600054146120a757600080fd5b6120df565b5b6040516001830192906001600160a01b03891690600090600080516020612843833981519152908290a48082036120ad575b506000556113ca565b6001600160e01b031981168114610a3157600080fd5b60006020828403121561211057600080fd5b813561153f816120e8565b80356001600160a01b038116811461081757600080fd5b60006020828403121561214457600080fd5b61153f8261211b565b60005b83811015612168578181015183820152602001612150565b50506000910152565b6000815180845261218981602086016020860161214d565b601f01601f19169290920160200192915050565b60208152600061153f6020830184612171565b6000602082840312156121c257600080fd5b5035919050565b600080604083850312156121dc57600080fd5b6121e58361211b565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612223576122236121f3565b604051601f8501601f19908116603f0116810190828211818310171561224b5761224b6121f3565b8160405280935085815286868601111561226457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229057600080fd5b81356001600160401b038111156122a657600080fd5b8201601f810184136122b757600080fd5b6117d684823560208401612209565b6000806000606084860312156122db57600080fd5b6122e48461211b565b92506122f26020850161211b565b9150604084013590509250925092565b6000806040838503121561231557600080fd5b823561ffff8116811461232757600080fd5b91506123356020840161211b565b90509250929050565b8035801515811461081757600080fd5b6000806040838503121561236157600080fd5b61236a8361211b565b91506123356020840161233e565b60006020828403121561238a57600080fd5b61153f8261233e565b600080600080608085870312156123a957600080fd5b6123b28561211b565b93506123c06020860161211b565b92506040850135915060608501356001600160401b038111156123e257600080fd5b8501601f810187136123f357600080fd5b61240287823560208401612209565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016002831061244657634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561245f57600080fd5b6123278361211b565b634e487b7160e01b600052601160045260246000fd5b818103818111156107ac576107ac612468565b60208082526013908201527209ad2dce840e6e8c2e8ca40dad2e6dac2e8c6d606b1b604082015260600190565b600181811c908216806124d257607f821691505b6020821081036124f257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561097a57600081815260208120601f850160051c810160208610156125545750805b601f850160051c820191505b8181101561257357828155600101612560565b505050505050565b81516001600160401b03811115612594576125946121f3565b6125a8816125a284546124be565b8461252d565b602080601f8311600181146125dd57600084156125c55750858301515b600019600386901b1c1916600185901b178555612573565b600085815260208120601f198616915b8281101561260c578886015182559484019460019091019084016125ed565b508582101561262a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561264c57600080fd5b5051919050565b808201808211156107ac576107ac612468565b60208082526017908201527f4d696e742065786365656473206d617820737570706c79000000000000000000604082015260600190565b80820281158282048414176107ac576107ac612468565b6001600160401b038181168382160190808211156126d4576126d4612468565b5092915050565b6000845160206126ee8285838a0161214d565b8551918401916127018184848a0161214d565b8554920191600090612712816124be565b6001828116801561272a576001811461273f5761276b565b60ff198416875282151583028701945061276b565b896000528560002060005b848110156127635781548982015290830190870161274a565b505082870194505b50929a9950505050505050505050565b60006001820161278d5761278d612468565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127b9576127b9612794565b500490565b6000826127cd576127cd612794565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281b90830184612171565b9695505050505050565b60006020828403121561283757600080fd5b815161153f816120e856feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220cce20211435da2465a551fa4cdfa69e071e4bf6b09e3b4095af26c7d6c7f795c64736f6c63430008120033697066733a2f2f62616679626569626c756c723633646c6b716934377a7a786773666b636e7134633673697a676e7366337a64656e6636797171786569686f6e35752f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085363687765696e6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085363687765696e65000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063a7048ae1116100b6578063c87b56dd1161007a578063c87b56dd146106b0578063ce82c489146106d0578063e985e9c5146106e6578063f2fde38b14610706578063f8604f1114610726578063fb796e6c1461074657600080fd5b8063a7048ae114610618578063b47cacc91461062e578063b7c0b8e814610644578063b88d4fde14610664578063c051e38a1461068457600080fd5b80638da5cb5b116100fd5780638da5cb5b1461058557806391b7f5ed146105a357806395d89b41146105c3578063a22cb465146105d8578063a475b5dd146105f857600080fd5b806370a08231146104fb578063715018a61461051b5780637ec4a659146105305780638087b013146105505780638ab534471461057057600080fd5b806326c7f77c116101d25780633bd64968116101965780633bd64968146104515780633ccfd60b1461046657806342842e0e1461047b57806342966c681461049b578063613687f2146104bb5780636352211e146104db57600080fd5b806326c7f77c146103c85780632f6f98e1146103db578063305ae775146103fb57806332cb6b0c1461041b5780633b4c4b251461043157600080fd5b80630bb862d1116102195780630bb862d1146103355780631067fcc714610355578063140f3a971461037557806318160ddd1461038b57806323b872dd146103a857600080fd5b806301ffc9a71461025657806303abc9181461028b57806306fdde03146102b9578063081812fc146102db578063095ea7b314610313575b600080fd5b34801561026257600080fd5b506102766102713660046120fe565b610760565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612132565b6107b2565b604051908152602001610282565b3480156102c557600080fd5b506102ce61081c565b604051610282919061219d565b3480156102e757600080fd5b506102fb6102f63660046121b0565b6108ae565b6040516001600160a01b039091168152602001610282565b34801561031f57600080fd5b5061033361032e3660046121c9565b6108f2565b005b34801561034157600080fd5b506103336103503660046121b0565b61097f565b34801561036157600080fd5b5061033361037036600461227e565b610a34565b34801561038157600080fd5b506102ab60105481565b34801561039757600080fd5b5060015460005403600019016102ab565b3480156103b457600080fd5b506103336103c33660046122c6565b610a6e565b6103336103d63660046121b0565b610aa4565b3480156103e757600080fd5b506103336103f6366004612302565b610c70565b34801561040757600080fd5b5061033361041636600461227e565b610d51565b34801561042757600080fd5b506102ab600c5481565b34801561043d57600080fd5b5061033361044c3660046121b0565b610d87565b34801561045d57600080fd5b50610333610db6565b34801561047257600080fd5b50610333610dff565b34801561048757600080fd5b506103336104963660046122c6565b610e9a565b3480156104a757600080fd5b506103336104b63660046121b0565b610eca565b3480156104c757600080fd5b506103336104d63660046121b0565b610f3f565b3480156104e757600080fd5b506102fb6104f63660046121b0565b610f6e565b34801561050757600080fd5b506102ab610516366004612132565b610f80565b34801561052757600080fd5b50610333610fce565b34801561053c57600080fd5b5061033361054b36600461227e565b611004565b34801561055c57600080fd5b506102ab61056b366004612132565b61103a565b34801561057c57600080fd5b506103336110b1565b34801561059157600080fd5b506008546001600160a01b03166102fb565b3480156105af57600080fd5b506103336105be3660046121b0565b611289565b3480156105cf57600080fd5b506102ce6112b8565b3480156105e457600080fd5b506103336105f336600461234e565b6112c7565b34801561060457600080fd5b506011546102769062010000900460ff1681565b34801561062457600080fd5b506102ab600f5481565b34801561063a57600080fd5b506102ab600d5481565b34801561065057600080fd5b5061033361065f366004612378565b61135c565b34801561067057600080fd5b5061033361067f366004612393565b611399565b34801561069057600080fd5b506011546106a390610100900460ff1681565b6040516102829190612424565b3480156106bc57600080fd5b506102ce6106cb3660046121b0565b6113d1565b3480156106dc57600080fd5b506102ab600e5481565b3480156106f257600080fd5b5061027661070136600461244c565b611546565b34801561071257600080fd5b50610333610721366004612132565b611574565b34801561073257600080fd5b506103336107413660046121b0565b61160c565b34801561075257600080fd5b506011546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061079157506001600160e01b03198216635b5e139f60e01b145b806107ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006001601154610100900460ff1660018111156107d2576107d261240e565b036107f6576107e08261163b565b6001600160401b0316600f546107ac919061247e565b60405162461bcd60e51b815260040161080e90612491565b60405180910390fd5b919050565b60606002805461082b906124be565b80601f0160208091040260200160405190810160405280929190818152602001828054610857906124be565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611666565b6108d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108fd82610f6e565b9050806001600160a01b0316836001600160a01b0316036109315760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610951575061094f8133611546565b155b1561096f576040516367d9dca160e11b815260040160405180910390fd5b61097a83838361169f565b505050565b6008546001600160a01b031633146109a95760405162461bcd60e51b815260040161080e906124f8565b806000036109cb57601180546000919061ff001916610100835b021790555050565b806001036109e957601180546001919061ff001916610100836109c3565b60405162461bcd60e51b815260206004820152601960248201527f4d696e7420737461746520646f6573206e6f7420657869737400000000000000604482015260640161080e565b50565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161080e906124f8565b600b610a6a828261257b565b5050565b826001600160a01b0381163314610a935760115460ff1615610a9357610a93336116fb565b610a9e84848461173f565b50505050565b323314610af35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161080e565b600c5481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b59919061263a565b610b639190612653565b1115610b815760405162461bcd60e51b815260040161080e90612666565b6001601154610100900460ff166001811115610b9f57610b9f61240e565b14610bbc5760405162461bcd60e51b815260040161080e90612491565b80600e54610bca919061269d565b341015610c0e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b604482015260640161080e565b80610c183361103a565b1015610c665760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f72207573657220726561636865640000000000604482015260640161080e565b610a31338261174a565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b815260040161080e906124f8565b6000610caf6001546000546000199190030190565b9050600c548361ffff16306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b919061263a565b610d259190612653565b1115610d435760405162461bcd60e51b815260040161080e90612666565b61097a828461ffff1661174a565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161080e906124f8565b600a610a6a828261257b565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161080e906124f8565b600c55565b6008546001600160a01b03163314610de05760405162461bcd60e51b815260040161080e906124f8565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610e295760405162461bcd60e51b815260040161080e906124f8565b6000610e3d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e87576040519150601f19603f3d011682016040523d82523d6000602084013e610e8c565b606091505b5050905080610a3157600080fd5b826001600160a01b0381163314610ebf5760115460ff1615610ebf57610ebf336116fb565b610a9e848484611764565b610ed4338261177f565b610f365760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161080e565b610a31816117de565b6008546001600160a01b03163314610f695760405162461bcd60e51b815260040161080e906124f8565b601055565b6000610f79826117e9565b5192915050565b60006001600160a01b038216610fa9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161080e906124f8565b6110026000611910565b565b6008546001600160a01b0316331461102e5760405162461bcd60e51b815260040161080e906124f8565b6009610a6a828261257b565b60006001601154610100900460ff16600181111561105a5761105a61240e565b036107f6576001600160a01b038216600090815260056020526040902054600160401b90046001600160401b03166110918361163b565b6001600160401b03166010546110a79190612653565b6107ac919061247e565b3233146111005760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161080e565b6000600f549050600c5481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611149573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116d919061263a565b6111779190612653565b11156111955760405162461bcd60e51b815260040161080e90612666565b6001601154610100900460ff1660018111156111b3576111b361240e565b146111d05760405162461bcd60e51b815260040161080e90612491565b806111da336107b2565b10156112285760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f72207573657220726561636865640000000000604482015260640161080e565b611232338261174a565b610a3133826112403361163b565b61124a91906126b4565b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6008546001600160a01b031633146112b35760405162461bcd60e51b815260040161080e906124f8565b600e55565b60606003805461082b906124be565b336001600160a01b038316036112f05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113865760405162461bcd60e51b815260040161080e906124f8565b6011805460ff1916911515919091179055565b836001600160a01b03811633146113be5760115460ff16156113be576113be336116fb565b6113ca85858585611962565b5050505050565b60606113dc82611666565b6114405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60115462010000900460ff1615156000036114e757600b8054611462906124be565b80601f016020809104026020016040519081016040528092919081815260200182805461148e906124be565b80156114db5780601f106114b0576101008083540402835291602001916114db565b820191906000526020600020905b8154815290600101906020018083116114be57829003601f168201915b50505050509050919050565b60006114f16119ad565b90506000815111611511576040518060200160405280600081525061153f565b8061151b846119bc565b600a60405160200161152f939291906126db565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159e5760405162461bcd60e51b815260040161080e906124f8565b6001600160a01b0381166116035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610a3181611910565b6008546001600160a01b031633146116365760405162461bcd60e51b815260040161080e906124f8565b600f55565b6001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b60008160011115801561167a575060005482105b80156107ac575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611737573d6000803e3d6000fd5b6000603a5250565b61097a838383611abc565b610a6a828260405180602001604052806000815250611c95565b61097a83838360405180602001604052806000815250611399565b60008061178b83610f6e565b9050806001600160a01b0316846001600160a01b031614806117b257506117b28185611546565b806117d65750836001600160a01b03166117cb846108ae565b6001600160a01b0316145b949350505050565b610a31816000611ca2565b60408051606081018252600080825260208201819052918101919091528180600111158015611819575060005481105b156118f757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118f55780516001600160a01b03161561188c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118f0579392505050565b61188c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196d848484611abc565b6001600160a01b0383163b1515801561198f575061198d84848484611e55565b155b15610a9e576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461082b906124be565b6060816000036119e35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0d57806119f78161277b565b9150611a069050600a836127aa565b91506119e7565b6000816001600160401b03811115611a2757611a276121f3565b6040519080825280601f01601f191660200182016040528015611a51576020820181803683370190505b5090505b84156117d657611a6660018361247e565b9150611a73600a866127be565b611a7e906030612653565b60f81b818381518110611a9357611a936127d2565b60200101906001600160f81b031916908160001a905350611ab5600a866127aa565b9450611a55565b6000611ac7826117e9565b9050836001600160a01b031681600001516001600160a01b031614611afe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b1c5750611b1c8533611546565b80611b37575033611b2c846108ae565b6001600160a01b0316145b905080611b5757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7e57604051633a954ecd60e21b815260040160405180910390fd5b611b8a6000848761169f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c5e576000548214611c5e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061284383398151915260405160405180910390a46113ca565b61097a8383836001611f40565b6000611cad836117e9565b80519091508215611d13576000336001600160a01b0383161480611cd65750611cd68233611546565b80611cf1575033611ce6866108ae565b6001600160a01b0316145b905080611d1157604051632ce44b5f60e11b815260040160405180910390fd5b505b611d1f6000858361169f565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e1d576000548214611e1d57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612843833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e8a9033908990889088906004016127e8565b6020604051808303816000875af1925050508015611ec5575060408051601f3d908101601f19168201909252611ec291810190612825565b60015b611f23573d808015611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b508051600003611f1b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f6957604051622e076360e81b815260040160405180910390fd5b83600003611f8a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561203657506001600160a01b0387163b15155b156120ac575b60405182906001600160a01b03891690600090600080516020612843833981519152908290a46120756000888480600101955088611e55565b612092576040516368d2bf6b60e11b815260040160405180910390fd5b80820361203c5782600054146120a757600080fd5b6120df565b5b6040516001830192906001600160a01b03891690600090600080516020612843833981519152908290a48082036120ad575b506000556113ca565b6001600160e01b031981168114610a3157600080fd5b60006020828403121561211057600080fd5b813561153f816120e8565b80356001600160a01b038116811461081757600080fd5b60006020828403121561214457600080fd5b61153f8261211b565b60005b83811015612168578181015183820152602001612150565b50506000910152565b6000815180845261218981602086016020860161214d565b601f01601f19169290920160200192915050565b60208152600061153f6020830184612171565b6000602082840312156121c257600080fd5b5035919050565b600080604083850312156121dc57600080fd5b6121e58361211b565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612223576122236121f3565b604051601f8501601f19908116603f0116810190828211818310171561224b5761224b6121f3565b8160405280935085815286868601111561226457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229057600080fd5b81356001600160401b038111156122a657600080fd5b8201601f810184136122b757600080fd5b6117d684823560208401612209565b6000806000606084860312156122db57600080fd5b6122e48461211b565b92506122f26020850161211b565b9150604084013590509250925092565b6000806040838503121561231557600080fd5b823561ffff8116811461232757600080fd5b91506123356020840161211b565b90509250929050565b8035801515811461081757600080fd5b6000806040838503121561236157600080fd5b61236a8361211b565b91506123356020840161233e565b60006020828403121561238a57600080fd5b61153f8261233e565b600080600080608085870312156123a957600080fd5b6123b28561211b565b93506123c06020860161211b565b92506040850135915060608501356001600160401b038111156123e257600080fd5b8501601f810187136123f357600080fd5b61240287823560208401612209565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016002831061244657634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561245f57600080fd5b6123278361211b565b634e487b7160e01b600052601160045260246000fd5b818103818111156107ac576107ac612468565b60208082526013908201527209ad2dce840e6e8c2e8ca40dad2e6dac2e8c6d606b1b604082015260600190565b600181811c908216806124d257607f821691505b6020821081036124f257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561097a57600081815260208120601f850160051c810160208610156125545750805b601f850160051c820191505b8181101561257357828155600101612560565b505050505050565b81516001600160401b03811115612594576125946121f3565b6125a8816125a284546124be565b8461252d565b602080601f8311600181146125dd57600084156125c55750858301515b600019600386901b1c1916600185901b178555612573565b600085815260208120601f198616915b8281101561260c578886015182559484019460019091019084016125ed565b508582101561262a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561264c57600080fd5b5051919050565b808201808211156107ac576107ac612468565b60208082526017908201527f4d696e742065786365656473206d617820737570706c79000000000000000000604082015260600190565b80820281158282048414176107ac576107ac612468565b6001600160401b038181168382160190808211156126d4576126d4612468565b5092915050565b6000845160206126ee8285838a0161214d565b8551918401916127018184848a0161214d565b8554920191600090612712816124be565b6001828116801561272a576001811461273f5761276b565b60ff198416875282151583028701945061276b565b896000528560002060005b848110156127635781548982015290830190870161274a565b505082870194505b50929a9950505050505050505050565b60006001820161278d5761278d612468565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127b9576127b9612794565b500490565b6000826127cd576127cd612794565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281b90830184612171565b9695505050505050565b60006020828403121561283757600080fd5b815161153f816120e856feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220cce20211435da2465a551fa4cdfa69e071e4bf6b09e3b4095af26c7d6c7f795c64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085363687765696e6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085363687765696e65000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Schweine
Arg [1] : _tokenSymbol (string): Schweine

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 5363687765696e65000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 5363687765696e65000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51107:5930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;52493:229;;;;;;;;;;-1:-1:-1;52493:229:0;;;;;:::i;:::-;;:::i;:::-;;;1107:25:1;;;1095:2;1080:18;52493:229:0;961:177:1;27558:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;29061:204:0;2084:203:1;28624:371:0;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;:::-;;52248:237;;;;;;;;;;-1:-1:-1;52248:237:0;;;;;:::i;:::-;;:::i;55458:102::-;;;;;;;;;;-1:-1:-1;55458:102:0;;;;;:::i;:::-;;:::i;51671:35::-;;;;;;;;;;;;;;;;23694:303;;;;;;;;;;-1:-1:-1;23551:1:0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;23694:303;;56229:159;;;;;;;;;;-1:-1:-1;56229:159:0;;;;;:::i;:::-;;:::i;53470:464::-;;;;;;:::i;:::-;;:::i;53941:327::-;;;;;;;;;;-1:-1:-1;53941:327:0;;;;;:::i;:::-;;:::i;55241:102::-;;;;;;;;;;-1:-1:-1;55241:102:0;;;;;:::i;:::-;;:::i;51479:32::-;;;;;;;;;;;;;;;;54284:100;;;;;;;;;;-1:-1:-1;54284:100:0;;;;;:::i;:::-;;:::i;55575:70::-;;;;;;;;;;;;;:::i;55655:463::-;;;;;;;;;;;;;:::i;56394:167::-;;;;;;;;;;-1:-1:-1;56394:167:0;;;;;:::i;:::-;;:::i;50816:242::-;;;;;;;;;;-1:-1:-1;50816:242:0;;;;;:::i;:::-;;:::i;54503:106::-;;;;;;;;;;-1:-1:-1;54503:106:0;;;;;:::i;:::-;;:::i;27366:125::-;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;43700:103::-;;;;;;;;;;;;;:::i;55351:102::-;;;;;;;;;;-1:-1:-1;55351:102:0;;;;;:::i;:::-;;:::i;52730:250::-;;;;;;;;;;-1:-1:-1;52730:250:0;;;;;:::i;:::-;;:::i;52988:474::-;;;;;;;;;;;;;:::i;43048:87::-;;;;;;;;;;-1:-1:-1;43121:6:0;;-1:-1:-1;;;;;43121:6:0;43048:87;;54392:103;;;;;;;;;;-1:-1:-1;54392:103:0;;;;;:::i;:::-;;:::i;27727:104::-;;;;;;;;;;;;;:::i;29337:287::-;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;51852:25::-;;;;;;;;;;-1:-1:-1;51852:25:0;;;;;;;;;;;51630:34;;;;;;;;;;;;;;;;51524:41;;;;;;;;;;;;;;;;56784:117;;;;;;;;;;-1:-1:-1;56784:117:0;;;;;:::i;:::-;;:::i;56567:210::-;;;;;;;;;;-1:-1:-1;56567:210:0;;;;;:::i;:::-;;:::i;51821:26::-;;;;;;;;;;-1:-1:-1;51821:26:0;;;;;;;;;;;;;;;;;;:::i;54734:490::-;;;;;;;;;;-1:-1:-1;54734:490:0;;;;;:::i;:::-;;:::i;51572:45::-;;;;;;;;;;;;;;;;29695:164;;;;;;;;;;-1:-1:-1;29695:164:0;;;;;:::i;:::-;;:::i;43958:201::-;;;;;;;;;;-1:-1:-1;43958:201:0;;;;;:::i;:::-;;:::i;54617:106::-;;;;;;;;;;-1:-1:-1;54617:106:0;;;;;:::i;:::-;;:::i;51714:36::-;;;;;;;;;;-1:-1:-1;51714:36:0;;;;;;;;24445:305;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;52493:229::-;52566:7;52603:14;52590:9;;;;;;;;:27;;;;;;;:::i;:::-;;52586:128;;52657:12;52665:3;52657:7;:12::i;:::-;-1:-1:-1;;;;;52639:30:0;:15;;:30;;;;:::i;52586:128::-;52685:29;;-1:-1:-1;;;52685:29:0;;;;;;;:::i;:::-;;;;;;;;52586:128;52493:229;;;:::o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;52248:237::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;52322:8:::1;52334:1;52322:13:::0;52318:159:::1;;52337:9;:28:::0;;52349:16:::1;::::0;52337:9;-1:-1:-1;;52337:28:0::1;;52349:16:::0;52337:28:::1;;;;;;52248:237:::0;:::o;52318:159::-:1;52385:8;52397:1;52385:13:::0;52381:96:::1;;52400:9;:26:::0;;52412:14:::1;::::0;52400:9;-1:-1:-1;;52400:26:0::1;;52412:14:::0;52400:26:::1;::::0;52381:96:::1;52442:35;::::0;-1:-1:-1;;;52442:35:0;;8046:2:1;52442:35:0::1;::::0;::::1;8028:21:1::0;8085:2;8065:18;;;8058:30;8124:27;8104:18;;;8097:55;8169:18;;52442:35:0::1;7844:349:1::0;52381:96:0::1;52248:237:::0;:::o;55458:102::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55532:9:::1;:22;55544:10:::0;55532:9;:22:::1;:::i;:::-;;55458:102:::0;:::o;56229:159::-;56330:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57002:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56343:39:::1;56364:4;56370:2;56374:7;56343:20;:39::i;:::-;56229:159:::0;;;;:::o;53470:464::-;52161:9;52174:10;52161:23;52153:66;;;;-1:-1:-1;;;52153:66:0;;10604:2:1;52153:66:0;;;10586:21:1;10643:2;10623:18;;;10616:30;10682:32;10662:18;;;10655:60;10732:18;;52153:66:0;10402:354:1;52153:66:0;53588:10:::1;;53576:8;53555:4;-1:-1:-1::0;;;;;53555:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;53547:79;;;;-1:-1:-1::0;;;53547:79:0::1;;;;;;;:::i;:::-;53658:14;53645:9;::::0;::::1;::::0;::::1;;;;:27:::0;::::1;;;;;;:::i;:::-;;53637:59;;;;-1:-1:-1::0;;;53637:59:0::1;;;;;;;:::i;:::-;53747:8;53728:16;;:27;;;;:::i;:::-;53715:9;:40;;53707:71;;;::::0;-1:-1:-1;;;53707:71:0;;11807:2:1;53707:71:0::1;::::0;::::1;11789:21:1::0;11846:2;11826:18;;;11819:30;-1:-1:-1;;;11865:18:1;;;11858:48;11923:18;;53707:71:0::1;11605:342:1::0;53707:71:0::1;53842:8;53797:41;53827:10;53797:29;:41::i;:::-;:53;;53789:93;;;::::0;-1:-1:-1;;;53789:93:0;;12154:2:1;53789:93:0::1;::::0;::::1;12136:21:1::0;12193:2;12173:18;;;12166:30;12232:29;12212:18;;;12205:57;12279:18;;53789:93:0::1;11952:351:1::0;53789:93:0::1;53894:32;53904:10;53916:8;53894:9;:32::i;53941:327::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54021:18:::1;54049:13;23551:1:::0;23948:12;23738:7;23932:13;-1:-1:-1;;23932:28:0;;;:46;;23694:303;54049:13:::1;54021:42;;54112:10;;54100:8;54079:29;;:4;-1:-1:-1::0;;;;;54079:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;54071:79;;;;-1:-1:-1::0;;;54071:79:0::1;;;;;;;:::i;:::-;54158:31;54168:9;54180:8;54158:31;;:9;:31::i;55241:102::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55315:9:::1;:22;55327:10:::0;55315:9;:22:::1;:::i;54284:100::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54353:10:::1;:23:::0;54284:100::o;55575:70::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55634:6:::1;::::0;;-1:-1:-1;;55624:16:0;::::1;55634:6:::0;;;;::::1;;;55633:7;55624:16:::0;;::::1;;::::0;;55575:70::o;55655:463::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55940:7:::1;55961;43121:6:::0;;-1:-1:-1;;;;;43121:6:0;;43048:87;55961:7:::1;-1:-1:-1::0;;;;;55953:21:0::1;55982;55953:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55939:69;;;56023:2;56015:11;;;::::0;::::1;56394:167:::0;56499:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57002:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56512:43:::1;56537:4;56543:2;56547:7;56512:24;:43::i;50816:242::-:0;50934:41;2920:10;50967:7;50934:18;:41::i;:::-;50926:99;;;;-1:-1:-1;;;50926:99:0;;12720:2:1;50926:99:0;;;12702:21:1;12759:2;12739:18;;;12732:30;12798:34;12778:18;;;12771:62;-1:-1:-1;;;12849:18:1;;;12842:43;12902:19;;50926:99:0;12518:409:1;50926:99:0;51036:14;51042:7;51036:5;:14::i;54503:106::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54574:15:::1;:27:::0;54503:106::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24984:27:0;;24814:206::o;43700:103::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;43765:30:::1;43792:1;43765:18;:30::i;:::-;43700:103::o:0;55351:102::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55425:9:::1;:22;55437:10:::0;55425:9;:22:::1;:::i;52730:250::-:0;52803:7;52840:14;52827:9;;;;;;;;:27;;;;;;;:::i;:::-;;52823:149;;-1:-1:-1;;;;;25198:19:0;;25163:7;25198:19;;;:12;:19;;;;;:32;-1:-1:-1;;;25198:32:0;;-1:-1:-1;;;;;25198:32:0;52894:12;52902:3;52894:7;:12::i;:::-;-1:-1:-1;;;;;52876:30:0;:15;;:30;;;;:::i;:::-;:51;;;;:::i;52988:474::-;52161:9;52174:10;52161:23;52153:66;;;;-1:-1:-1;;;52153:66:0;;10604:2:1;52153:66:0;;;10586:21:1;10643:2;10623:18;;;10616:30;10682:32;10662:18;;;10655:60;10732:18;;52153:66:0;10402:354:1;52153:66:0;53041:16:::1;53060:15;;53041:34;;53127:10;;53115:8;53094:4;-1:-1:-1::0;;;;;53094:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;53086:79;;;;-1:-1:-1::0;;;53086:79:0::1;;;;;;;:::i;:::-;53197:14;53184:9;::::0;::::1;::::0;::::1;;;;:27:::0;::::1;;;;;;:::i;:::-;;53176:59;;;;-1:-1:-1::0;;;53176:59:0::1;;;;;;;:::i;:::-;53299:8;53254:41;53284:10;53254:29;:41::i;:::-;:53;;53246:93;;;::::0;-1:-1:-1;;;53246:93:0;;12154:2:1;53246:93:0::1;::::0;::::1;12136:21:1::0;12193:2;12173:18;;;12166:30;12232:29;12212:18;;;12205:57;12279:18;;53246:93:0::1;11952:351:1::0;53246:93:0::1;53351:31;53361:10;53373:8;53351:9;:31::i;:::-;53395:59;53403:10;53444:8;53415:19;53423:10;53415:7;:19::i;:::-;:38;;;;:::i;:::-;-1:-1:-1::0;;;;;25956:19:0;;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;25956:29:0;;;-1:-1:-1;;;25956:29:0;-1:-1:-1;;;;;25956:29:0;;;;;;;;;25892:101;54392:103;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54459:16:::1;:28:::0;54392:103::o;27727:104::-;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;56784:117::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;56861:24:::1;:32:::0;;-1:-1:-1;;56861:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56784:117::o;56567:210::-;56706:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57002:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56722:49:::1;56747:4;56753:2;56757:7;56766:4;56722:24;:49::i;:::-;56567:210:::0;;;;;:::o;54734:490::-;54833:13;54874:17;54882:8;54874:7;:17::i;:::-;54858:98;;;;-1:-1:-1;;;54858:98:0;;13319:2:1;54858:98:0;;;13301:21:1;13358:2;13338:18;;;13331:30;13397:34;13377:18;;;13370:62;-1:-1:-1;;;13448:18:1;;;13441:45;13503:19;;54858:98:0;13117:411:1;54858:98:0;54974:6;;;;;;;:15;;54984:5;54974:15;54969:50;;55006:9;54999:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54734:490;;;:::o;54969:50::-;55033:28;55064:10;:8;:10::i;:::-;55033:41;;55119:1;55094:14;55088:28;:32;:130;;;;;;;;;;;;;;;;;55156:14;55172:19;:8;:17;:19::i;:::-;55193:9;55139:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55088:130;55081:137;54734:490;-1:-1:-1;;;54734:490:0:o;29695:164::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164::o;43958:201::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44047:22:0;::::1;44039:73;;;::::0;-1:-1:-1;;;44039:73:0;;14996:2:1;44039:73:0::1;::::0;::::1;14978:21:1::0;15035:2;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;-1:-1:-1;;;15125:18:1;;;15118:36;15171:19;;44039:73:0::1;14794:402:1::0;44039:73:0::1;44123:28;44142:8;44123:18;:28::i;54617:106::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54688:15:::1;:27:::0;54617:106::o;25592:112::-;-1:-1:-1;;;;;25673:19:0;25647:6;25673:19;;;:12;:19;;;;;:23;-1:-1:-1;;;25673:23:0;;-1:-1:-1;;;;;25673:23:0;;25592:112::o;31047:187::-;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39650:196::-;39765:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39765:29:0;-1:-1:-1;;;;;39765:29:0;;;;;;;;;39810:28;;39765:24;;39810:28;;;;;;;39650:196;;;:::o;48344:1359::-;48737:22;48731:4;48724:36;48830:9;48824:4;48817:23;48905:8;48899:4;48892:22;49082:4;49076;49070;49064;49037:25;49030:5;49019:68;49009:274;;49203:16;49197:4;49191;49176:44;49251:16;49245:4;49238:30;49009:274;49683:1;49677:4;49670:15;48344:1359;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;31675:104::-;31744:27;31754:2;31758:8;31744:27;;;;;;;;;;;;:9;:27::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;31402:265::-;31495:4;31512:13;31528:24;31544:7;31528:15;:24::i;:::-;31512:40;;31582:5;-1:-1:-1;;;;;31571:16:0;:7;-1:-1:-1;;;;;31571:16:0;;:52;;;;31591:32;31608:5;31615:7;31591:16;:32::i;:::-;31571:87;;;;31651:7;-1:-1:-1;;;;;31627:31:0;:20;31639:7;31627:11;:20::i;:::-;-1:-1:-1;;;;;31627:31:0;;31571:87;31563:96;31402:265;-1:-1:-1;;;;31402:265:0:o;36806:89::-;36866:21;36872:7;36881:5;36866;:21::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;-1:-1:-1;;;;;26423:51:0;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;-1:-1:-1;;;;;27015:29:0;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;44319:191;44412:6;;;-1:-1:-1;;;;;44429:17:0;;;-1:-1:-1;;;;;;44429:17:0;;;;;;;44462:40;;44412:6;;;44429:17;44412:6;;44462:40;;44393:16;;44462:40;44382:128;44319:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;56126:97;56179:13;56208:9;56201:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;-1:-1:-1;;;;;904:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;34593:2130;34708:35;34746:21;34759:7;34746:12;:21::i;:::-;34708:59;;34806:4;-1:-1:-1;;;;;34784:26:0;:13;:18;;;-1:-1:-1;;;;;34784:26:0;;34780:67;;34819:28;;-1:-1:-1;;;34819:28:0;;;;;;;;;;;34780:67;34860:22;2920:10;-1:-1:-1;;;;;34886:20:0;;;;:73;;-1:-1:-1;34923:36:0;34940:4;2920:10;29695:164;:::i;34923:36::-;34886:126;;;-1:-1:-1;2920:10:0;34976:20;34988:7;34976:11;:20::i;:::-;-1:-1:-1;;;;;34976:36:0;;34886:126;34860:153;;35031:17;35026:66;;35057:35;;-1:-1:-1;;;35057:35:0;;;;;;;;;;;35026:66;-1:-1:-1;;;;;35107:16:0;;35103:52;;35132:23;;-1:-1:-1;;;35132:23:0;;;;;;;;;;;35103:52;35276:35;35293:1;35297:7;35306:4;35276:8;:35::i;:::-;-1:-1:-1;;;;;35607:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35607:31:0;;;-1:-1:-1;;;;;35607:31:0;;;-1:-1:-1;;35607:31:0;;;;;;;35653:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35653:29:0;;;;;;;;;;;35733:20;;;:11;:20;;;;;;35768:18;;-1:-1:-1;;;;;;35801:49:0;;;;-1:-1:-1;;;35834:15:0;35801:49;;;;;;;;;;36124:11;;36184:24;;;;;36227:13;;35733:20;;36184:24;;36227:13;36223:384;;36437:13;;36422:11;:28;36418:174;;36475:20;;36544:28;;;;-1:-1:-1;;;;;36518:54:0;-1:-1:-1;;;36518:54:0;-1:-1:-1;;;;;;36518:54:0;;;-1:-1:-1;;;;;36475:20:0;;36518:54;;;;36418:174;35582:1036;;;36654:7;36650:2;-1:-1:-1;;;;;36635:27:0;36644:4;-1:-1:-1;;;;;36635:27:0;-1:-1:-1;;;;;;;;;;;36635:27:0;;;;;;;;;36673:42;56229:159;32142:163;32265:32;32271:2;32275:8;32285:5;32292:4;32265:5;:32::i;37124:2408::-;37204:35;37242:21;37255:7;37242:12;:21::i;:::-;37291:18;;37204:59;;-1:-1:-1;37322:290:0;;;;37356:22;2920:10;-1:-1:-1;;;;;37382:20:0;;;;:77;;-1:-1:-1;37423:36:0;37440:4;2920:10;29695:164;:::i;37423:36::-;37382:134;;;-1:-1:-1;2920:10:0;37480:20;37492:7;37480:11;:20::i;:::-;-1:-1:-1;;;;;37480:36:0;;37382:134;37356:161;;37539:17;37534:66;;37565:35;;-1:-1:-1;;;37565:35:0;;;;;;;;;;;37534:66;37341:271;37322:290;37740:35;37757:1;37761:7;37770:4;37740:8;:35::i;:::-;-1:-1:-1;;;;;38105:18:0;;;38071:31;38105:18;;;:12;:18;;;;;;;;38138:24;;-1:-1:-1;;;;;;;;;;38138:24:0;;;;;;;;;-1:-1:-1;;38138:24:0;;;;38177:29;;;;;38161:1;38177:29;;;;;;;;-1:-1:-1;;38177:29:0;;;;;;;;;;38339:20;;;:11;:20;;;;;;38374;;-1:-1:-1;;;;38442:15:0;38409:49;;;-1:-1:-1;;;38409:49:0;-1:-1:-1;;;;;;38409:49:0;;;;;;;;;;38473:22;-1:-1:-1;;;38473:22:0;;;38765:11;;;38825:24;;;;;38868:13;;38105:18;;38825:24;;38868:13;38864:384;;39078:13;;39063:11;:28;39059:174;;39116:20;;39185:28;;;;-1:-1:-1;;;;;39159:54:0;-1:-1:-1;;;39159:54:0;-1:-1:-1;;;;;;39159:54:0;;;-1:-1:-1;;;;;39116:20:0;;39159:54;;;;39059:174;-1:-1:-1;;39276:35:0;;39303:7;;-1:-1:-1;39299:1:0;;-1:-1:-1;;;;;;39276:35:0;;;-1:-1:-1;;;;;;;;;;;39276:35:0;39299:1;;39276:35;-1:-1:-1;;39499:12:0;:14;;;;;;-1:-1:-1;;37124:2408:0:o;40338:667::-;40522:72;;-1:-1:-1;;;40522:72:0;;40501:4;;-1:-1:-1;;;;;40522:36:0;;;;;:72;;2920:10;;40573:4;;40579:7;;40588:5;;40522:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40522:72:0;;;;;;;;-1:-1:-1;;40522:72:0;;;;;;;;;;;;:::i;:::-;;;40518:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40756:6;:13;40773:1;40756:18;40752:235;;40802:40;;-1:-1:-1;;;40802:40:0;;;;;;;;;;;40752:235;40945:6;40939:13;40930:6;40926:2;40922:15;40915:38;40518:480;-1:-1:-1;;;;;;40641:55:0;-1:-1:-1;;;40641:55:0;;-1:-1:-1;40338:667:0;;;;;;:::o;32564:1775::-;32703:20;32726:13;-1:-1:-1;;;;;32754:16:0;;32750:48;;32779:19;;-1:-1:-1;;;32779:19:0;;;;;;;;;;;32750:48;32813:8;32825:1;32813:13;32809:44;;32835:18;;-1:-1:-1;;;32835:18:0;;;;;;;;;;;32809:44;-1:-1:-1;;;;;33204:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33263:49:0;;-1:-1:-1;;;;;33204:44:0;;;;;;;33263:49;;;-1:-1:-1;;;;;33204:44:0;;;;;;33263:49;;;;;;;;;;;;;;;;33329:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33379:66:0;;;;-1:-1:-1;;;33429:15:0;33379:66;;;;;;;;;;33329:25;33526:23;;;33570:4;:23;;;;-1:-1:-1;;;;;;33578:13:0;;4582:19;:23;;33578:15;33566:641;;;33614:314;33645:38;;33670:12;;-1:-1:-1;;;;;33645:38:0;;;33662:1;;-1:-1:-1;;;;;;;;;;;33645:38:0;33662:1;;33645:38;33711:69;33750:1;33754:2;33758:14;;;;;;33774:5;33711:30;:69::i;:::-;33706:174;;33816:40;;-1:-1:-1;;;33816:40:0;;;;;;;;;;;33706:174;33923:3;33907:12;:19;33614:314;;34009:12;33992:13;;:29;33988:43;;34023:8;;;33988:43;33566:641;;;34072:120;34103:40;;34128:14;;;;;-1:-1:-1;;;;;34103:40:0;;;34120:1;;-1:-1:-1;;;;;;;;;;;34103:40:0;34120:1;;34103:40;34187:3;34171:12;:19;34072:120;;33566:641;-1:-1:-1;34221:13:0;:28;34271:60;56229:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;770:186;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:127::-;2612:10;2607:3;2603:20;2600:1;2593:31;2643:4;2640:1;2633:15;2667:4;2664:1;2657:15;2683:632;2748:5;-1:-1:-1;;;;;2819:2:1;2811:6;2808:14;2805:40;;;2825:18;;:::i;:::-;2900:2;2894:9;2868:2;2954:15;;-1:-1:-1;;2950:24:1;;;2976:2;2946:33;2942:42;2930:55;;;3000:18;;;3020:22;;;2997:46;2994:72;;;3046:18;;:::i;:::-;3086:10;3082:2;3075:22;3115:6;3106:15;;3145:6;3137;3130:22;3185:3;3176:6;3171:3;3167:16;3164:25;3161:45;;;3202:1;3199;3192:12;3161:45;3252:6;3247:3;3240:4;3232:6;3228:17;3215:44;3307:1;3300:4;3291:6;3283;3279:19;3275:30;3268:41;;;;2683:632;;;;;:::o;3320:451::-;3389:6;3442:2;3430:9;3421:7;3417:23;3413:32;3410:52;;;3458:1;3455;3448:12;3410:52;3498:9;3485:23;-1:-1:-1;;;;;3523:6:1;3520:30;3517:50;;;3563:1;3560;3553:12;3517:50;3586:22;;3639:4;3631:13;;3627:27;-1:-1:-1;3617:55:1;;3668:1;3665;3658:12;3617:55;3691:74;3757:7;3752:2;3739:16;3734:2;3730;3726:11;3691:74;:::i;3776:328::-;3853:6;3861;3869;3922:2;3910:9;3901:7;3897:23;3893:32;3890:52;;;3938:1;3935;3928:12;3890:52;3961:29;3980:9;3961:29;:::i;:::-;3951:39;;4009:38;4043:2;4032:9;4028:18;4009:38;:::i;:::-;3999:48;;4094:2;4083:9;4079:18;4066:32;4056:42;;3776:328;;;;;:::o;4109:346::-;4176:6;4184;4237:2;4225:9;4216:7;4212:23;4208:32;4205:52;;;4253:1;4250;4243:12;4205:52;4292:9;4279:23;4342:6;4335:5;4331:18;4324:5;4321:29;4311:57;;4364:1;4361;4354:12;4311:57;4387:5;-1:-1:-1;4411:38:1;4445:2;4430:18;;4411:38;:::i;:::-;4401:48;;4109:346;;;;;:::o;4460:160::-;4525:20;;4581:13;;4574:21;4564:32;;4554:60;;4610:1;4607;4600:12;4625:254;4690:6;4698;4751:2;4739:9;4730:7;4726:23;4722:32;4719:52;;;4767:1;4764;4757:12;4719:52;4790:29;4809:9;4790:29;:::i;:::-;4780:39;;4838:35;4869:2;4858:9;4854:18;4838:35;:::i;4884:180::-;4940:6;4993:2;4981:9;4972:7;4968:23;4964:32;4961:52;;;5009:1;5006;4999:12;4961:52;5032:26;5048:9;5032:26;:::i;5069:667::-;5164:6;5172;5180;5188;5241:3;5229:9;5220:7;5216:23;5212:33;5209:53;;;5258:1;5255;5248:12;5209:53;5281:29;5300:9;5281:29;:::i;:::-;5271:39;;5329:38;5363:2;5352:9;5348:18;5329:38;:::i;:::-;5319:48;;5414:2;5403:9;5399:18;5386:32;5376:42;;5469:2;5458:9;5454:18;5441:32;-1:-1:-1;;;;;5488:6:1;5485:30;5482:50;;;5528:1;5525;5518:12;5482:50;5551:22;;5604:4;5596:13;;5592:27;-1:-1:-1;5582:55:1;;5633:1;5630;5623:12;5582:55;5656:74;5722:7;5717:2;5704:16;5699:2;5695;5691:11;5656:74;:::i;:::-;5646:84;;;5069:667;;;;;;;:::o;5741:127::-;5802:10;5797:3;5793:20;5790:1;5783:31;5833:4;5830:1;5823:15;5857:4;5854:1;5847:15;5873:342;6019:2;6004:18;;6052:1;6041:13;;6031:144;;6097:10;6092:3;6088:20;6085:1;6078:31;6132:4;6129:1;6122:15;6160:4;6157:1;6150:15;6031:144;6184:25;;;5873:342;:::o;6220:260::-;6288:6;6296;6349:2;6337:9;6328:7;6324:23;6320:32;6317:52;;;6365:1;6362;6355:12;6317:52;6388:29;6407:9;6388:29;:::i;6485:127::-;6546:10;6541:3;6537:20;6534:1;6527:31;6577:4;6574:1;6567:15;6601:4;6598:1;6591:15;6617:128;6684:9;;;6705:11;;;6702:37;;;6719:18;;:::i;6750:343::-;6952:2;6934:21;;;6991:2;6971:18;;;6964:30;-1:-1:-1;;;7025:2:1;7010:18;;7003:49;7084:2;7069:18;;6750:343::o;7098:380::-;7177:1;7173:12;;;;7220;;;7241:61;;7295:4;7287:6;7283:17;7273:27;;7241:61;7348:2;7340:6;7337:14;7317:18;7314:38;7311:161;;7394:10;7389:3;7385:20;7382:1;7375:31;7429:4;7426:1;7419:15;7457:4;7454:1;7447:15;7311:161;;7098:380;;;:::o;7483:356::-;7685:2;7667:21;;;7704:18;;;7697:30;7763:34;7758:2;7743:18;;7736:62;7830:2;7815:18;;7483:356::o;8324:545::-;8426:2;8421:3;8418:11;8415:448;;;8462:1;8487:5;8483:2;8476:17;8532:4;8528:2;8518:19;8602:2;8590:10;8586:19;8583:1;8579:27;8573:4;8569:38;8638:4;8626:10;8623:20;8620:47;;;-1:-1:-1;8661:4:1;8620:47;8716:2;8711:3;8707:12;8704:1;8700:20;8694:4;8690:31;8680:41;;8771:82;8789:2;8782:5;8779:13;8771:82;;;8834:17;;;8815:1;8804:13;8771:82;;;8775:3;;;8324:545;;;:::o;9045:1352::-;9171:3;9165:10;-1:-1:-1;;;;;9190:6:1;9187:30;9184:56;;;9220:18;;:::i;:::-;9249:97;9339:6;9299:38;9331:4;9325:11;9299:38;:::i;:::-;9293:4;9249:97;:::i;:::-;9401:4;;9465:2;9454:14;;9482:1;9477:663;;;;10184:1;10201:6;10198:89;;;-1:-1:-1;10253:19:1;;;10247:26;10198:89;-1:-1:-1;;9002:1:1;8998:11;;;8994:24;8990:29;8980:40;9026:1;9022:11;;;8977:57;10300:81;;9447:944;;9477:663;8271:1;8264:14;;;8308:4;8295:18;;-1:-1:-1;;9513:20:1;;;9631:236;9645:7;9642:1;9639:14;9631:236;;;9734:19;;;9728:26;9713:42;;9826:27;;;;9794:1;9782:14;;;;9661:19;;9631:236;;;9635:3;9895:6;9886:7;9883:19;9880:201;;;9956:19;;;9950:26;-1:-1:-1;;10039:1:1;10035:14;;;10051:3;10031:24;10027:37;10023:42;10008:58;9993:74;;9880:201;-1:-1:-1;;;;;10127:1:1;10111:14;;;10107:22;10094:36;;-1:-1:-1;9045:1352:1:o;10761:184::-;10831:6;10884:2;10872:9;10863:7;10859:23;10855:32;10852:52;;;10900:1;10897;10890:12;10852:52;-1:-1:-1;10923:16:1;;10761:184;-1:-1:-1;10761:184:1:o;10950:125::-;11015:9;;;11036:10;;;11033:36;;;11049:18;;:::i;11080:347::-;11282:2;11264:21;;;11321:2;11301:18;;;11294:30;11360:25;11355:2;11340:18;;11333:53;11418:2;11403:18;;11080:347::o;11432:168::-;11505:9;;;11536;;11553:15;;;11547:22;;11533:37;11523:71;;11574:18;;:::i;12932:180::-;-1:-1:-1;;;;;13037:10:1;;;13049;;;13033:27;;13072:11;;;13069:37;;;13086:18;;:::i;:::-;13069:37;12932:180;;;;:::o;13533:1256::-;13757:3;13795:6;13789:13;13821:4;13834:64;13891:6;13886:3;13881:2;13873:6;13869:15;13834:64;:::i;:::-;13961:13;;13920:16;;;;13983:68;13961:13;13920:16;14018:15;;;13983:68;:::i;:::-;14140:13;;14073:20;;;14113:1;;14178:36;14140:13;14178:36;:::i;:::-;14233:1;14250:18;;;14277:141;;;;14432:1;14427:337;;;;14243:521;;14277:141;-1:-1:-1;;14312:24:1;;14298:39;;14389:16;;14382:24;14368:39;;14357:51;;;-1:-1:-1;14277:141:1;;14427:337;14458:6;14455:1;14448:17;14506:2;14503:1;14493:16;14531:1;14545:169;14559:8;14556:1;14553:15;14545:169;;;14641:14;;14626:13;;;14619:37;14684:16;;;;14576:10;;14545:169;;;14549:3;;14745:8;14738:5;14734:20;14727:27;;14243:521;-1:-1:-1;14780:3:1;;13533:1256;-1:-1:-1;;;;;;;;;;13533:1256:1:o;15201:135::-;15240:3;15261:17;;;15258:43;;15281:18;;:::i;:::-;-1:-1:-1;15328:1:1;15317:13;;15201:135::o;15341:127::-;15402:10;15397:3;15393:20;15390:1;15383:31;15433:4;15430:1;15423:15;15457:4;15454:1;15447:15;15473:120;15513:1;15539;15529:35;;15544:18;;:::i;:::-;-1:-1:-1;15578:9:1;;15473:120::o;15598:112::-;15630:1;15656;15646:35;;15661:18;;:::i;:::-;-1:-1:-1;15695:9:1;;15598:112::o;15715:127::-;15776:10;15771:3;15767:20;15764:1;15757:31;15807:4;15804:1;15797:15;15831:4;15828:1;15821:15;15847:489;-1:-1:-1;;;;;16116:15:1;;;16098:34;;16168:15;;16163:2;16148:18;;16141:43;16215:2;16200:18;;16193:34;;;16263:3;16258:2;16243:18;;16236:31;;;16041:4;;16284:46;;16310:19;;16302:6;16284:46;:::i;:::-;16276:54;15847:489;-1:-1:-1;;;;;;15847:489:1:o;16341:249::-;16410:6;16463:2;16451:9;16442:7;16438:23;16434:32;16431:52;;;16479:1;16476;16469:12;16431:52;16511:9;16505:16;16530:30;16554:5;16530:30;:::i

Swarm Source

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