ETH Price: $3,485.72 (+1.95%)
Gas: 13 Gwei

Token

Season 0: Save The World (STW0)
 

Overview

Max Total Supply

1,171 STW0

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
wagmicrypto.eth
0x3c1c5dd60d1c28ca1adf907b08737ededf6d29fb
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:
ManifestKlimaERC1155

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-17
*/

// Sources flattened with hardhat v2.6.6 https://hardhat.org

// File @openzeppelin/contracts/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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/token/ERC721/[email protected]



pragma solidity >=0.6.2 <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/ERC1155/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/introspection/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File @openzeppelin/contracts/math/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.0 <0.8.0;







/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using SafeMath for uint256;
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) public {
        _setURI(uri_);

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) external view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal
        virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/ManifestKlimaERC1155.sol

pragma solidity ^0.7.5;
// import "hardhat/console.sol";

interface IERC721Contract {
    function balanceOf(address owner) external view returns (uint256 balance);
}

interface IERC20Contract {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
}

contract ManifestKlimaERC1155 is ERC1155, Ownable {

    event NftMinted(address sender, uint256 id);

    string public name = "Season 0: Save The World";
    string public symbol = "STW0";

    uint256 public constant TOKEN_1 = 1;
    uint256 public constant TOKEN_2 = 2;
    uint256 public constant TOKEN_3 = 3;
    uint256 public constant MAX_PER_WALLET = 4;
    uint256 public constant RESERVED_NUM = 151;
    uint256 public constant PUBLIC_NUM = 293;

    uint256 public price = 2 * 10**9;
    
    uint256 public totalRemaining1 = PUBLIC_NUM;
    uint256 public totalRemaining2 = PUBLIC_NUM;
    uint256 public totalRemaining3 = PUBLIC_NUM;

    address public treasury;
    address public sMNFST;
    address public MNFST;

    bool public treasuryHasMinted;
    bool public saleIsActive;

    mapping( address => uint256 ) private totalClaimed;

    constructor (address _treasury, address _MNFST, address _sMNFST, string memory _uri) ERC1155(_uri) {
        treasury = _treasury;
        sMNFST = _sMNFST;
        MNFST = _MNFST;
    }

    function setTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
    }

    function setMNFST(address _MNFST) external onlyOwner {
        MNFST = _MNFST;
    }
    
    function setSMNFST(address _sMNFST) external onlyOwner {
        sMNFST = _sMNFST;
    }

    function toggleSaleIsActive() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintWithMNFST(uint256 tokenId) external {
        mint(tokenId, MNFST);
    }

    function mintWithSMNFST(uint256 tokenId) external {
        mint(tokenId, sMNFST);
    }

    function mint(uint256 tokenId, address token) internal {
        require(saleIsActive, "SALE_NOT_STARTED");
        require(IERC20Contract( token ).balanceOf(msg.sender) >= price, "INSUFFICIENT_BAL");
        require(totalClaimed[msg.sender] < MAX_PER_WALLET, "EXCEEDS_MAX_PER_WALLET");
        require(token == MNFST || token == sMNFST, "WRONG_PAYMENT_TOKEN");

        if (tokenId == TOKEN_1) {
            require(totalRemaining1 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining1--;
        }
        else if (tokenId == TOKEN_2) {
            require(totalRemaining2 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining2--;
        }
        else if (tokenId == TOKEN_3) {
            require(totalRemaining3 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining3--;
        }
        else {
            revert("WRONG_HOODIE_ID");
        }

        totalClaimed[msg.sender] += 1;

        // transfer payment from sender to this contract
        IERC20Contract( token ).transferFrom(msg.sender, address(this), price);
        // mint the hoodie
        _mint(msg.sender, tokenId, 1, '');
        
        emit NftMinted(msg.sender, tokenId);
    }
    
    function setURI(string memory _newUri) public onlyOwner {
        _setURI(_newUri);
    }

    function setPrice(uint256 inPrice) public onlyOwner returns (uint256) {
        price = inPrice;
        return price;
    }

    function totalClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "NULL_ADDR");

        return totalClaimed[owner];
    }

    function totalSupply(uint256 _id) public view returns (uint256) {
        uint256 treasuryNum = 0;

        if (treasuryHasMinted)
        {
            treasuryNum = RESERVED_NUM;
        }

        if (_id == TOKEN_1) {
            return (PUBLIC_NUM - totalRemaining1) + treasuryNum;
        }

        if (_id == TOKEN_2) {
            return (PUBLIC_NUM - totalRemaining2) + treasuryNum;
        }

        if (_id == TOKEN_3) {
            return (PUBLIC_NUM - totalRemaining3) + treasuryNum;
        }

        return 0;
    }

    function totalHoodiesMinted() public view returns (uint256) {
        uint256 treasuryNum = 0;

        if (treasuryHasMinted)
        {
            treasuryNum = RESERVED_NUM * 3;
        }

        return ((PUBLIC_NUM * 3) - totalRemaining1 - totalRemaining2 - totalRemaining3) + treasuryNum;
    }

    function mintToTreasury() public onlyOwner {
        require(treasuryHasMinted == false, "TREASURY_HAS_MINTED");

        uint256[] memory tokens = new uint256[](3);
        tokens[0] = TOKEN_1;
        tokens[1] = TOKEN_2;
        tokens[2] = TOKEN_3;

        uint256[] memory totals = new uint256[](3);
        totals[0] = RESERVED_NUM;
        totals[1] = RESERVED_NUM;
        totals[2] = RESERVED_NUM;

        _mintBatch(treasury, tokens, totals, '');
        treasuryHasMinted = true;
    }

    function withdrawAllEth() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "NO_ETH");
        (bool success, ) = treasury.call{ value: balance }("");
        require(success, "FAILED");
    }

    function withdrawAllSMNFST() public onlyOwner {
        uint256 sMNFSTBalance = IERC20Contract( sMNFST ).balanceOf(address(this));
        require(sMNFSTBalance > 0, "NO_SMNFST");
        IERC20Contract( sMNFST ).transfer(treasury, sMNFSTBalance);
    }

    function withdrawAllMNFST() public onlyOwner {
        uint256 MNFSTBalance = IERC20Contract( MNFST ).balanceOf(address(this));
        require(MNFSTBalance > 0, "NO_MNFST");
        IERC20Contract( MNFST ).transfer(treasury, MNFSTBalance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_MNFST","type":"address"},{"internalType":"address","name":"_sMNFST","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"NftMinted","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MNFST","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_NUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_NUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintWithMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintWithSMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sMNFST","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_MNFST","type":"address"}],"name":"setMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"inPrice","type":"uint256"}],"name":"setPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sMNFST","type":"address"}],"name":"setSMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","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":[],"name":"toggleSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"totalClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalHoodiesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAllEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllSMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601860808190527f536561736f6e20303a20536176652054686520576f726c64000000000000000060a09081526200004091600591906200030a565b50604080518082019091526004808252630535457360e41b60209092019182526200006e916006916200030a565b506377359400600755610125600855610125600955610125600a553480156200009657600080fd5b506040516200343e3803806200343e83398181016040526080811015620000bc57600080fd5b815160208301516040808501516060860180519251949693959194939182019284640100000000821115620000f057600080fd5b9083019060208201858111156200010657600080fd5b82516401000000008111828201881017156200012157600080fd5b82525081516020918201929091019080838360005b838110156200015057818101518382015260200162000136565b50505050905090810190601f1680156200017e5780820380516001836020036101000a031916815260200191505b50604052508291506200019a90506301ffc9a760e01b62000268565b620001a581620002ed565b620001b7636cdb3d1360e11b62000268565b620001c96303a24d0760e21b62000268565b506000620001d662000306565b600480546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050600b80546001600160a01b039485166001600160a01b031991821617909155600c805492851692821692909217909155600d8054929093169116179055620003b6565b6001600160e01b03198082161415620002c8576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8051620003029060039060208401906200030a565b5050565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200034257600085556200038d565b82601f106200035d57805160ff19168380011785556200038d565b828001600101855582156200038d579182015b828111156200038d57825182559160200191906001019062000370565b506200039b9291506200039f565b5090565b5b808211156200039b5760008155600101620003a0565b61307880620003c66000396000f3fe608060405234801561001057600080fd5b50600436106102685760003560e01c80636fa435d711610151578063b5764e47116100c3578063e985e9c511610087578063e985e9c51461093a578063eb8d244414610968578063f0f4426014610970578063f242432a14610996578063f2fde38b14610a5f578063fddadad414610a8557610268565b8063b5764e47146108e8578063bd85b039146108f0578063c5bd75da1461090d578063d35ebfa414610915578063de6bc5891461093257610268565b806391b7f5ed1161011557806391b7f5ed1461085f57806395d89b411461087c5780639ccc5e9a14610884578063a035b1fe146108aa578063a11d1226146108b2578063a22cb465146108ba57610268565b80636fa435d714610837578063715018a61461083f57806375969b121461084757806382c0fa301461084f5780638da5cb5b1461085757610268565b8063222a6e25116101ea57806345b99a98116101ae57806345b99a98146106625780634a3268e41461066a5780634e1273f414610672578063519af30e146107e557806361d027b3146107ed5780636706aa7e1461081157610268565b8063222a6e25146104815780632ae3da1f146104895780632eb2c2d6146104915780632f6495db14610652578063453f6a321461065a57610268565b80630d082b37116102315780630d082b37146104265780630e89341c1461042e5780630f2cdd6c1461044b578063128fcb62146104535780631e9407211461045b57610268565b8062fdd58e1461026d57806301ffc9a7146102ab57806302fe5305146102e657806304f40a1b1461038c57806306fdde03146103a9575b600080fd5b6102996004803603604081101561028357600080fd5b506001600160a01b038135169060200135610a8d565b60408051918252519081900360200190f35b6102d2600480360360208110156102c157600080fd5b50356001600160e01b031916610afc565b604080519115158252519081900360200190f35b61038a600480360360208110156102fc57600080fd5b810190602081018135600160201b81111561031657600080fd5b82018360208201111561032857600080fd5b803590602001918460018302840111600160201b8311171561034957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b1f945050505050565b005b61038a600480360360208110156103a257600080fd5b5035610b8d565b6103b1610ba4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103eb5781810151838201526020016103d3565b50505050905090810190601f1680156104185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610299610c32565b6103b16004803603602081101561044457600080fd5b5035610c38565b610299610cd0565b61038a610cd5565b6102996004803603602081101561047157600080fd5b50356001600160a01b0316610e76565b610299610edb565b610299610ee1565b61038a600480360360a08110156104a757600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104da57600080fd5b8201836020820111156104ec57600080fd5b803590602001918460208302840111600160201b8311171561050d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055c57600080fd5b82018360208201111561056e57600080fd5b803590602001918460208302840111600160201b8311171561058f57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105de57600080fd5b8201836020820111156105f057600080fd5b803590602001918460018302840111600160201b8311171561061157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ee7945050505050565b61038a6111e5565b610299611356565b6102d261135b565b61029961136b565b6107956004803603604081101561068857600080fd5b810190602081018135600160201b8111156106a257600080fd5b8201836020820111156106b457600080fd5b803590602001918460208302840111600160201b831117156106d557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072457600080fd5b82018360208201111561073657600080fd5b803590602001918460208302840111600160201b8311171561075757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611370945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107d15781810151838201526020016107b9565b505050509050019250505060405180910390f35b61038a61145c565b6107f561158f565b604080516001600160a01b039092168252519081900360200190f35b61038a6004803603602081101561082757600080fd5b50356001600160a01b031661159e565b61038a611622565b61038a611808565b6102996118b4565b6102996118ba565b6107f56118bf565b6102996004803603602081101561087557600080fd5b50356118cf565b6103b161193c565b61038a6004803603602081101561089a57600080fd5b50356001600160a01b0316611997565b610299611a1b565b61038a611a21565b61038a600480360360408110156108d057600080fd5b506001600160a01b0381351690602001351515611aa4565b6107f5611b93565b6102996004803603602081101561090657600080fd5b5035611ba2565b610299611c0e565b61038a6004803603602081101561092b57600080fd5b5035611c3f565b610299611c56565b6102d26004803603604081101561095057600080fd5b506001600160a01b0381358116916020013516611c5b565b6102d2611c89565b61038a6004803603602081101561098657600080fd5b50356001600160a01b0316611c99565b61038a600480360360a08110156109ac57600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b8111156109eb57600080fd5b8201836020820111156109fd57600080fd5b803590602001918460018302840111600160201b83111715610a1e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611d1d945050505050565b61038a60048036036020811015610a7557600080fd5b50356001600160a01b0316611ee8565b6107f5611feb565b60006001600160a01b038316610ad45760405162461bcd60e51b815260040180806020018281038252602b815260200180612e8d602b913960400191505060405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610b27611ffa565b6001600160a01b0316610b386118bf565b6001600160a01b031614610b81576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b610b8a81611ffe565b50565b600c54610b8a9082906001600160a01b0316612011565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b505050505081565b60085481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cc45780601f10610c9957610100808354040283529160200191610cc4565b820191906000526020600020905b815481529060010190602001808311610ca757829003601f168201915b50505050509050919050565b600481565b610cdd611ffa565b6001600160a01b0316610cee6118bf565b6001600160a01b031614610d37576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610d8257600080fd5b505afa158015610d96573d6000803e3d6000fd5b505050506040513d6020811015610dac57600080fd5b5051905080610dee576040805162461bcd60e51b81526020600482015260096024820152681393d7d4d3539194d560ba1b604482015290519081900360640190fd5b600c54600b546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b158015610e4757600080fd5b505af1158015610e5b573d6000803e3d6000fd5b505050506040513d6020811015610e7157600080fd5b505050565b60006001600160a01b038216610ebf576040805162461bcd60e51b8152602060048201526009602482015268272aa6262fa0a2222960b91b604482015290519081900360640190fd5b506001600160a01b03166000908152600e602052604090205490565b60095481565b61012581565b8151835114610f275760405162461bcd60e51b8152600401808060200182810382526028815260200180612ffa6028913960400191505060405180910390fd5b6001600160a01b038416610f6c5760405162461bcd60e51b8152600401808060200182810382526025815260200180612f076025913960400191505060405180910390fd5b610f74611ffa565b6001600160a01b0316856001600160a01b03161480610f9f5750610f9f85610f9a611ffa565b611c5b565b610fda5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f2c6032913960400191505060405180910390fd5b6000610fe4611ffa565b9050610ff48187878787876111dd565b60005b84518110156110f557600085828151811061100e57fe5b60200260200101519050600085838151811061102657fe5b60200260200101519050611093816040518060600160405280602a8152602001612f5e602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205461245c9092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546110ca90826124f3565b60009283526001602081815260408086206001600160a01b038d168752909152909320555001610ff7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561117b578181015183820152602001611163565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156111ba5781810151838201526020016111a2565b5050505090500194505050505060405180910390a46111dd818787878787612554565b505050505050565b6111ed611ffa565b6001600160a01b03166111fe6118bf565b6001600160a01b031614611247576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561129257600080fd5b505afa1580156112a6573d6000803e3d6000fd5b505050506040513d60208110156112bc57600080fd5b50519050806112fd576040805162461bcd60e51b81526020600482015260086024820152671393d7d3539194d560c21b604482015290519081900360640190fd5b600d54600b546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b158015610e4757600080fd5b600381565b600d54600160a01b900460ff1681565b600181565b606081518351146113b25760405162461bcd60e51b8152600401808060200182810382526029815260200180612fd16029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156113cc57600080fd5b506040519080825280602002602001820160405280156113f6578160200160208202803683370190505b50905060005b84518110156114545761143585828151811061141457fe5b602002602001015185838151811061142857fe5b6020026020010151610a8d565b82828151811061144157fe5b60209081029190910101526001016113fc565b509392505050565b611464611ffa565b6001600160a01b03166114756118bf565b6001600160a01b0316146114be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b47806114fa576040805162461bcd60e51b815260206004820152600660248201526509c9ebe8aa8960d31b604482015290519081900360640190fd5b600b546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b505090508061158b576040805162461bcd60e51b815260206004820152600660248201526511905253115160d21b604482015290519081900360640190fd5b5050565b600b546001600160a01b031681565b6115a6611ffa565b6001600160a01b03166115b76118bf565b6001600160a01b031614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b61162a611ffa565b6001600160a01b031661163b6118bf565b6001600160a01b031614611684576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d54600160a01b900460ff16156116d9576040805162461bcd60e51b81526020600482015260136024820152721514915054d5549657d21054d7d35253951151606a1b604482015290519081900360640190fd5b6040805160038082526080820190925260609160208201838036833701905050905060018160008151811061170a57fe5b60200260200101818152505060028160018151811061172557fe5b60200260200101818152505060038160028151811061174057fe5b60209081029190910101526040805160038082526080820190925260609181602001602082028036833701905050905060978160008151811061177f57fe5b60200260200101818152505060978160018151811061179a57fe5b6020026020010181815250506097816002815181106117b557fe5b6020026020010181815250506117f1600b60009054906101000a90046001600160a01b03168383604051806020016040528060008152506127d3565b5050600d805460ff60a01b1916600160a01b179055565b611810611ffa565b6001600160a01b03166118216118bf565b6001600160a01b03161461186a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b600a5481565b600281565b6004546001600160a01b03165b90565b60006118d9611ffa565b6001600160a01b03166118ea6118bf565b6001600160a01b031614611933576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b50600781905590565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b61199f611ffa565b6001600160a01b03166119b06118bf565b6001600160a01b0316146119f9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b611a29611ffa565b6001600160a01b0316611a3a6118bf565b6001600160a01b031614611a83576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d805460ff60a81b198116600160a81b9182900460ff1615909102179055565b816001600160a01b0316611ab6611ffa565b6001600160a01b03161415611afc5760405162461bcd60e51b8152600401808060200182810382526029815260200180612fa86029913960400191505060405180910390fd5b8060026000611b09611ffa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b4d611ffa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600d546001600160a01b031681565b600d546000908190600160a01b900460ff1615611bbd575060975b6001831415611bd55760085461012503019050610b1a565b6002831415611bed5760095461012503019050610b1a565b6003831415611c0557600a5461012503019050610b1a565b50600092915050565b600d546000908190600160a01b900460ff1615611c2a57506101c55b600a5460095460085461036f03030301905090565b600d54610b8a9082906001600160a01b0316612011565b609781565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600d54600160a81b900460ff1681565b611ca1611ffa565b6001600160a01b0316611cb26118bf565b6001600160a01b031614611cfb576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611d625760405162461bcd60e51b8152600401808060200182810382526025815260200180612f076025913960400191505060405180910390fd5b611d6a611ffa565b6001600160a01b0316856001600160a01b03161480611d905750611d9085610f9a611ffa565b611dcb5760405162461bcd60e51b8152600401808060200182810382526029815260200180612ede6029913960400191505060405180910390fd5b6000611dd5611ffa565b9050611df5818787611de688612a28565b611def88612a28565b876111dd565b611e3c836040518060600160405280602a8152602001612f5e602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919061245c565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054611e7390846124f3565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46111dd818787878787612a6c565b611ef0611ffa565b6001600160a01b0316611f016118bf565b6001600160a01b031614611f4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b6001600160a01b038116611f8f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612eb86026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b031681565b3390565b805161158b906003906020840190612ce4565b600d54600160a81b900460ff16612062576040805162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b604482015290519081900360640190fd5b600754604080516370a0823160e01b815233600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156120ab57600080fd5b505afa1580156120bf573d6000803e3d6000fd5b505050506040513d60208110156120d557600080fd5b5051101561211d576040805162461bcd60e51b815260206004820152601060248201526f125394d551919250d251539517d0905360821b604482015290519081900360640190fd5b336000908152600e602052604090205460041161217a576040805162461bcd60e51b8152602060048201526016602482015275115610d1515114d7d3505617d4115497d5d05313115560521b604482015290519081900360640190fd5b600d546001600160a01b03828116911614806121a35750600c546001600160a01b038281169116145b6121ea576040805162461bcd60e51b81526020600482015260136024820152722ba927a723afa820aca6a2a72a2faa27a5a2a760691b604482015290519081900360640190fd5b600182141561225457600060085411612245576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60088054600019019055612367565b60028214156122be576000600954116122af576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60098054600019019055612367565b6003821415612328576000600a5411612319576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600a8054600019019055612367565b6040805162461bcd60e51b815260206004820152600f60248201526e15d493d391d7d213d3d1125157d251608a1b604482015290519081900360640190fd5b336000818152600e602090815260408083208054600101905560075481516323b872dd60e01b815260048101959095523060248601526044850152516001600160a01b038516936323b872dd9360648083019493928390030190829087803b1580156123d257600080fd5b505af11580156123e6573d6000803e3d6000fd5b505050506040513d60208110156123fc57600080fd5b505060408051602081019091526000815261241d9033908490600190612bdd565b604080513381526020810184905281517ff2b290a76feb54be358b555507421d765609171aefa0646f109a653228ff81b8929181900390910190a15050565b600081848411156124eb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124b0578181015183820152602001612498565b50505050905090810190601f1680156124dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561254d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612566846001600160a01b0316612cde565b156111dd57836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156125f45781810151838201526020016125dc565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561263357818101518382015260200161261b565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561266f578181015183820152602001612657565b50505050905090810190601f16801561269c5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156126c157600080fd5b505af19250505080156126e657506040513d60208110156126e157600080fd5b505160015b61277b576126f2612d8b565b806126fd5750612744565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156124b0578181015183820152602001612498565b60405162461bcd60e51b8152600401808060200182810382526034815260200180612e316034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b146127ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180612e656028913960400191505060405180910390fd5b50505050505050565b6001600160a01b0384166128185760405162461bcd60e51b81526004018080602001828103825260218152602001806130226021913960400191505060405180910390fd5b81518351146128585760405162461bcd60e51b8152600401808060200182810382526028815260200180612ffa6028913960400191505060405180910390fd5b6000612862611ffa565b9050612873816000878787876111dd565b60005b8451811015612937576128ee6001600087848151811061289257fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020548583815181106128d857fe5b60200260200101516124f390919063ffffffff16565b600160008784815181106128fe57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101612876565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156129be5781810151838201526020016129a6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156129fd5781810151838201526020016129e5565b5050505090500194505050505060405180910390a4612a2181600087878787612554565b5050505050565b604080516001808252818301909252606091829190602080830190803683370190505090508281600081518110612a5b57fe5b602090810291909101015292915050565b612a7e846001600160a01b0316612cde565b156111dd57836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b0d578181015183820152602001612af5565b50505050905090810190601f168015612b3a5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015612b5d57600080fd5b505af1925050508015612b8257506040513d6020811015612b7d57600080fd5b505160015b612b8e576126f2612d8b565b6001600160e01b0319811663f23a6e6160e01b146127ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180612e656028913960400191505060405180910390fd5b6001600160a01b038416612c225760405162461bcd60e51b81526004018080602001828103825260218152602001806130226021913960400191505060405180910390fd5b6000612c2c611ffa565b9050612c3e81600087611de688612a28565b60008481526001602090815260408083206001600160a01b0389168452909152902054612c6b90846124f3565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4612a2181600087878787612a6c565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612d1a5760008555612d60565b82601f10612d3357805160ff1916838001178555612d60565b82800160010185558215612d60579182015b82811115612d60578251825591602001919060010190612d45565b50612d6c929150612d70565b5090565b5b80821115612d6c5760008155600101612d71565b60e01c90565b600060443d1015612d9b576118cc565b600481823e6308c379a0612daf8251612d85565b14612db9576118cc565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715612de957505050506118cc565b82840192508251915080821115612e0357505050506118cc565b503d83016020828401011115612e1b575050506118cc565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220a05e4e831ceac4c2216a6a2fb9515647f24f890570cec3319bbcc57758a7053e64736f6c63430007050033000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a200000000000000000000000021585bbcd5bdc3f5737620cf0db2e51978cf60ac000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55475238664c466d46726d7375314656444c37546b354d5a487164444c51417a3975506b665932454a4a36642f7b69647d2e6a736f6e000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102685760003560e01c80636fa435d711610151578063b5764e47116100c3578063e985e9c511610087578063e985e9c51461093a578063eb8d244414610968578063f0f4426014610970578063f242432a14610996578063f2fde38b14610a5f578063fddadad414610a8557610268565b8063b5764e47146108e8578063bd85b039146108f0578063c5bd75da1461090d578063d35ebfa414610915578063de6bc5891461093257610268565b806391b7f5ed1161011557806391b7f5ed1461085f57806395d89b411461087c5780639ccc5e9a14610884578063a035b1fe146108aa578063a11d1226146108b2578063a22cb465146108ba57610268565b80636fa435d714610837578063715018a61461083f57806375969b121461084757806382c0fa301461084f5780638da5cb5b1461085757610268565b8063222a6e25116101ea57806345b99a98116101ae57806345b99a98146106625780634a3268e41461066a5780634e1273f414610672578063519af30e146107e557806361d027b3146107ed5780636706aa7e1461081157610268565b8063222a6e25146104815780632ae3da1f146104895780632eb2c2d6146104915780632f6495db14610652578063453f6a321461065a57610268565b80630d082b37116102315780630d082b37146104265780630e89341c1461042e5780630f2cdd6c1461044b578063128fcb62146104535780631e9407211461045b57610268565b8062fdd58e1461026d57806301ffc9a7146102ab57806302fe5305146102e657806304f40a1b1461038c57806306fdde03146103a9575b600080fd5b6102996004803603604081101561028357600080fd5b506001600160a01b038135169060200135610a8d565b60408051918252519081900360200190f35b6102d2600480360360208110156102c157600080fd5b50356001600160e01b031916610afc565b604080519115158252519081900360200190f35b61038a600480360360208110156102fc57600080fd5b810190602081018135600160201b81111561031657600080fd5b82018360208201111561032857600080fd5b803590602001918460018302840111600160201b8311171561034957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b1f945050505050565b005b61038a600480360360208110156103a257600080fd5b5035610b8d565b6103b1610ba4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103eb5781810151838201526020016103d3565b50505050905090810190601f1680156104185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610299610c32565b6103b16004803603602081101561044457600080fd5b5035610c38565b610299610cd0565b61038a610cd5565b6102996004803603602081101561047157600080fd5b50356001600160a01b0316610e76565b610299610edb565b610299610ee1565b61038a600480360360a08110156104a757600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104da57600080fd5b8201836020820111156104ec57600080fd5b803590602001918460208302840111600160201b8311171561050d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055c57600080fd5b82018360208201111561056e57600080fd5b803590602001918460208302840111600160201b8311171561058f57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105de57600080fd5b8201836020820111156105f057600080fd5b803590602001918460018302840111600160201b8311171561061157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ee7945050505050565b61038a6111e5565b610299611356565b6102d261135b565b61029961136b565b6107956004803603604081101561068857600080fd5b810190602081018135600160201b8111156106a257600080fd5b8201836020820111156106b457600080fd5b803590602001918460208302840111600160201b831117156106d557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072457600080fd5b82018360208201111561073657600080fd5b803590602001918460208302840111600160201b8311171561075757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611370945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107d15781810151838201526020016107b9565b505050509050019250505060405180910390f35b61038a61145c565b6107f561158f565b604080516001600160a01b039092168252519081900360200190f35b61038a6004803603602081101561082757600080fd5b50356001600160a01b031661159e565b61038a611622565b61038a611808565b6102996118b4565b6102996118ba565b6107f56118bf565b6102996004803603602081101561087557600080fd5b50356118cf565b6103b161193c565b61038a6004803603602081101561089a57600080fd5b50356001600160a01b0316611997565b610299611a1b565b61038a611a21565b61038a600480360360408110156108d057600080fd5b506001600160a01b0381351690602001351515611aa4565b6107f5611b93565b6102996004803603602081101561090657600080fd5b5035611ba2565b610299611c0e565b61038a6004803603602081101561092b57600080fd5b5035611c3f565b610299611c56565b6102d26004803603604081101561095057600080fd5b506001600160a01b0381358116916020013516611c5b565b6102d2611c89565b61038a6004803603602081101561098657600080fd5b50356001600160a01b0316611c99565b61038a600480360360a08110156109ac57600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b8111156109eb57600080fd5b8201836020820111156109fd57600080fd5b803590602001918460018302840111600160201b83111715610a1e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611d1d945050505050565b61038a60048036036020811015610a7557600080fd5b50356001600160a01b0316611ee8565b6107f5611feb565b60006001600160a01b038316610ad45760405162461bcd60e51b815260040180806020018281038252602b815260200180612e8d602b913960400191505060405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610b27611ffa565b6001600160a01b0316610b386118bf565b6001600160a01b031614610b81576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b610b8a81611ffe565b50565b600c54610b8a9082906001600160a01b0316612011565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b505050505081565b60085481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cc45780601f10610c9957610100808354040283529160200191610cc4565b820191906000526020600020905b815481529060010190602001808311610ca757829003601f168201915b50505050509050919050565b600481565b610cdd611ffa565b6001600160a01b0316610cee6118bf565b6001600160a01b031614610d37576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610d8257600080fd5b505afa158015610d96573d6000803e3d6000fd5b505050506040513d6020811015610dac57600080fd5b5051905080610dee576040805162461bcd60e51b81526020600482015260096024820152681393d7d4d3539194d560ba1b604482015290519081900360640190fd5b600c54600b546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b158015610e4757600080fd5b505af1158015610e5b573d6000803e3d6000fd5b505050506040513d6020811015610e7157600080fd5b505050565b60006001600160a01b038216610ebf576040805162461bcd60e51b8152602060048201526009602482015268272aa6262fa0a2222960b91b604482015290519081900360640190fd5b506001600160a01b03166000908152600e602052604090205490565b60095481565b61012581565b8151835114610f275760405162461bcd60e51b8152600401808060200182810382526028815260200180612ffa6028913960400191505060405180910390fd5b6001600160a01b038416610f6c5760405162461bcd60e51b8152600401808060200182810382526025815260200180612f076025913960400191505060405180910390fd5b610f74611ffa565b6001600160a01b0316856001600160a01b03161480610f9f5750610f9f85610f9a611ffa565b611c5b565b610fda5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f2c6032913960400191505060405180910390fd5b6000610fe4611ffa565b9050610ff48187878787876111dd565b60005b84518110156110f557600085828151811061100e57fe5b60200260200101519050600085838151811061102657fe5b60200260200101519050611093816040518060600160405280602a8152602001612f5e602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205461245c9092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546110ca90826124f3565b60009283526001602081815260408086206001600160a01b038d168752909152909320555001610ff7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561117b578181015183820152602001611163565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156111ba5781810151838201526020016111a2565b5050505090500194505050505060405180910390a46111dd818787878787612554565b505050505050565b6111ed611ffa565b6001600160a01b03166111fe6118bf565b6001600160a01b031614611247576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561129257600080fd5b505afa1580156112a6573d6000803e3d6000fd5b505050506040513d60208110156112bc57600080fd5b50519050806112fd576040805162461bcd60e51b81526020600482015260086024820152671393d7d3539194d560c21b604482015290519081900360640190fd5b600d54600b546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b158015610e4757600080fd5b600381565b600d54600160a01b900460ff1681565b600181565b606081518351146113b25760405162461bcd60e51b8152600401808060200182810382526029815260200180612fd16029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156113cc57600080fd5b506040519080825280602002602001820160405280156113f6578160200160208202803683370190505b50905060005b84518110156114545761143585828151811061141457fe5b602002602001015185838151811061142857fe5b6020026020010151610a8d565b82828151811061144157fe5b60209081029190910101526001016113fc565b509392505050565b611464611ffa565b6001600160a01b03166114756118bf565b6001600160a01b0316146114be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b47806114fa576040805162461bcd60e51b815260206004820152600660248201526509c9ebe8aa8960d31b604482015290519081900360640190fd5b600b546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b505090508061158b576040805162461bcd60e51b815260206004820152600660248201526511905253115160d21b604482015290519081900360640190fd5b5050565b600b546001600160a01b031681565b6115a6611ffa565b6001600160a01b03166115b76118bf565b6001600160a01b031614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b61162a611ffa565b6001600160a01b031661163b6118bf565b6001600160a01b031614611684576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d54600160a01b900460ff16156116d9576040805162461bcd60e51b81526020600482015260136024820152721514915054d5549657d21054d7d35253951151606a1b604482015290519081900360640190fd5b6040805160038082526080820190925260609160208201838036833701905050905060018160008151811061170a57fe5b60200260200101818152505060028160018151811061172557fe5b60200260200101818152505060038160028151811061174057fe5b60209081029190910101526040805160038082526080820190925260609181602001602082028036833701905050905060978160008151811061177f57fe5b60200260200101818152505060978160018151811061179a57fe5b6020026020010181815250506097816002815181106117b557fe5b6020026020010181815250506117f1600b60009054906101000a90046001600160a01b03168383604051806020016040528060008152506127d3565b5050600d805460ff60a01b1916600160a01b179055565b611810611ffa565b6001600160a01b03166118216118bf565b6001600160a01b03161461186a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b600a5481565b600281565b6004546001600160a01b03165b90565b60006118d9611ffa565b6001600160a01b03166118ea6118bf565b6001600160a01b031614611933576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b50600781905590565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b61199f611ffa565b6001600160a01b03166119b06118bf565b6001600160a01b0316146119f9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b611a29611ffa565b6001600160a01b0316611a3a6118bf565b6001600160a01b031614611a83576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600d805460ff60a81b198116600160a81b9182900460ff1615909102179055565b816001600160a01b0316611ab6611ffa565b6001600160a01b03161415611afc5760405162461bcd60e51b8152600401808060200182810382526029815260200180612fa86029913960400191505060405180910390fd5b8060026000611b09611ffa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b4d611ffa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600d546001600160a01b031681565b600d546000908190600160a01b900460ff1615611bbd575060975b6001831415611bd55760085461012503019050610b1a565b6002831415611bed5760095461012503019050610b1a565b6003831415611c0557600a5461012503019050610b1a565b50600092915050565b600d546000908190600160a01b900460ff1615611c2a57506101c55b600a5460095460085461036f03030301905090565b600d54610b8a9082906001600160a01b0316612011565b609781565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600d54600160a81b900460ff1681565b611ca1611ffa565b6001600160a01b0316611cb26118bf565b6001600160a01b031614611cfb576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611d625760405162461bcd60e51b8152600401808060200182810382526025815260200180612f076025913960400191505060405180910390fd5b611d6a611ffa565b6001600160a01b0316856001600160a01b03161480611d905750611d9085610f9a611ffa565b611dcb5760405162461bcd60e51b8152600401808060200182810382526029815260200180612ede6029913960400191505060405180910390fd5b6000611dd5611ffa565b9050611df5818787611de688612a28565b611def88612a28565b876111dd565b611e3c836040518060600160405280602a8152602001612f5e602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919061245c565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054611e7390846124f3565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46111dd818787878787612a6c565b611ef0611ffa565b6001600160a01b0316611f016118bf565b6001600160a01b031614611f4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f88833981519152604482015290519081900360640190fd5b6001600160a01b038116611f8f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612eb86026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b031681565b3390565b805161158b906003906020840190612ce4565b600d54600160a81b900460ff16612062576040805162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b604482015290519081900360640190fd5b600754604080516370a0823160e01b815233600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156120ab57600080fd5b505afa1580156120bf573d6000803e3d6000fd5b505050506040513d60208110156120d557600080fd5b5051101561211d576040805162461bcd60e51b815260206004820152601060248201526f125394d551919250d251539517d0905360821b604482015290519081900360640190fd5b336000908152600e602052604090205460041161217a576040805162461bcd60e51b8152602060048201526016602482015275115610d1515114d7d3505617d4115497d5d05313115560521b604482015290519081900360640190fd5b600d546001600160a01b03828116911614806121a35750600c546001600160a01b038281169116145b6121ea576040805162461bcd60e51b81526020600482015260136024820152722ba927a723afa820aca6a2a72a2faa27a5a2a760691b604482015290519081900360640190fd5b600182141561225457600060085411612245576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60088054600019019055612367565b60028214156122be576000600954116122af576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60098054600019019055612367565b6003821415612328576000600a5411612319576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600a8054600019019055612367565b6040805162461bcd60e51b815260206004820152600f60248201526e15d493d391d7d213d3d1125157d251608a1b604482015290519081900360640190fd5b336000818152600e602090815260408083208054600101905560075481516323b872dd60e01b815260048101959095523060248601526044850152516001600160a01b038516936323b872dd9360648083019493928390030190829087803b1580156123d257600080fd5b505af11580156123e6573d6000803e3d6000fd5b505050506040513d60208110156123fc57600080fd5b505060408051602081019091526000815261241d9033908490600190612bdd565b604080513381526020810184905281517ff2b290a76feb54be358b555507421d765609171aefa0646f109a653228ff81b8929181900390910190a15050565b600081848411156124eb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124b0578181015183820152602001612498565b50505050905090810190601f1680156124dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561254d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612566846001600160a01b0316612cde565b156111dd57836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156125f45781810151838201526020016125dc565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561263357818101518382015260200161261b565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561266f578181015183820152602001612657565b50505050905090810190601f16801561269c5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156126c157600080fd5b505af19250505080156126e657506040513d60208110156126e157600080fd5b505160015b61277b576126f2612d8b565b806126fd5750612744565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156124b0578181015183820152602001612498565b60405162461bcd60e51b8152600401808060200182810382526034815260200180612e316034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b146127ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180612e656028913960400191505060405180910390fd5b50505050505050565b6001600160a01b0384166128185760405162461bcd60e51b81526004018080602001828103825260218152602001806130226021913960400191505060405180910390fd5b81518351146128585760405162461bcd60e51b8152600401808060200182810382526028815260200180612ffa6028913960400191505060405180910390fd5b6000612862611ffa565b9050612873816000878787876111dd565b60005b8451811015612937576128ee6001600087848151811061289257fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020548583815181106128d857fe5b60200260200101516124f390919063ffffffff16565b600160008784815181106128fe57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101612876565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156129be5781810151838201526020016129a6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156129fd5781810151838201526020016129e5565b5050505090500194505050505060405180910390a4612a2181600087878787612554565b5050505050565b604080516001808252818301909252606091829190602080830190803683370190505090508281600081518110612a5b57fe5b602090810291909101015292915050565b612a7e846001600160a01b0316612cde565b156111dd57836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b0d578181015183820152602001612af5565b50505050905090810190601f168015612b3a5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015612b5d57600080fd5b505af1925050508015612b8257506040513d6020811015612b7d57600080fd5b505160015b612b8e576126f2612d8b565b6001600160e01b0319811663f23a6e6160e01b146127ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180612e656028913960400191505060405180910390fd5b6001600160a01b038416612c225760405162461bcd60e51b81526004018080602001828103825260218152602001806130226021913960400191505060405180910390fd5b6000612c2c611ffa565b9050612c3e81600087611de688612a28565b60008481526001602090815260408083206001600160a01b0389168452909152902054612c6b90846124f3565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4612a2181600087878787612a6c565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612d1a5760008555612d60565b82601f10612d3357805160ff1916838001178555612d60565b82800160010185558215612d60579182015b82811115612d60578251825591602001919060010190612d45565b50612d6c929150612d70565b5090565b5b80821115612d6c5760008155600101612d71565b60e01c90565b600060443d1015612d9b576118cc565b600481823e6308c379a0612daf8251612d85565b14612db9576118cc565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715612de957505050506118cc565b82840192508251915080821115612e0357505050506118cc565b503d83016020828401011115612e1b575050506118cc565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220a05e4e831ceac4c2216a6a2fb9515647f24f890570cec3319bbcc57758a7053e64736f6c63430007050033

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

000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a200000000000000000000000021585bbcd5bdc3f5737620cf0db2e51978cf60ac000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55475238664c466d46726d7375314656444c37546b354d5a487164444c51417a3975506b665932454a4a36642f7b69647d2e6a736f6e000000000000

-----Decoded View---------------
Arg [0] : _treasury (address): 0xa963a46eF8D90Cba23347deF96632417Beaf72A2
Arg [1] : _MNFST (address): 0x21585BBcD5bDC3f5737620cf0Db2E51978cf60ac
Arg [2] : _sMNFST (address): 0xd9Ccb7bD2b66edB2998E9De53Bd7883891CA665B
Arg [3] : _uri (string): https://gateway.pinata.cloud/ipfs/QmUGR8fLFmFrmsu1FVDL7Tk5MZHqdDLQAz9uPkfY2EJJ6d/{id}.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a2
Arg [1] : 00000000000000000000000021585bbcd5bdc3f5737620cf0db2e51978cf60ac
Arg [2] : 000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d55475238664c466d46726d7375314656444c37546b354d5a48716444
Arg [7] : 4c51417a3975506b665932454a4a36642f7b69647d2e6a736f6e000000000000


Deployed Bytecode Sourcemap

48379:5489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33884:231;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33884:231:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14740:150;;;;;;;;;;;;;;;;-1:-1:-1;14740:150:0;-1:-1:-1;;;;;;14740:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;51286:91;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51286:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51286:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51286:91:0;;-1:-1:-1;51286:91:0;;-1:-1:-1;;;;;51286:91:0:i;:::-;;49967:90;;;;;;;;;;;;;;;;-1:-1:-1;49967:90:0;;:::i;48490:47::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48900:43;;;:::i;33626:107::-;;;;;;;;;;;;;;;;-1:-1:-1;33626:107:0;;:::i;48708:42::-;;;:::i;53350:257::-;;;:::i;51520:170::-;;;;;;;;;;;;;;;;-1:-1:-1;51520:170:0;-1:-1:-1;;;;;51520:170:0;;:::i;48950:43::-;;;:::i;48806:40::-;;;:::i;36527:1220::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0:i;53615:250::-;;;:::i;48666:35::-;;;:::i;49139:29::-;;;:::i;48582:35::-;;;:::i;34281:549::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34281:549:0;;;;;;;;-1:-1:-1;34281:549:0;;-1:-1:-1;;;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34281:549:0;;-1:-1:-1;34281:549:0;;-1:-1:-1;;;;;34281:549:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53098:244;;;:::i;49052:23::-;;;:::i;:::-;;;;-1:-1:-1;;;;;49052:23:0;;;;;;;;;;;;;;49571:86;;;;;;;;;;;;;;;;-1:-1:-1;49571:86:0;-1:-1:-1;;;;;49571:86:0;;:::i;52577:513::-;;;:::i;47229:148::-;;;:::i;49000:43::-;;;:::i;48624:35::-;;;:::i;46578:87::-;;;:::i;51385:127::-;;;;;;;;;;;;;;;;-1:-1:-1;51385:127:0;;:::i;48544:29::-;;;:::i;49669:90::-;;;;;;;;;;;;;;;;-1:-1:-1;49669:90:0;-1:-1:-1;;;;;49669:90:0;;:::i;48855:32::-;;;:::i;49767:96::-;;;:::i;34903:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34903:311:0;;;;;;;;;;:::i;49110:20::-;;;:::i;51698:554::-;;;;;;;;;;;;;;;;-1:-1:-1;51698:554:0;;:::i;52260:309::-;;;:::i;49871:88::-;;;;;;;;;;;;;;;;-1:-1:-1;49871:88:0;;:::i;48757:42::-;;;:::i;35286:168::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35286:168:0;;;;;;;;;;:::i;49175:24::-;;;:::i;49465:98::-;;;;;;;;;;;;;;;;-1:-1:-1;49465:98:0;-1:-1:-1;;;;;49465:98:0;;:::i;35526:924::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35526:924:0;;-1:-1:-1;35526:924:0;;-1:-1:-1;;;;;35526:924:0:i;47532:244::-;;;;;;;;;;;;;;;;-1:-1:-1;47532:244:0;-1:-1:-1;;;;;47532:244:0;;:::i;49082:21::-;;;:::i;33884:231::-;33970:7;-1:-1:-1;;;;;33998:21:0;;33990:77;;;;-1:-1:-1;;;33990:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34085:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;34085:22:0;;;;;;;;;;;;33884:231::o;14740:150::-;-1:-1:-1;;;;;;14849:33:0;;14825:4;14849:33;;;;;;;;;;;;;14740:150;;;;:::o;51286:91::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;51353:16:::1;51361:7;51353;:16::i;:::-;51286:91:::0;:::o;49967:90::-;50042:6;;50028:21;;50033:7;;-1:-1:-1;;;;;50042:6:0;50028:4;:21::i;48490:47::-;;;;;;;;;;;;;;;-1:-1:-1;;48490:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48900:43::-;;;;:::o;33626:107::-;33721:4;33714:11;;;;;;;;-1:-1:-1;;33714:11:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33688:13;;33714:11;;33721:4;;33714:11;;33721:4;33714:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33626:107;;;:::o;48708:42::-;48749:1;48708:42;:::o;53350:257::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;53447:6:::1;::::0;53431:49:::1;::::0;;-1:-1:-1;;;53431:49:0;;53474:4:::1;53431:49;::::0;::::1;::::0;;;53407:21:::1;::::0;-1:-1:-1;;;;;53447:6:0::1;::::0;53431:34:::1;::::0;:49;;;;;::::1;::::0;;;;;;;;53447:6;53431:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53431:49:0;;-1:-1:-1;53499:17:0;53491:39:::1;;;::::0;;-1:-1:-1;;;53491:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53491:39:0;;;;;;;;;;;;;::::1;;53557:6;::::0;53575:8:::1;::::0;53541:58:::1;::::0;;-1:-1:-1;;;53541:58:0;;-1:-1:-1;;;;;53575:8:0;;::::1;53541:58;::::0;::::1;::::0;;;;;;;;;53557:6;;;::::1;::::0;53541:33:::1;::::0;:58;;;;;::::1;::::0;;;;;;;;53557:6:::1;::::0;53541:58;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;53350:257:0:o;51520:170::-;51582:7;-1:-1:-1;;;;;51610:19:0;;51602:41;;;;;-1:-1:-1;;;51602:41:0;;;;;;;;;;;;-1:-1:-1;;;51602:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51663:19:0;;;;;:12;:19;;;;;;;51520:170::o;48950:43::-;;;;:::o;48806:40::-;48843:3;48806:40;:::o;36527:1220::-;36792:7;:14;36778:3;:10;:28;36770:81;;;;-1:-1:-1;;;36770:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36870:16:0;;36862:66;;;;-1:-1:-1;;;36862:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36969:12;:10;:12::i;:::-;-1:-1:-1;;;;;36961:20:0;:4;-1:-1:-1;;;;;36961:20:0;;:60;;;;36985:36;37002:4;37008:12;:10;:12::i;:::-;36985:16;:36::i;:::-;36939:160;;;;-1:-1:-1;;;36939:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37112:16;37131:12;:10;:12::i;:::-;37112:31;;37156:60;37177:8;37187:4;37193:2;37197:3;37202:7;37211:4;37156:20;:60::i;:::-;37234:9;37229:358;37253:3;:10;37249:1;:14;37229:358;;;37285:10;37298:3;37302:1;37298:6;;;;;;;;;;;;;;37285:19;;37319:14;37336:7;37344:1;37336:10;;;;;;;;;;;;;;37319:27;;37385:126;37427:6;37385:126;;;;;;;;;;;;;;;;;:9;:13;37395:2;37385:13;;;;;;;;;;;:19;37399:4;-1:-1:-1;;;;;37385:19:0;-1:-1:-1;;;;;37385:19:0;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;37363:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;37363:19:0;;;;;;;;;;:148;;;;37546:17;;;;;;:29;;37568:6;37546:21;:29::i;:::-;37526:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;37526:17:0;;;;;;;;;;:49;-1:-1:-1;37265:3:0;37229:358;;;;37634:2;-1:-1:-1;;;;;37604:47:0;37628:4;-1:-1:-1;;;;;37604:47:0;37618:8;-1:-1:-1;;;;;37604:47:0;;37638:3;37643:7;37604:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37664:75;37700:8;37710:4;37716:2;37720:3;37725:7;37734:4;37664:35;:75::i;:::-;36527:1220;;;;;;:::o;53615:250::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;53710:5:::1;::::0;53694:48:::1;::::0;;-1:-1:-1;;;53694:48:0;;53736:4:::1;53694:48;::::0;::::1;::::0;;;53671:20:::1;::::0;-1:-1:-1;;;;;53710:5:0::1;::::0;53694:33:::1;::::0;:48;;;;;::::1;::::0;;;;;;;;53710:5;53694:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53694:48:0;;-1:-1:-1;53761:16:0;53753:37:::1;;;::::0;;-1:-1:-1;;;53753:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53753:37:0;;;;;;;;;;;;;::::1;;53817:5;::::0;53834:8:::1;::::0;53801:56:::1;::::0;;-1:-1:-1;;;53801:56:0;;-1:-1:-1;;;;;53834:8:0;;::::1;53801:56;::::0;::::1;::::0;;;;;;;;;53817:5;;;::::1;::::0;53801:32:::1;::::0;:56;;;;;::::1;::::0;;;;;;;;53817:5:::1;::::0;53801:56;::::1;;::::0;::::1;;;;::::0;::::1;48666:35:::0;48700:1;48666:35;:::o;49139:29::-;;;-1:-1:-1;;;49139:29:0;;;;;:::o;48582:35::-;48616:1;48582:35;:::o;34281:549::-;34462:16;34523:3;:10;34504:8;:15;:29;34496:83;;;;-1:-1:-1;;;34496:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:30;34639:8;:15;34625:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34625:30:0;;34592:63;;34673:9;34668:122;34692:8;:15;34688:1;:19;34668:122;;;34748:30;34758:8;34767:1;34758:11;;;;;;;;;;;;;;34771:3;34775:1;34771:6;;;;;;;;;;;;;;34748:9;:30::i;:::-;34729:13;34743:1;34729:16;;;;;;;;;;;;;;;;;:49;34709:3;;34668:122;;;-1:-1:-1;34809:13:0;34281:549;-1:-1:-1;;;34281:549:0:o;53098:244::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;53170:21:::1;53210:11:::0;53202:30:::1;;;::::0;;-1:-1:-1;;;53202:30:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53202:30:0;;;;;;;;;;;;;::::1;;53262:8;::::0;:35:::1;::::0;53244:12:::1;::::0;-1:-1:-1;;;;;53262:8:0::1;::::0;53284:7;;53244:12;53262:35;53244:12;53262:35;53284:7;53262:8;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53243:54;;;53316:7;53308:26;;;::::0;;-1:-1:-1;;;53308:26:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53308:26:0;;;;;;;;;;;;;::::1;;46869:1;;53098:244::o:0;49052:23::-;;;-1:-1:-1;;;;;49052:23:0;;:::o;49571:86::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49635:5:::1;:14:::0;;-1:-1:-1;;;;;;49635:14:0::1;-1:-1:-1::0;;;;;49635:14:0;;;::::1;::::0;;;::::1;::::0;;49571:86::o;52577:513::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;52639:17:::1;::::0;-1:-1:-1;;;52639:17:0;::::1;;;:26;52631:58;;;::::0;;-1:-1:-1;;;52631:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52631:58:0;;;;;;;;;;;;;::::1;;52728:16;::::0;;52742:1:::1;52728:16:::0;;;;;::::1;::::0;;;52702:23:::1;::::0;52728:16:::1;::::0;::::1;52702:23:::0;;52728:16:::1;::::0;::::1;;::::0;-1:-1:-1;52728:16:0::1;52702:42;;48616:1;52755:6;52762:1;52755:9;;;;;;;;;;;;;:19;;;::::0;::::1;48658:1;52785:6;52792:1;52785:9;;;;;;;;;;;;;:19;;;::::0;::::1;48700:1;52815:6;52822:1;52815:9;;;;;;;;;::::0;;::::1;::::0;;;;;:19;52873:16:::1;::::0;;52887:1:::1;52873:16:::0;;;;;::::1;::::0;;;52847:23:::1;::::0;52873:16:::1;;;;;;;;;;;::::0;-1:-1:-1;52873:16:0::1;52847:42;;48796:3;52900:6;52907:1;52900:9;;;;;;;;;;;;;:24;;;::::0;::::1;48796:3;52935:6;52942:1;52935:9;;;;;;;;;;;;;:24;;;::::0;::::1;48796:3;52970:6;52977:1;52970:9;;;;;;;;;;;;;:24;;;::::0;::::1;53007:40;53018:8;;;;;;;;;-1:-1:-1::0;;;;;53018:8:0::1;53028:6;53036;53007:40;;;;;;;;;;;::::0;:10:::1;:40::i;:::-;-1:-1:-1::0;;53058:17:0::1;:24:::0;;-1:-1:-1;;;;53058:24:0::1;-1:-1:-1::0;;;53058:24:0::1;::::0;;52577:513::o;47229:148::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;47320:6:::1;::::0;47299:40:::1;::::0;47336:1:::1;::::0;-1:-1:-1;;;;;47320:6:0::1;::::0;47299:40:::1;::::0;47336:1;;47299:40:::1;47350:6;:19:::0;;-1:-1:-1;;;;;;47350:19:0::1;::::0;;47229:148::o;49000:43::-;;;;:::o;48624:35::-;48658:1;48624:35;:::o;46578:87::-;46651:6;;-1:-1:-1;;;;;46651:6:0;46578:87;;:::o;51385:127::-;51446:7;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;-1:-1:-1;51466:5:0::1;:15:::0;;;;51385:127::o;48544:29::-;;;;;;;;;;;;;;;-1:-1:-1;;48544:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49669:90;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49735:6:::1;:16:::0;;-1:-1:-1;;;;;;49735:16:0::1;-1:-1:-1::0;;;;;49735:16:0;;;::::1;::::0;;;::::1;::::0;;49669:90::o;48855:32::-;;;;:::o;49767:96::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49843:12:::1;::::0;;-1:-1:-1;;;;49827:28:0;::::1;-1:-1:-1::0;;;49843:12:0;;;::::1;;;49842:13;49827:28:::0;;::::1;;::::0;;49767:96::o;34903:311::-;35022:8;-1:-1:-1;;;;;35006:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;35006:24:0;;;34998:78;;;;-1:-1:-1;;;34998:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35134:8;35089:18;:32;35108:12;:10;:12::i;:::-;-1:-1:-1;;;;;35089:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35089:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35089:53:0;;;;;;;;;;;35173:12;:10;:12::i;:::-;-1:-1:-1;;;;;35158:48:0;;35197:8;35158:48;;;;;;;;;;;;;;;;;;;;34903:311;;:::o;49110:20::-;;;-1:-1:-1;;;;;49110:20:0;;:::o;51698:554::-;51813:17;;51753:7;;;;-1:-1:-1;;;51813:17:0;;;;51809:85;;;-1:-1:-1;48796:3:0;51809:85;48616:1;51910:3;:14;51906:98;;;51962:15;;48843:3;51949:28;51948:44;;-1:-1:-1;51941:51:0;;51906:98;48658:1;52020:3;:14;52016:98;;;52072:15;;48843:3;52059:28;52058:44;;-1:-1:-1;52051:51:0;;52016:98;48700:1;52130:3;:14;52126:98;;;52182:15;;48843:3;52169:28;52168:44;;-1:-1:-1;52161:51:0;;52126:98;-1:-1:-1;52243:1:0;;51698:554;-1:-1:-1;;51698:554:0:o;52260:309::-;52371:17;;52311:7;;;;-1:-1:-1;;;52371:17:0;;;;52367:89;;;-1:-1:-1;52428:16:0;52367:89;52531:15;;52513;;52495;;52477:14;52476:34;:52;:70;52475:86;;-1:-1:-1;52260:309:0;:::o;49871:88::-;49945:5;;49931:20;;49936:7;;-1:-1:-1;;;;;49945:5:0;49931:4;:20::i;48757:42::-;48796:3;48757:42;:::o;35286:168::-;-1:-1:-1;;;;;35409:27:0;;;35385:4;35409:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;35286:168::o;49175:24::-;;;-1:-1:-1;;;49175:24:0;;;;;:::o;49465:98::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49535:8:::1;:20:::0;;-1:-1:-1;;;;;;49535:20:0::1;-1:-1:-1::0;;;;;49535:20:0;;;::::1;::::0;;;::::1;::::0;;49465:98::o;35526:924::-;-1:-1:-1;;;;;35752:16:0;;35744:66;;;;-1:-1:-1;;;35744:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35851:12;:10;:12::i;:::-;-1:-1:-1;;;;;35843:20:0;:4;-1:-1:-1;;;;;35843:20:0;;:60;;;;35867:36;35884:4;35890:12;:10;:12::i;35867:36::-;35821:151;;;;-1:-1:-1;;;35821:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35985:16;36004:12;:10;:12::i;:::-;35985:31;;36029:96;36050:8;36060:4;36066:2;36070:21;36088:2;36070:17;:21::i;:::-;36093:25;36111:6;36093:17;:25::i;:::-;36120:4;36029:20;:96::i;:::-;36160:77;36184:6;36160:77;;;;;;;;;;;;;;;;;:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36160:19:0;;;;;;;;;;;:77;:23;:77::i;:::-;36138:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36138:19:0;;;;;;;;;;:99;;;;36268:17;;;;;;:29;;36290:6;36268:21;:29::i;:::-;36248:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36248:17:0;;;;;;;;;;;;;:49;;;;36315:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36374:68;36405:8;36415:4;36421:2;36425;36429:6;36437:4;36374:30;:68::i;47532:244::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47621:22:0;::::1;47613:73;;;;-1:-1:-1::0;;;47613:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47723:6;::::0;47702:38:::1;::::0;-1:-1:-1;;;;;47702:38:0;;::::1;::::0;47723:6:::1;::::0;47702:38:::1;::::0;47723:6:::1;::::0;47702:38:::1;47751:6;:17:::0;;-1:-1:-1;;;;;;47751:17:0::1;-1:-1:-1::0;;;;;47751:17:0;;;::::1;::::0;;;::::1;::::0;;47532:244::o;49082:21::-;;;-1:-1:-1;;;;;49082:21:0;;:::o;13376:106::-;13464:10;13376:106;:::o;38591:88::-;38658:13;;;;:4;;:13;;;;;:::i;50065:1209::-;50139:12;;-1:-1:-1;;;50139:12:0;;;;50131:41;;;;;-1:-1:-1;;;50131:41:0;;;;;;;;;;;;-1:-1:-1;;;50131:41:0;;;;;;;;;;;;;;;50240:5;;50191:45;;;-1:-1:-1;;;50191:45:0;;50225:10;50191:45;;;;;;-1:-1:-1;;;;;50191:33:0;;;;;:45;;;;;;;;;;;;;;:33;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50191:45:0;:54;;50183:83;;;;;-1:-1:-1;;;50183:83:0;;;;;;;;;;;;-1:-1:-1;;;50183:83:0;;;;;;;;;;;;;;;50298:10;50285:24;;;;:12;:24;;;;;;48749:1;-1:-1:-1;50277:76:0;;;;;-1:-1:-1;;;50277:76:0;;;;;;;;;;;;-1:-1:-1;;;50277:76:0;;;;;;;;;;;;;;;50381:5;;-1:-1:-1;;;;;50372:14:0;;;50381:5;;50372:14;;:33;;-1:-1:-1;50399:6:0;;-1:-1:-1;;;;;50390:15:0;;;50399:6;;50390:15;50372:33;50364:65;;;;;-1:-1:-1;;;50364:65:0;;;;;;;;;;;;-1:-1:-1;;;50364:65:0;;;;;;;;;;;;;;;48616:1;50446:7;:18;50442:514;;;50507:1;50489:15;;:19;50481:56;;;;;-1:-1:-1;;;50481:56:0;;;;;;;;;;;;-1:-1:-1;;;50481:56:0;;;;;;;;;;;;;;;50552:15;:17;;-1:-1:-1;;50552:17:0;;;50442:514;;;48658:1;50600:7;:18;50596:360;;;50661:1;50643:15;;:19;50635:56;;;;;-1:-1:-1;;;50635:56:0;;;;;;;;;;;;-1:-1:-1;;;50635:56:0;;;;;;;;;;;;;;;50706:15;:17;;-1:-1:-1;;50706:17:0;;;50596:360;;;48700:1;50754:7;:18;50750:206;;;50815:1;50797:15;;:19;50789:56;;;;;-1:-1:-1;;;50789:56:0;;;;;;;;;;;;-1:-1:-1;;;50789:56:0;;;;;;;;;;;;;;;50860:15;:17;;-1:-1:-1;;50860:17:0;;;50750:206;;;50919:25;;;-1:-1:-1;;;50919:25:0;;;;;;;;;;;;-1:-1:-1;;;50919:25:0;;;;;;;;;;;;;;50750:206;50981:10;50968:24;;;;:12;:24;;;;;;;;:29;;50996:1;50968:29;;;51132:5;;51068:70;;-1:-1:-1;;;51068:70:0;;;;;;;;;51125:4;51068:70;;;;;;;;;-1:-1:-1;;;;;51068:36:0;;;;;:70;;;;;50968:24;51068:70;;;;;;;;:36;:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51177:33:0;;;51068:70;51177:33;;;;;-1:-1:-1;51177:33:0;;;;51183:10;;51195:7;;51204:1;;51177:5;:33::i;:::-;51236:30;;;51246:10;51236:30;;;;;;;;;;;;;;;;;;;;;50065:1209;;:::o;21137:166::-;21223:7;21259:12;21251:6;;;;21243:29;;;;-1:-1:-1;;;21243:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21290:5:0;;;21137:166::o;18310:179::-;18368:7;18400:5;;;18424:6;;;;18416:46;;;;;-1:-1:-1;;;18416:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18480:1;18310:179;-1:-1:-1;;;18310:179:0:o;44447:799::-;44701:15;:2;-1:-1:-1;;;;;44701:13:0;;:15::i;:::-;44697:542;;;44754:2;-1:-1:-1;;;;;44737:43:0;;44781:8;44791:4;44797:3;44802:7;44811:4;44737:79;;;;;;;;;;;;;-1:-1:-1;;;;;44737:79:0;;;;;;-1:-1:-1;;;;;44737:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44737:79:0;;;44733:495;;;;:::i;:::-;;;;;;;;45094:14;;-1:-1:-1;;;45094:14:0;;;;;;;;;;;;;;;;;45101:6;;45094:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44733:495;45150:62;;-1:-1:-1;;;45150:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44733:495;-1:-1:-1;;;;;;44866:64:0;;-1:-1:-1;;;44866:64:0;44862:163;;44955:50;;-1:-1:-1;;;44955:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44862:163;44817:223;44447:799;;;;;;:::o;40019:715::-;-1:-1:-1;;;;;40154:16:0;;40146:62;;;;-1:-1:-1;;;40146:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40241:7;:14;40227:3;:10;:28;40219:81;;;;-1:-1:-1;;;40219:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40313:16;40332:12;:10;:12::i;:::-;40313:31;;40357:66;40378:8;40396:1;40400:2;40404:3;40409:7;40418:4;40357:20;:66::i;:::-;40441:6;40436:126;40457:3;:10;40453:1;:14;40436:126;;;40513:37;40528:9;:17;40538:3;40542:1;40538:6;;;;;;;;;;;;;;40528:17;;;;;;;;;;;:21;40546:2;-1:-1:-1;;;;;40528:21:0;-1:-1:-1;;;;;40528:21:0;;;;;;;;;;;;;40513:7;40521:1;40513:10;;;;;;;;;;;;;;:14;;:37;;;;:::i;:::-;40489:9;:17;40499:3;40503:1;40499:6;;;;;;;;;;;;;;;;;;;40489:17;;;;;;;;;;;;;-1:-1:-1;40489:17:0;;;-1:-1:-1;;;;;40489:21:0;;;;;;;;;:61;40469:3;;40436:126;;;;40615:2;-1:-1:-1;;;;;40579:53:0;40611:1;-1:-1:-1;;;;;40579:53:0;40593:8;-1:-1:-1;;;;;40579:53:0;;40619:3;40624:7;40579:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40645:81;40681:8;40699:1;40703:2;40707:3;40712:7;40721:4;40645:35;:81::i;:::-;40019:715;;;;;:::o;45254:198::-;45374:16;;;45388:1;45374:16;;;;;;;;;45320;;;;45374;;;;;;;;;;;;-1:-1:-1;45374:16:0;45349:41;;45412:7;45401:5;45407:1;45401:8;;;;;;;;;;;;;;;;;:18;45439:5;45254:198;-1:-1:-1;;45254:198:0:o;43677:762::-;43906:15;:2;-1:-1:-1;;;;;43906:13:0;;:15::i;:::-;43902:530;;;43959:2;-1:-1:-1;;;;;43942:38:0;;43981:8;43991:4;43997:2;44001:6;44009:4;43942:72;;;;;;;;;;;;;-1:-1:-1;;;;;43942:72:0;;;;;;-1:-1:-1;;;;;43942:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43942:72:0;;;43938:483;;;;:::i;:::-;-1:-1:-1;;;;;;44064:59:0;;-1:-1:-1;;;44064:59:0;44060:158;;44148:50;;-1:-1:-1;;;44148:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39080:583;-1:-1:-1;;;;;39195:21:0;;39187:67;;;;-1:-1:-1;;;39187:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39267:16;39286:12;:10;:12::i;:::-;39267:31;;39311:107;39332:8;39350:1;39354:7;39363:21;39381:2;39363:17;:21::i;39311:107::-;39456:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39456:22:0;;;;;;;;;;:34;;39483:6;39456:26;:34::i;:::-;39431:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39431:22:0;;;;;;;;;;;;:59;;;;39506:57;;;;;;;;;;;;;39431:22;;39506:57;;;;;;;;;;;;39576:79;39607:8;39625:1;39629:7;39638:2;39642:6;39650:4;39576:30;:79::i;23759:422::-;24126:20;24165:8;;;23759:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:88:1;89:3;85:15;;71:31::o;107:764::-;;188:4;170:16;167:26;164:2;;;196:5;;164:2;237:1;232:3;227;212:27;299:10;261:36;292:3;286:10;261:36;:::i;:::-;258:52;248:2;;314:5;;248:2;348;342:9;388:16;-1:-1:-1;;384:29:1;381:1;342:9;360:54;443:4;437:11;467:16;502:18;573:2;566:4;558:6;554:17;551:25;546:2;538:6;535:14;532:45;529:2;;;580:5;;;;;;529:2;617:6;611:4;607:17;596:28;;653:3;647:10;633:24;;680:2;672:6;669:14;666:2;;;686:5;;;;;;666:2;;747:16;741:4;737:27;730:4;721:6;716:3;712:16;708:27;705:60;702:2;;;768:5;;;;;702:2;833;812:15;-1:-1:-1;;808:29:1;799:39;;840:4;795:50;791:2;784:62;803:3;-1:-1:-1;;154:717:1;:::o

Swarm Source

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