ETH Price: $2,365.10 (+1.59%)

Token

Particlon Charity Mint (PCM)
 

Overview

Max Total Supply

81 PCM

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe32a4c7a2a5efc52a79cce5128189a5763589225
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:
ParticlonCharityMint

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _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.
     *
     * NOTE: 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.
     *
     * NOTE: 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/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^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/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^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/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^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 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;

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @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) public 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 {
        _setApprovalForAll(_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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

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

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += 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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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.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: contracts/ParticlonCharityMint.sol


pragma solidity 0.8.12;




contract SignatureVerifier {
    function getMessageHash(
        address to
    ) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(to));
    }

    function getEthSignedMessageHash(bytes32 messageHash)
        public
        pure
        returns (bytes32)
    {
        
        // Signature is produced by signing a keccak256 hash with the following format:
        // "\x19Ethereum Signed Message\n" + len(msg) + msg
        
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    messageHash
                )
            );
    }

    function verify(
        address signer,
        address to,
        bytes calldata signature
    ) public pure returns (bool) {
        bytes32 messageHash = getMessageHash(to);
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);

        return recoverSigner(ethSignedMessageHash, signature) == signer;
    }

    function recoverSigner(bytes32 ethSignedMessageHash, bytes memory signature)
        public
        pure
        returns (address)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(signature);

        return ecrecover(ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory signature)
        private
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(signature.length == 65, "Invalid signature length");

        assembly {
            /*
            First 32 bytes stores the length of the signature

            add(sig, 32) = pointer of sig + 32
            effectively, skips first 32 bytes of signature

            mload(p) loads next 32 bytes starting at the memory address p into memory
            */

            // first 32 bytes, after the length prefix
            r := mload(add(signature, 32))
            // second 32 bytes
            s := mload(add(signature, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(signature, 96)))
        }

        // implicitly return (r, s, v)
    }
}

/// @title Particlon Charity Mint Pass NFT
/// @author 0xapetoshi.eth
contract ParticlonCharityMint is ERC1155, Ownable, SignatureVerifier {
    /// @notice With ERC1155, the name and symbol need to be set like this
    string public constant name = "Particlon Charity Mint";

    string public constant symbol = "PCM";

    /// @dev Wallet that was used to generate signatures off-chain
    address public signer = 0x63E5Ab1882DC3959aAA861cE5c6C50B6469f228A;

    /// @dev One per wallet using signatures
    mapping(address => bool) public walletsMinted;

    constructor()
        ERC1155(
            "ipfs://QmRDQGZ57jhA1fpF28RDe469G2KAXwWQb65YmVV19xJ2kn/{id}.json"
        ){}


    /// @param signature Pregenerated signature for selected wallets only
    function claim(bytes calldata signature) external {
        /// @dev smart contracts cannot send signed transactions
        require(verify(signer, msg.sender, signature), "Invalid signature");
        require(!walletsMinted[msg.sender], "Already claimed");

        walletsMinted[msg.sender] = true;

        /// @dev effects are before interactions to avoid reentrancy attacks
        _mint(msg.sender, 0, 1, "");
    }

    /// @param uri Thew new base uri for the metadata
    function updateURI(string memory uri) external onlyOwner {
        _setURI(uri);
    }

    /// @param newSigner In case the signing wallet becomes unusable we can change it
    function updateSigner(address newSigner) external onlyOwner {
        signer = newSigner;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":[{"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":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletsMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600480546001600160a01b0319167363e5ab1882dc3959aaa861ce5c6c50b6469f228a1790553480156200003757600080fd5b506040518060600160405280603f815260200162001f78603f91396200005d816200006f565b50620000693362000088565b620001bd565b805162000084906002906020840190620000da565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000e89062000180565b90600052602060002090601f0160209004810192826200010c576000855562000157565b82601f106200012757805160ff191683800117855562000157565b8280016001018555821562000157579182015b82811115620001575782518255916020019190600101906200013a565b506200016592915062000169565b5090565b5b808211156200016557600081556001016200016a565b600181811c908216806200019557607f821691505b60208210811415620001b757634e487b7160e01b600052602260045260246000fd5b50919050565b611dab80620001cd6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c80638da5cb5b116100b8578063c30f4a5a1161007c578063c30f4a5a14610301578063c63ff8dd14610314578063e985e9c514610327578063f242432a14610363578063f2fde38b14610376578063fa5408011461038957600080fd5b80638da5cb5b1461029557806395d89b41146102a657806397aba7f9146102c8578063a22cb465146102db578063a7ecd37e146102ee57600080fd5b8063238ac9331161010a578063238ac933146101f75780632eb2c2d6146102225780633dc31e6a1461023757806342920a461461025a5780634e1273f41461026d578063715018a61461028d57600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde031461018f5780630e89341c146101d15780631f5ac1b2146101e4575b600080fd5b6101596101543660046113e8565b61039c565b6040519081526020015b60405180910390f35b61017f61017a366004611428565b610433565b6040519015158152602001610163565b6101c46040518060400160405280601681526020017514185c9d1a58db1bdb8810da185c9a5d1e48135a5b9d60521b81525081565b6040516101639190611499565b6101c46101df3660046114ac565b610485565b6101596101f23660046114c5565b610519565b60045461020a906001600160a01b031681565b6040516001600160a01b039091168152602001610163565b610235610230366004611633565b610559565b005b61017f6102453660046114c5565b60056020526000908152604090205460ff1681565b61017f610268366004611724565b6105f0565b61028061027b366004611784565b61066a565b6040516101639190611889565b610235610793565b6003546001600160a01b031661020a565b6101c46040518060400160405280600381526020016250434d60e81b81525081565b61020a6102d636600461189c565b6107c9565b6102356102e93660046118d8565b610848565b6102356102fc3660046114c5565b610857565b61023561030f366004611914565b6108a3565b610235610322366004611964565b6108d9565b61017f6103353660046119a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102356103713660046119d8565b6109b9565b6102356103843660046114c5565b610a40565b6101596103973660046114ac565b610ad8565b60006001600160a01b03831661040d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061046457506001600160e01b031982166303a24d0760e21b145b8061047f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049490611a3c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c090611a3c565b801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b50505050509050919050565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b6001600160a01b03851633148061057557506105758533610335565b6105dc5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610404565b6105e98585858585610b13565b5050505050565b6000806105fc85610519565b9050600061060982610ad8565b9050866001600160a01b03166106558287878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c992505050565b6001600160a01b031614979650505050505050565b606081518351146106cf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610404565b600083516001600160401b038111156106ea576106ea6114e0565b604051908082528060200260200182016040528015610713578160200160208202803683370190505b50905060005b845181101561078b5761075e85828151811061073757610737611a77565b602002602001015185838151811061075157610751611a77565b602002602001015161039c565b82828151811061077057610770611a77565b602090810291909101015261078481611aa3565b9050610719565b509392505050565b6003546001600160a01b031633146107bd5760405162461bcd60e51b815260040161040490611abe565b6107c76000610cf0565b565b6000806000806107d885610d42565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015610833573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b610853338383610db6565b5050565b6003546001600160a01b031633146108815760405162461bcd60e51b815260040161040490611abe565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b031633146108cd5760405162461bcd60e51b815260040161040490611abe565b6108d681610e97565b50565b6004546108f1906001600160a01b03163384846105f0565b6109315760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610404565b3360009081526005602052604090205460ff16156109835760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b6044820152606401610404565b336000818152600560209081526040808320805460ff191660019081179091558151928301909152828252610853939291610eaa565b6001600160a01b0385163314806109d557506109d58533610335565b610a335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610404565b6105e98585858585610fb4565b6003546001600160a01b03163314610a6a5760405162461bcd60e51b815260040161040490611abe565b6001600160a01b038116610acf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610404565b6108d681610cf0565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c0161053c565b8151835114610b755760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610404565b6001600160a01b038416610b9b5760405162461bcd60e51b815260040161040490611af3565b3360005b8451811015610c82576000858281518110610bbc57610bbc611a77565b602002602001015190506000858381518110610bda57610bda611a77565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c2a5760405162461bcd60e51b815260040161040490611b38565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610c67908490611b82565b9250508190555050505080610c7b90611aa3565b9050610b9f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610cd2929190611b9a565b60405180910390a4610ce88187878787876110d1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060008351604114610d985760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610404565b50505060208101516040820151606090920151909260009190911a90565b816001600160a01b0316836001600160a01b03161415610e2a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610404565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b8051610853906002906020840190611333565b6001600160a01b038416610f0a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610404565b33610f2481600087610f1b8861122d565b6105e98861122d565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f54908490611b82565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46105e981600087878787611278565b6001600160a01b038416610fda5760405162461bcd60e51b815260040161040490611af3565b33610fea818787610f1b8861122d565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561102b5760405162461bcd60e51b815260040161040490611b38565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611068908490611b82565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110c8828888888888611278565b50505050505050565b6001600160a01b0384163b15610ce85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111159089908990889088908890600401611bc8565b6020604051808303816000875af1925050508015611150575060408051601f3d908101601f1916820190925261114d91810190611c26565b60015b6111fd5761115c611c43565b806308c379a014156111965750611171611c5f565b8061117c5750611198565b8060405162461bcd60e51b81526004016104049190611499565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610404565b6001600160e01b0319811663bc197c8160e01b146110c85760405162461bcd60e51b815260040161040490611ce8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061126757611267611a77565b602090810291909101015292915050565b6001600160a01b0384163b15610ce85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112bc9089908990889088908890600401611d30565b6020604051808303816000875af19250505080156112f7575060408051601f3d908101601f191682019092526112f491810190611c26565b60015b6113035761115c611c43565b6001600160e01b0319811663f23a6e6160e01b146110c85760405162461bcd60e51b815260040161040490611ce8565b82805461133f90611a3c565b90600052602060002090601f01602090048101928261136157600085556113a7565b82601f1061137a57805160ff19168380011785556113a7565b828001600101855582156113a7579182015b828111156113a757825182559160200191906001019061138c565b506113b39291506113b7565b5090565b5b808211156113b357600081556001016113b8565b80356001600160a01b03811681146113e357600080fd5b919050565b600080604083850312156113fb57600080fd5b611404836113cc565b946020939093013593505050565b6001600160e01b0319811681146108d657600080fd5b60006020828403121561143a57600080fd5b813561144581611412565b9392505050565b6000815180845260005b8181101561147257602081850181015186830182015201611456565b81811115611484576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611445602083018461144c565b6000602082840312156114be57600080fd5b5035919050565b6000602082840312156114d757600080fd5b611445826113cc565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561151b5761151b6114e0565b6040525050565b60006001600160401b0382111561153b5761153b6114e0565b5060051b60200190565b600082601f83011261155657600080fd5b8135602061156382611522565b60405161157082826114f6565b83815260059390931b850182019282810191508684111561159057600080fd5b8286015b848110156115ab5780358352918301918301611594565b509695505050505050565b60006001600160401b038311156115cf576115cf6114e0565b6040516115e6601f8501601f1916602001826114f6565b8091508381528484840111156115fb57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261162457600080fd5b611445838335602085016115b6565b600080600080600060a0868803121561164b57600080fd5b611654866113cc565b9450611662602087016113cc565b935060408601356001600160401b038082111561167e57600080fd5b61168a89838a01611545565b945060608801359150808211156116a057600080fd5b6116ac89838a01611545565b935060808801359150808211156116c257600080fd5b506116cf88828901611613565b9150509295509295909350565b60008083601f8401126116ee57600080fd5b5081356001600160401b0381111561170557600080fd5b60208301915083602082850101111561171d57600080fd5b9250929050565b6000806000806060858703121561173a57600080fd5b611743856113cc565b9350611751602086016113cc565b925060408501356001600160401b0381111561176c57600080fd5b611778878288016116dc565b95989497509550505050565b6000806040838503121561179757600080fd5b82356001600160401b03808211156117ae57600080fd5b818501915085601f8301126117c257600080fd5b813560206117cf82611522565b6040516117dc82826114f6565b83815260059390931b85018201928281019150898411156117fc57600080fd5b948201945b8386101561182157611812866113cc565b82529482019490820190611801565b9650508601359250508082111561183757600080fd5b5061184485828601611545565b9150509250929050565b600081518084526020808501945080840160005b8381101561187e57815187529582019590820190600101611862565b509495945050505050565b602081526000611445602083018461184e565b600080604083850312156118af57600080fd5b8235915060208301356001600160401b038111156118cc57600080fd5b61184485828601611613565b600080604083850312156118eb57600080fd5b6118f4836113cc565b91506020830135801515811461190957600080fd5b809150509250929050565b60006020828403121561192657600080fd5b81356001600160401b0381111561193c57600080fd5b8201601f8101841361194d57600080fd5b61195c848235602084016115b6565b949350505050565b6000806020838503121561197757600080fd5b82356001600160401b0381111561198d57600080fd5b611999858286016116dc565b90969095509350505050565b600080604083850312156119b857600080fd5b6119c1836113cc565b91506119cf602084016113cc565b90509250929050565b600080600080600060a086880312156119f057600080fd5b6119f9866113cc565b9450611a07602087016113cc565b9350604086013592506060860135915060808601356001600160401b03811115611a3057600080fd5b6116cf88828901611613565b600181811c90821680611a5057607f821691505b60208210811415611a7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ab757611ab7611a8d565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b9557611b95611a8d565b500190565b604081526000611bad604083018561184e565b8281036020840152611bbf818561184e565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bf49083018661184e565b8281036060840152611c06818661184e565b90508281036080840152611c1a818561144c565b98975050505050505050565b600060208284031215611c3857600080fd5b815161144581611412565b600060033d1115611c5c5760046000803e5060005160e01c5b90565b600060443d1015611c6d5790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715611c9c57505050505090565b8285019150815181811115611cb45750505050505090565b843d8701016020828501011115611cce5750505050505090565b611cdd602082860101876114f6565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d6a9083018461144c565b97965050505050505056fea2646970667358221220789502c44e268e1f24dddf1c2ed87a6918fb2f32181f93236546b5be6871965b64736f6c634300080c0033697066733a2f2f516d524451475a35376a684131667046323852446534363947324b4158775751623635596d56563139784a326b6e2f7b69647d2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c80638da5cb5b116100b8578063c30f4a5a1161007c578063c30f4a5a14610301578063c63ff8dd14610314578063e985e9c514610327578063f242432a14610363578063f2fde38b14610376578063fa5408011461038957600080fd5b80638da5cb5b1461029557806395d89b41146102a657806397aba7f9146102c8578063a22cb465146102db578063a7ecd37e146102ee57600080fd5b8063238ac9331161010a578063238ac933146101f75780632eb2c2d6146102225780633dc31e6a1461023757806342920a461461025a5780634e1273f41461026d578063715018a61461028d57600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde031461018f5780630e89341c146101d15780631f5ac1b2146101e4575b600080fd5b6101596101543660046113e8565b61039c565b6040519081526020015b60405180910390f35b61017f61017a366004611428565b610433565b6040519015158152602001610163565b6101c46040518060400160405280601681526020017514185c9d1a58db1bdb8810da185c9a5d1e48135a5b9d60521b81525081565b6040516101639190611499565b6101c46101df3660046114ac565b610485565b6101596101f23660046114c5565b610519565b60045461020a906001600160a01b031681565b6040516001600160a01b039091168152602001610163565b610235610230366004611633565b610559565b005b61017f6102453660046114c5565b60056020526000908152604090205460ff1681565b61017f610268366004611724565b6105f0565b61028061027b366004611784565b61066a565b6040516101639190611889565b610235610793565b6003546001600160a01b031661020a565b6101c46040518060400160405280600381526020016250434d60e81b81525081565b61020a6102d636600461189c565b6107c9565b6102356102e93660046118d8565b610848565b6102356102fc3660046114c5565b610857565b61023561030f366004611914565b6108a3565b610235610322366004611964565b6108d9565b61017f6103353660046119a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102356103713660046119d8565b6109b9565b6102356103843660046114c5565b610a40565b6101596103973660046114ac565b610ad8565b60006001600160a01b03831661040d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061046457506001600160e01b031982166303a24d0760e21b145b8061047f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049490611a3c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c090611a3c565b801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b50505050509050919050565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b6001600160a01b03851633148061057557506105758533610335565b6105dc5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610404565b6105e98585858585610b13565b5050505050565b6000806105fc85610519565b9050600061060982610ad8565b9050866001600160a01b03166106558287878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c992505050565b6001600160a01b031614979650505050505050565b606081518351146106cf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610404565b600083516001600160401b038111156106ea576106ea6114e0565b604051908082528060200260200182016040528015610713578160200160208202803683370190505b50905060005b845181101561078b5761075e85828151811061073757610737611a77565b602002602001015185838151811061075157610751611a77565b602002602001015161039c565b82828151811061077057610770611a77565b602090810291909101015261078481611aa3565b9050610719565b509392505050565b6003546001600160a01b031633146107bd5760405162461bcd60e51b815260040161040490611abe565b6107c76000610cf0565b565b6000806000806107d885610d42565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015610833573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b610853338383610db6565b5050565b6003546001600160a01b031633146108815760405162461bcd60e51b815260040161040490611abe565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b031633146108cd5760405162461bcd60e51b815260040161040490611abe565b6108d681610e97565b50565b6004546108f1906001600160a01b03163384846105f0565b6109315760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610404565b3360009081526005602052604090205460ff16156109835760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b6044820152606401610404565b336000818152600560209081526040808320805460ff191660019081179091558151928301909152828252610853939291610eaa565b6001600160a01b0385163314806109d557506109d58533610335565b610a335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610404565b6105e98585858585610fb4565b6003546001600160a01b03163314610a6a5760405162461bcd60e51b815260040161040490611abe565b6001600160a01b038116610acf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610404565b6108d681610cf0565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c0161053c565b8151835114610b755760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610404565b6001600160a01b038416610b9b5760405162461bcd60e51b815260040161040490611af3565b3360005b8451811015610c82576000858281518110610bbc57610bbc611a77565b602002602001015190506000858381518110610bda57610bda611a77565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c2a5760405162461bcd60e51b815260040161040490611b38565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610c67908490611b82565b9250508190555050505080610c7b90611aa3565b9050610b9f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610cd2929190611b9a565b60405180910390a4610ce88187878787876110d1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060008351604114610d985760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610404565b50505060208101516040820151606090920151909260009190911a90565b816001600160a01b0316836001600160a01b03161415610e2a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610404565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b8051610853906002906020840190611333565b6001600160a01b038416610f0a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610404565b33610f2481600087610f1b8861122d565b6105e98861122d565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f54908490611b82565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46105e981600087878787611278565b6001600160a01b038416610fda5760405162461bcd60e51b815260040161040490611af3565b33610fea818787610f1b8861122d565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561102b5760405162461bcd60e51b815260040161040490611b38565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611068908490611b82565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110c8828888888888611278565b50505050505050565b6001600160a01b0384163b15610ce85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111159089908990889088908890600401611bc8565b6020604051808303816000875af1925050508015611150575060408051601f3d908101601f1916820190925261114d91810190611c26565b60015b6111fd5761115c611c43565b806308c379a014156111965750611171611c5f565b8061117c5750611198565b8060405162461bcd60e51b81526004016104049190611499565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610404565b6001600160e01b0319811663bc197c8160e01b146110c85760405162461bcd60e51b815260040161040490611ce8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061126757611267611a77565b602090810291909101015292915050565b6001600160a01b0384163b15610ce85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112bc9089908990889088908890600401611d30565b6020604051808303816000875af19250505080156112f7575060408051601f3d908101601f191682019092526112f491810190611c26565b60015b6113035761115c611c43565b6001600160e01b0319811663f23a6e6160e01b146110c85760405162461bcd60e51b815260040161040490611ce8565b82805461133f90611a3c565b90600052602060002090601f01602090048101928261136157600085556113a7565b82601f1061137a57805160ff19168380011785556113a7565b828001600101855582156113a7579182015b828111156113a757825182559160200191906001019061138c565b506113b39291506113b7565b5090565b5b808211156113b357600081556001016113b8565b80356001600160a01b03811681146113e357600080fd5b919050565b600080604083850312156113fb57600080fd5b611404836113cc565b946020939093013593505050565b6001600160e01b0319811681146108d657600080fd5b60006020828403121561143a57600080fd5b813561144581611412565b9392505050565b6000815180845260005b8181101561147257602081850181015186830182015201611456565b81811115611484576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611445602083018461144c565b6000602082840312156114be57600080fd5b5035919050565b6000602082840312156114d757600080fd5b611445826113cc565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561151b5761151b6114e0565b6040525050565b60006001600160401b0382111561153b5761153b6114e0565b5060051b60200190565b600082601f83011261155657600080fd5b8135602061156382611522565b60405161157082826114f6565b83815260059390931b850182019282810191508684111561159057600080fd5b8286015b848110156115ab5780358352918301918301611594565b509695505050505050565b60006001600160401b038311156115cf576115cf6114e0565b6040516115e6601f8501601f1916602001826114f6565b8091508381528484840111156115fb57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261162457600080fd5b611445838335602085016115b6565b600080600080600060a0868803121561164b57600080fd5b611654866113cc565b9450611662602087016113cc565b935060408601356001600160401b038082111561167e57600080fd5b61168a89838a01611545565b945060608801359150808211156116a057600080fd5b6116ac89838a01611545565b935060808801359150808211156116c257600080fd5b506116cf88828901611613565b9150509295509295909350565b60008083601f8401126116ee57600080fd5b5081356001600160401b0381111561170557600080fd5b60208301915083602082850101111561171d57600080fd5b9250929050565b6000806000806060858703121561173a57600080fd5b611743856113cc565b9350611751602086016113cc565b925060408501356001600160401b0381111561176c57600080fd5b611778878288016116dc565b95989497509550505050565b6000806040838503121561179757600080fd5b82356001600160401b03808211156117ae57600080fd5b818501915085601f8301126117c257600080fd5b813560206117cf82611522565b6040516117dc82826114f6565b83815260059390931b85018201928281019150898411156117fc57600080fd5b948201945b8386101561182157611812866113cc565b82529482019490820190611801565b9650508601359250508082111561183757600080fd5b5061184485828601611545565b9150509250929050565b600081518084526020808501945080840160005b8381101561187e57815187529582019590820190600101611862565b509495945050505050565b602081526000611445602083018461184e565b600080604083850312156118af57600080fd5b8235915060208301356001600160401b038111156118cc57600080fd5b61184485828601611613565b600080604083850312156118eb57600080fd5b6118f4836113cc565b91506020830135801515811461190957600080fd5b809150509250929050565b60006020828403121561192657600080fd5b81356001600160401b0381111561193c57600080fd5b8201601f8101841361194d57600080fd5b61195c848235602084016115b6565b949350505050565b6000806020838503121561197757600080fd5b82356001600160401b0381111561198d57600080fd5b611999858286016116dc565b90969095509350505050565b600080604083850312156119b857600080fd5b6119c1836113cc565b91506119cf602084016113cc565b90509250929050565b600080600080600060a086880312156119f057600080fd5b6119f9866113cc565b9450611a07602087016113cc565b9350604086013592506060860135915060808601356001600160401b03811115611a3057600080fd5b6116cf88828901611613565b600181811c90821680611a5057607f821691505b60208210811415611a7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ab757611ab7611a8d565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b9557611b95611a8d565b500190565b604081526000611bad604083018561184e565b8281036020840152611bbf818561184e565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bf49083018661184e565b8281036060840152611c06818661184e565b90508281036080840152611c1a818561144c565b98975050505050505050565b600060208284031215611c3857600080fd5b815161144581611412565b600060033d1115611c5c5760046000803e5060005160e01c5b90565b600060443d1015611c6d5790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715611c9c57505050505090565b8285019150815181811115611cb45750505050505090565b843d8701016020828501011115611cce5750505050505090565b611cdd602082860101876114f6565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d6a9083018461144c565b97965050505050505056fea2646970667358221220789502c44e268e1f24dddf1c2ed87a6918fb2f32181f93236546b5be6871965b64736f6c634300080c0033

Deployed Bytecode Sourcemap

39316:1488:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23410:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;23410:231:0;;;;;;;;22433:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;22433:310:0;1019:187:1;39468:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;39468:54:0;;;;;;;;;;;;:::i;23154:105::-;;;;;;:::i;:::-;;:::i;37029:139::-;;;;;;:::i;:::-;;:::i;39645:66::-;;;;;-1:-1:-1;;;;;39645:66:0;;;;;;-1:-1:-1;;;;;2635:32:1;;;2617:51;;2605:2;2590:18;39645:66:0;2471:203:1;25349:442:0;;;;;;:::i;:::-;;:::i;:::-;;39766:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37678:344;;;;;;:::i;:::-;;:::i;23807:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2639:103::-;;;:::i;1988:87::-;2061:6;;-1:-1:-1;;;;;2061:6:0;1988:87;;39531:37;;;;;;;;;;;;;;;-1:-1:-1;;;39531:37:0;;;;;38030:277;;;;;;:::i;:::-;;:::i;24404:155::-;;;;;;:::i;:::-;;:::i;40704:97::-;;;;;;:::i;:::-;;:::i;40521:88::-;;;;;;:::i;:::-;;:::i;40028:430::-;;;;;;:::i;:::-;;:::i;24631:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24754:27:0;;;24730:4;24754:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;24631:168;24871:401;;;;;;:::i;:::-;;:::i;2897:201::-;;;;;;:::i;:::-;;:::i;37176:494::-;;;;;;:::i;:::-;;:::i;23410:231::-;23496:7;-1:-1:-1;;;;;23524:21:0;;23516:77;;;;-1:-1:-1;;;23516:77:0;;11338:2:1;23516:77:0;;;11320:21:1;11377:2;11357:18;;;11350:30;11416:34;11396:18;;;11389:62;-1:-1:-1;;;11467:18:1;;;11460:41;11518:19;;23516:77:0;;;;;;;;;-1:-1:-1;23611:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;23611:22:0;;;;;;;;;;;;23410:231::o;22433:310::-;22535:4;-1:-1:-1;;;;;;22572:41:0;;-1:-1:-1;;;22572:41:0;;:110;;-1:-1:-1;;;;;;;22630:52:0;;-1:-1:-1;;;22630:52:0;22572:110;:163;;;-1:-1:-1;;;;;;;;;;13850:40:0;;;22699:36;22552:183;22433:310;-1:-1:-1;;22433:310:0:o;23154:105::-;23214:13;23247:4;23240:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23154:105;;;:::o;37029:139::-;37139:20;;-1:-1:-1;;12082:2:1;12078:15;;;12074:53;37139:20:0;;;12062:66:1;37102:7:0;;12144:12:1;;37139:20:0;;;;;;;;;;;;;37129:31;;;;;;37122:38;;37029:139;;;:::o;25349:442::-;-1:-1:-1;;;;;25582:20:0;;792:10;25582:20;;:60;;-1:-1:-1;25606:36:0;25623:4;792:10;24631:168;:::i;25606:36::-;25560:160;;;;-1:-1:-1;;;25560:160:0;;12369:2:1;25560:160:0;;;12351:21:1;12408:2;12388:18;;;12381:30;12447:34;12427:18;;;12420:62;-1:-1:-1;;;12498:18:1;;;12491:48;12556:19;;25560:160:0;12167:414:1;25560:160:0;25731:52;25754:4;25760:2;25764:3;25769:7;25778:4;25731:22;:52::i;:::-;25349:442;;;;;:::o;37678:344::-;37803:4;37820:19;37842:18;37857:2;37842:14;:18::i;:::-;37820:40;;37871:28;37902:36;37926:11;37902:23;:36::i;:::-;37871:67;;38008:6;-1:-1:-1;;;;;37958:56:0;:46;37972:20;37994:9;;37958:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37958:13:0;;-1:-1:-1;;;37958:46:0:i;:::-;-1:-1:-1;;;;;37958:56:0;;;37678:344;-1:-1:-1;;;;;;;37678:344:0:o;23807:524::-;23963:16;24024:3;:10;24005:8;:15;:29;23997:83;;;;-1:-1:-1;;;23997:83:0;;12788:2:1;23997:83:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;-1:-1:-1;;;12917:18:1;;;12910:39;12966:19;;23997:83:0;12586:405:1;23997:83:0;24093:30;24140:8;:15;-1:-1:-1;;;;;24126:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24126:30:0;;24093:63;;24174:9;24169:122;24193:8;:15;24189:1;:19;24169:122;;;24249:30;24259:8;24268:1;24259:11;;;;;;;;:::i;:::-;;;;;;;24272:3;24276:1;24272:6;;;;;;;;:::i;:::-;;;;;;;24249:9;:30::i;:::-;24230:13;24244:1;24230:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;24210:3;;;:::i;:::-;;;24169:122;;;-1:-1:-1;24310:13:0;23807:524;-1:-1:-1;;;23807:524:0:o;2639:103::-;2061:6;;-1:-1:-1;;;;;2061:6:0;792:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;38030:277::-;38155:7;38181:9;38192;38203:7;38214:25;38229:9;38214:14;:25::i;:::-;38259:40;;;;;;;;;;;;13988:25:1;;;14061:4;14049:17;;14029:18;;;14022:45;;;;14083:18;;;14076:34;;;14126:18;;;14119:34;;;38180:59:0;;-1:-1:-1;38180:59:0;;-1:-1:-1;38180:59:0;-1:-1:-1;38259:40:0;;13960:19:1;;38259:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38259:40:0;;-1:-1:-1;;38259:40:0;;;38030:277;-1:-1:-1;;;;;;;38030:277:0:o;24404:155::-;24499:52;792:10;24532:8;24542;24499:18;:52::i;:::-;24404:155;;:::o;40704:97::-;2061:6;;-1:-1:-1;;;;;2061:6:0;792:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;40775:6:::1;:18:::0;;-1:-1:-1;;;;;;40775:18:0::1;-1:-1:-1::0;;;;;40775:18:0;;;::::1;::::0;;;::::1;::::0;;40704:97::o;40521:88::-;2061:6;;-1:-1:-1;;;;;2061:6:0;792:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;40589:12:::1;40597:3;40589:7;:12::i;:::-;40521:88:::0;:::o;40028:430::-;40170:6;;40163:37;;-1:-1:-1;;;;;40170:6:0;40178:10;40190:9;;40163:6;:37::i;:::-;40155:67;;;;-1:-1:-1;;;40155:67:0;;14366:2:1;40155:67:0;;;14348:21:1;14405:2;14385:18;;;14378:30;-1:-1:-1;;;14424:18:1;;;14417:47;14481:18;;40155:67:0;14164:341:1;40155:67:0;40256:10;40242:25;;;;:13;:25;;;;;;;;40241:26;40233:54;;;;-1:-1:-1;;;40233:54:0;;14712:2:1;40233:54:0;;;14694:21:1;14751:2;14731:18;;;14724:30;-1:-1:-1;;;14770:18:1;;;14763:45;14825:18;;40233:54:0;14510:339:1;40233:54:0;40314:10;40300:25;;;;:13;:25;;;;;;;;:32;;-1:-1:-1;;40300:32:0;40328:4;40300:32;;;;;;40423:27;;;;;;;;;;;;;40314:10;40300:25;40423:5;:27::i;24871:401::-;-1:-1:-1;;;;;25079:20:0;;792:10;25079:20;;:60;;-1:-1:-1;25103:36:0;25120:4;792:10;24631:168;:::i;25103:36::-;25057:151;;;;-1:-1:-1;;;25057:151:0;;15056:2:1;25057:151:0;;;15038:21:1;15095:2;15075:18;;;15068:30;15134:34;15114:18;;;15107:62;-1:-1:-1;;;15185:18:1;;;15178:39;15234:19;;25057:151:0;14854:405:1;25057:151:0;25219:45;25237:4;25243:2;25247;25251:6;25259:4;25219:17;:45::i;2897:201::-;2061:6;;-1:-1:-1;;;;;2061:6:0;792:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;::::0;-1:-1:-1;;;2978:73:0;;15466:2:1;2978:73:0::1;::::0;::::1;15448:21:1::0;15505:2;15485:18;;;15478:30;15544:34;15524:18;;;15517:62;-1:-1:-1;;;15595:18:1;;;15588:36;15641:19;;2978:73:0::1;15264:402:1::0;2978:73:0::1;3062:28;3081:8;3062:18;:28::i;37176:494::-:0;37521:126;;15913:66:1;37521:126:0;;;15901:79:1;15996:12;;;15989:28;;;37278:7:0;;16033:12:1;;37521:126:0;15671:380:1;27433:1074:0;27660:7;:14;27646:3;:10;:28;27638:81;;;;-1:-1:-1;;;27638:81:0;;16258:2:1;27638:81:0;;;16240:21:1;16297:2;16277:18;;;16270:30;16336:34;16316:18;;;16309:62;-1:-1:-1;;;16387:18:1;;;16380:38;16435:19;;27638:81:0;16056:404:1;27638:81:0;-1:-1:-1;;;;;27738:16:0;;27730:66;;;;-1:-1:-1;;;27730:66:0;;;;;;;:::i;:::-;792:10;27809:16;27926:421;27950:3;:10;27946:1;:14;27926:421;;;27982:10;27995:3;27999:1;27995:6;;;;;;;;:::i;:::-;;;;;;;27982:19;;28016:14;28033:7;28041:1;28033:10;;;;;;;;:::i;:::-;;;;;;;;;;;;28060:19;28082:13;;;;;;;;;;-1:-1:-1;;;;;28082:19:0;;;;;;;;;;;;28033:10;;-1:-1:-1;28124:21:0;;;;28116:76;;;;-1:-1:-1;;;28116:76:0;;;;;;;:::i;:::-;28236:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28236:19:0;;;;;;;;;;28258:20;;;28236:42;;28308:17;;;;;;;:27;;28258:20;;28236:9;28308:27;;28258:20;;28308:27;:::i;:::-;;;;;;;;27967:380;;;27962:3;;;;:::i;:::-;;;27926:421;;;;28394:2;-1:-1:-1;;;;;28364:47:0;28388:4;-1:-1:-1;;;;;28364:47:0;28378:8;-1:-1:-1;;;;;28364:47:0;;28398:3;28403:7;28364:47;;;;;;;:::i;:::-;;;;;;;;28424:75;28460:8;28470:4;28476:2;28480:3;28485:7;28494:4;28424:35;:75::i;:::-;27627:880;27433:1074;;;;;:::o;3258:191::-;3351:6;;;-1:-1:-1;;;;;3368:17:0;;;-1:-1:-1;;;;;;3368:17:0;;;;;;;3401:40;;3351:6;;;3368:17;3351:6;;3401:40;;3332:16;;3401:40;3321:128;3258:191;:::o;38315:922::-;38426:9;38450;38474:7;38517:9;:16;38537:2;38517:22;38509:59;;;;-1:-1:-1;;;38509:59:0;;18087:2:1;38509:59:0;;;18069:21:1;18126:2;18106:18;;;18099:30;18165:26;18145:18;;;18138:54;18209:18;;38509:59:0;17885:348:1;38509:59:0;-1:-1:-1;;;38983:2:0;38968:18;;38962:25;39059:2;39044:18;;39038:25;39172:2;39157:18;;;39151:25;38962;;39148:1;39143:34;;;;;38315:922::o;33619:331::-;33774:8;-1:-1:-1;;;;;33765:17:0;:5;-1:-1:-1;;;;;33765:17:0;;;33757:71;;;;-1:-1:-1;;;33757:71:0;;18440:2:1;33757:71:0;;;18422:21:1;18479:2;18459:18;;;18452:30;18518:34;18498:18;;;18491:62;-1:-1:-1;;;18569:18:1;;;18562:39;18618:19;;33757:71:0;18238:405:1;33757:71:0;-1:-1:-1;;;;;33839:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33839:46:0;;;;;;;;;;33901:41;;1159::1;;;33901::0;;1132:18:1;33901:41:0;;;;;;;33619:331;;;:::o;29351:88::-;29418:13;;;;:4;;:13;;;;;:::i;29825:569::-;-1:-1:-1;;;;;29978:16:0;;29970:62;;;;-1:-1:-1;;;29970:62:0;;18850:2:1;29970:62:0;;;18832:21:1;18889:2;18869:18;;;18862:30;18928:34;18908:18;;;18901:62;-1:-1:-1;;;18979:18:1;;;18972:31;19020:19;;29970:62:0;18648:397:1;29970:62:0;792:10;30089:102;792:10;30045:16;30132:2;30136:21;30154:2;30136:17;:21::i;:::-;30159:25;30177:6;30159:17;:25::i;30089:102::-;30204:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30204:17:0;;;;;;;;;:27;;30225:6;;30204:9;:27;;30225:6;;30204:27;:::i;:::-;;;;-1:-1:-1;;30247:52:0;;;19224:25:1;;;19280:2;19265:18;;19258:34;;;-1:-1:-1;;;;;30247:52:0;;;;30280:1;;30247:52;;;;;;19197:18:1;30247:52:0;;;;;;;30312:74;30343:8;30361:1;30365:2;30369;30373:6;30381:4;30312:30;:74::i;26255:820::-;-1:-1:-1;;;;;26443:16:0;;26435:66;;;;-1:-1:-1;;;26435:66:0;;;;;;;:::i;:::-;792:10;26558:96;792:10;26589:4;26595:2;26599:21;26617:2;26599:17;:21::i;26558:96::-;26667:19;26689:13;;;;;;;;;;;-1:-1:-1;;;;;26689:19:0;;;;;;;;;;26727:21;;;;26719:76;;;;-1:-1:-1;;;26719:76:0;;;;;;;:::i;:::-;26831:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26831:19:0;;;;;;;;;;26853:20;;;26831:42;;26895:17;;;;;;;:27;;26853:20;;26831:9;26895:27;;26853:20;;26895:27;:::i;:::-;;;;-1:-1:-1;;26940:46:0;;;19224:25:1;;;19280:2;19265:18;;19258:34;;;-1:-1:-1;;;;;26940:46:0;;;;;;;;;;;;;;19197:18:1;26940:46:0;;;;;;;26999:68;27030:8;27040:4;27046:2;27050;27054:6;27062:4;26999:30;:68::i;:::-;26424:651;;26255:820;;;;;:::o;35887:813::-;-1:-1:-1;;;;;36127:13:0;;4984:19;:23;36123:570;;36163:79;;-1:-1:-1;;;36163:79:0;;-1:-1:-1;;;;;36163:43:0;;;;;:79;;36207:8;;36217:4;;36223:3;;36228:7;;36237:4;;36163:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36163:79:0;;;;;;;;-1:-1:-1;;36163:79:0;;;;;;;;;;;;:::i;:::-;;;36159:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36555:6;36548:14;;-1:-1:-1;;;36548:14:0;;;;;;;;:::i;36159:523::-;;;36604:62;;-1:-1:-1;;;36604:62:0;;21451:2:1;36604:62:0;;;21433:21:1;21490:2;21470:18;;;21463:30;21529:34;21509:18;;;21502:62;-1:-1:-1;;;21580:18:1;;;21573:50;21640:19;;36604:62:0;21249:416:1;36159:523:0;-1:-1:-1;;;;;;36324:60:0;;-1:-1:-1;;;36324:60:0;36320:159;;36409:50;;-1:-1:-1;;;36409:50:0;;;;;;;:::i;36708:198::-;36828:16;;;36842:1;36828:16;;;;;;;;;36774;;36803:22;;36828:16;;;;;;;;;;;;-1:-1:-1;36828:16:0;36803:41;;36866:7;36855:5;36861:1;36855:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;36893:5;36708:198;-1:-1:-1;;36708:198:0:o;35135:744::-;-1:-1:-1;;;;;35350:13:0;;4984:19;:23;35346:526;;35386:72;;-1:-1:-1;;;35386:72:0;;-1:-1:-1;;;;;35386:38:0;;;;;:72;;35425:8;;35435:4;;35441:2;;35445:6;;35453:4;;35386:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35386:72:0;;;;;;;;-1:-1:-1;;35386:72:0;;;;;;;;;;;;:::i;:::-;;;35382:479;;;;:::i;:::-;-1:-1:-1;;;;;;35508:55:0;;-1:-1:-1;;;35508:55:0;35504:154;;35588:50;;-1:-1:-1;;;35588:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:472::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1533:6;1530:1;1527:13;1524:87;;;1599:1;1592:4;1583:6;1578:3;1574:16;1570:27;1563:38;1524:87;-1:-1:-1;1665:2:1;1644:15;-1:-1:-1;;1640:29:1;1631:39;;;;1672:4;1627:50;;1211:472;-1:-1:-1;;1211:472:1:o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;1913:180::-;1972:6;2025:2;2013:9;2004:7;2000:23;1996:32;1993:52;;;2041:1;2038;2031:12;1993:52;-1:-1:-1;2064:23:1;;1913:180;-1:-1:-1;1913:180:1:o;2098:186::-;2157:6;2210:2;2198:9;2189:7;2185:23;2181:32;2178:52;;;2226:1;2223;2216:12;2178:52;2249:29;2268:9;2249:29;:::i;2679:127::-;2740:10;2735:3;2731:20;2728:1;2721:31;2771:4;2768:1;2761:15;2795:4;2792:1;2785:15;2811:249;2921:2;2902:13;;-1:-1:-1;;2898:27:1;2886:40;;-1:-1:-1;;;;;2941:34:1;;2977:22;;;2938:62;2935:88;;;3003:18;;:::i;:::-;3039:2;3032:22;-1:-1:-1;;2811:249:1:o;3065:183::-;3125:4;-1:-1:-1;;;;;3150:6:1;3147:30;3144:56;;;3180:18;;:::i;:::-;-1:-1:-1;3225:1:1;3221:14;3237:4;3217:25;;3065:183::o;3253:724::-;3307:5;3360:3;3353:4;3345:6;3341:17;3337:27;3327:55;;3378:1;3375;3368:12;3327:55;3414:6;3401:20;3440:4;3463:43;3503:2;3463:43;:::i;:::-;3535:2;3529:9;3547:31;3575:2;3567:6;3547:31;:::i;:::-;3613:18;;;3705:1;3701:10;;;;3689:23;;3685:32;;;3647:15;;;;-1:-1:-1;3729:15:1;;;3726:35;;;3757:1;3754;3747:12;3726:35;3793:2;3785:6;3781:15;3805:142;3821:6;3816:3;3813:15;3805:142;;;3887:17;;3875:30;;3925:12;;;;3838;;3805:142;;;-1:-1:-1;3965:6:1;3253:724;-1:-1:-1;;;;;;3253:724:1:o;3982:468::-;4046:5;-1:-1:-1;;;;;4072:6:1;4069:30;4066:56;;;4102:18;;:::i;:::-;4151:2;4145:9;4163:69;4220:2;4199:15;;-1:-1:-1;;4195:29:1;4226:4;4191:40;4145:9;4163:69;:::i;:::-;4250:6;4241:15;;4280:6;4272;4265:22;4320:3;4311:6;4306:3;4302:16;4299:25;4296:45;;;4337:1;4334;4327:12;4296:45;4387:6;4382:3;4375:4;4367:6;4363:17;4350:44;4442:1;4435:4;4426:6;4418;4414:19;4410:30;4403:41;;3982:468;;;;;:::o;4455:220::-;4497:5;4550:3;4543:4;4535:6;4531:17;4527:27;4517:55;;4568:1;4565;4558:12;4517:55;4590:79;4665:3;4656:6;4643:20;4636:4;4628:6;4624:17;4590:79;:::i;4680:943::-;4834:6;4842;4850;4858;4866;4919:3;4907:9;4898:7;4894:23;4890:33;4887:53;;;4936:1;4933;4926:12;4887:53;4959:29;4978:9;4959:29;:::i;:::-;4949:39;;5007:38;5041:2;5030:9;5026:18;5007:38;:::i;:::-;4997:48;;5096:2;5085:9;5081:18;5068:32;-1:-1:-1;;;;;5160:2:1;5152:6;5149:14;5146:34;;;5176:1;5173;5166:12;5146:34;5199:61;5252:7;5243:6;5232:9;5228:22;5199:61;:::i;:::-;5189:71;;5313:2;5302:9;5298:18;5285:32;5269:48;;5342:2;5332:8;5329:16;5326:36;;;5358:1;5355;5348:12;5326:36;5381:63;5436:7;5425:8;5414:9;5410:24;5381:63;:::i;:::-;5371:73;;5497:3;5486:9;5482:19;5469:33;5453:49;;5527:2;5517:8;5514:16;5511:36;;;5543:1;5540;5533:12;5511:36;;5566:51;5609:7;5598:8;5587:9;5583:24;5566:51;:::i;:::-;5556:61;;;4680:943;;;;;;;;:::o;5628:347::-;5679:8;5689:6;5743:3;5736:4;5728:6;5724:17;5720:27;5710:55;;5761:1;5758;5751:12;5710:55;-1:-1:-1;5784:20:1;;-1:-1:-1;;;;;5816:30:1;;5813:50;;;5859:1;5856;5849:12;5813:50;5896:4;5888:6;5884:17;5872:29;;5948:3;5941:4;5932:6;5924;5920:19;5916:30;5913:39;5910:59;;;5965:1;5962;5955:12;5910:59;5628:347;;;;;:::o;5980:557::-;6068:6;6076;6084;6092;6145:2;6133:9;6124:7;6120:23;6116:32;6113:52;;;6161:1;6158;6151:12;6113:52;6184:29;6203:9;6184:29;:::i;:::-;6174:39;;6232:38;6266:2;6255:9;6251:18;6232:38;:::i;:::-;6222:48;;6321:2;6310:9;6306:18;6293:32;-1:-1:-1;;;;;6340:6:1;6337:30;6334:50;;;6380:1;6377;6370:12;6334:50;6419:58;6469:7;6460:6;6449:9;6445:22;6419:58;:::i;:::-;5980:557;;;;-1:-1:-1;6496:8:1;-1:-1:-1;;;;5980:557:1:o;6542:1208::-;6660:6;6668;6721:2;6709:9;6700:7;6696:23;6692:32;6689:52;;;6737:1;6734;6727:12;6689:52;6777:9;6764:23;-1:-1:-1;;;;;6847:2:1;6839:6;6836:14;6833:34;;;6863:1;6860;6853:12;6833:34;6901:6;6890:9;6886:22;6876:32;;6946:7;6939:4;6935:2;6931:13;6927:27;6917:55;;6968:1;6965;6958:12;6917:55;7004:2;6991:16;7026:4;7049:43;7089:2;7049:43;:::i;:::-;7121:2;7115:9;7133:31;7161:2;7153:6;7133:31;:::i;:::-;7199:18;;;7287:1;7283:10;;;;7275:19;;7271:28;;;7233:15;;;;-1:-1:-1;7311:19:1;;;7308:39;;;7343:1;7340;7333:12;7308:39;7367:11;;;;7387:148;7403:6;7398:3;7395:15;7387:148;;;7469:23;7488:3;7469:23;:::i;:::-;7457:36;;7420:12;;;;7513;;;;7387:148;;;7554:6;-1:-1:-1;;7598:18:1;;7585:32;;-1:-1:-1;;7629:16:1;;;7626:36;;;7658:1;7655;7648:12;7626:36;;7681:63;7736:7;7725:8;7714:9;7710:24;7681:63;:::i;:::-;7671:73;;;6542:1208;;;;;:::o;7755:435::-;7808:3;7846:5;7840:12;7873:6;7868:3;7861:19;7899:4;7928:2;7923:3;7919:12;7912:19;;7965:2;7958:5;7954:14;7986:1;7996:169;8010:6;8007:1;8004:13;7996:169;;;8071:13;;8059:26;;8105:12;;;;8140:15;;;;8032:1;8025:9;7996:169;;;-1:-1:-1;8181:3:1;;7755:435;-1:-1:-1;;;;;7755:435:1:o;8195:261::-;8374:2;8363:9;8356:21;8337:4;8394:56;8446:2;8435:9;8431:18;8423:6;8394:56;:::i;8461:388::-;8538:6;8546;8599:2;8587:9;8578:7;8574:23;8570:32;8567:52;;;8615:1;8612;8605:12;8567:52;8651:9;8638:23;8628:33;;8712:2;8701:9;8697:18;8684:32;-1:-1:-1;;;;;8731:6:1;8728:30;8725:50;;;8771:1;8768;8761:12;8725:50;8794:49;8835:7;8826:6;8815:9;8811:22;8794:49;:::i;8854:347::-;8919:6;8927;8980:2;8968:9;8959:7;8955:23;8951:32;8948:52;;;8996:1;8993;8986:12;8948:52;9019:29;9038:9;9019:29;:::i;:::-;9009:39;;9098:2;9087:9;9083:18;9070:32;9145:5;9138:13;9131:21;9124:5;9121:32;9111:60;;9167:1;9164;9157:12;9111:60;9190:5;9180:15;;;8854:347;;;;;:::o;9206:450::-;9275:6;9328:2;9316:9;9307:7;9303:23;9299:32;9296:52;;;9344:1;9341;9334:12;9296:52;9384:9;9371:23;-1:-1:-1;;;;;9409:6:1;9406:30;9403:50;;;9449:1;9446;9439:12;9403:50;9472:22;;9525:4;9517:13;;9513:27;-1:-1:-1;9503:55:1;;9554:1;9551;9544:12;9503:55;9577:73;9642:7;9637:2;9624:16;9619:2;9615;9611:11;9577:73;:::i;:::-;9567:83;9206:450;-1:-1:-1;;;;9206:450:1:o;9661:409::-;9731:6;9739;9792:2;9780:9;9771:7;9767:23;9763:32;9760:52;;;9808:1;9805;9798:12;9760:52;9848:9;9835:23;-1:-1:-1;;;;;9873:6:1;9870:30;9867:50;;;9913:1;9910;9903:12;9867:50;9952:58;10002:7;9993:6;9982:9;9978:22;9952:58;:::i;:::-;10029:8;;9926:84;;-1:-1:-1;9661:409:1;-1:-1:-1;;;;9661:409:1:o;10075:260::-;10143:6;10151;10204:2;10192:9;10183:7;10179:23;10175:32;10172:52;;;10220:1;10217;10210:12;10172:52;10243:29;10262:9;10243:29;:::i;:::-;10233:39;;10291:38;10325:2;10314:9;10310:18;10291:38;:::i;:::-;10281:48;;10075:260;;;;;:::o;10340:606::-;10444:6;10452;10460;10468;10476;10529:3;10517:9;10508:7;10504:23;10500:33;10497:53;;;10546:1;10543;10536:12;10497:53;10569:29;10588:9;10569:29;:::i;:::-;10559:39;;10617:38;10651:2;10640:9;10636:18;10617:38;:::i;:::-;10607:48;;10702:2;10691:9;10687:18;10674:32;10664:42;;10753:2;10742:9;10738:18;10725:32;10715:42;;10808:3;10797:9;10793:19;10780:33;-1:-1:-1;;;;;10828:6:1;10825:30;10822:50;;;10868:1;10865;10858:12;10822:50;10891:49;10932:7;10923:6;10912:9;10908:22;10891:49;:::i;11548:380::-;11627:1;11623:12;;;;11670;;;11691:61;;11745:4;11737:6;11733:17;11723:27;;11691:61;11798:2;11790:6;11787:14;11767:18;11764:38;11761:161;;;11844:10;11839:3;11835:20;11832:1;11825:31;11879:4;11876:1;11869:15;11907:4;11904:1;11897:15;11761:161;;11548:380;;;:::o;12996:127::-;13057:10;13052:3;13048:20;13045:1;13038:31;13088:4;13085:1;13078:15;13112:4;13109:1;13102:15;13128:127;13189:10;13184:3;13180:20;13177:1;13170:31;13220:4;13217:1;13210:15;13244:4;13241:1;13234:15;13260:135;13299:3;-1:-1:-1;;13320:17:1;;13317:43;;;13340:18;;:::i;:::-;-1:-1:-1;13387:1:1;13376:13;;13260:135::o;13400:356::-;13602:2;13584:21;;;13621:18;;;13614:30;13680:34;13675:2;13660:18;;13653:62;13747:2;13732:18;;13400:356::o;16465:401::-;16667:2;16649:21;;;16706:2;16686:18;;;16679:30;16745:34;16740:2;16725:18;;16718:62;-1:-1:-1;;;16811:2:1;16796:18;;16789:35;16856:3;16841:19;;16465:401::o;16871:406::-;17073:2;17055:21;;;17112:2;17092:18;;;17085:30;17151:34;17146:2;17131:18;;17124:62;-1:-1:-1;;;17217:2:1;17202:18;;17195:40;17267:3;17252:19;;16871:406::o;17282:128::-;17322:3;17353:1;17349:6;17346:1;17343:13;17340:39;;;17359:18;;:::i;:::-;-1:-1:-1;17395:9:1;;17282:128::o;17415:465::-;17672:2;17661:9;17654:21;17635:4;17698:56;17750:2;17739:9;17735:18;17727:6;17698:56;:::i;:::-;17802:9;17794:6;17790:22;17785:2;17774:9;17770:18;17763:50;17830:44;17867:6;17859;17830:44;:::i;:::-;17822:52;17415:465;-1:-1:-1;;;;;17415:465:1:o;19303:827::-;-1:-1:-1;;;;;19700:15:1;;;19682:34;;19752:15;;19747:2;19732:18;;19725:43;19662:3;19799:2;19784:18;;19777:31;;;19625:4;;19831:57;;19868:19;;19860:6;19831:57;:::i;:::-;19936:9;19928:6;19924:22;19919:2;19908:9;19904:18;19897:50;19970:44;20007:6;19999;19970:44;:::i;:::-;19956:58;;20063:9;20055:6;20051:22;20045:3;20034:9;20030:19;20023:51;20091:33;20117:6;20109;20091:33;:::i;:::-;20083:41;19303:827;-1:-1:-1;;;;;;;;19303:827:1:o;20135:249::-;20204:6;20257:2;20245:9;20236:7;20232:23;20228:32;20225:52;;;20273:1;20270;20263:12;20225:52;20305:9;20299:16;20324:30;20348:5;20324:30;:::i;20389:179::-;20424:3;20466:1;20448:16;20445:23;20442:120;;;20512:1;20509;20506;20491:23;-1:-1:-1;20549:1:1;20543:8;20538:3;20534:18;20442:120;20389:179;:::o;20573:671::-;20612:3;20654:4;20636:16;20633:26;20630:39;;;20573:671;:::o;20630:39::-;20696:2;20690:9;-1:-1:-1;;20761:16:1;20757:25;;20754:1;20690:9;20733:50;20812:4;20806:11;20836:16;-1:-1:-1;;;;;20942:2:1;20935:4;20927:6;20923:17;20920:25;20915:2;20907:6;20904:14;20901:45;20898:58;;;20949:5;;;;;20573:671;:::o;20898:58::-;20986:6;20980:4;20976:17;20965:28;;21022:3;21016:10;21049:2;21041:6;21038:14;21035:27;;;21055:5;;;;;;20573:671;:::o;21035:27::-;21139:2;21120:16;21114:4;21110:27;21106:36;21099:4;21090:6;21085:3;21081:16;21077:27;21074:69;21071:82;;;21146:5;;;;;;20573:671;:::o;21071:82::-;21162:57;21213:4;21204:6;21196;21192:19;21188:30;21182:4;21162:57;:::i;:::-;-1:-1:-1;21235:3:1;;20573:671;-1:-1:-1;;;;;20573:671:1:o;21670:404::-;21872:2;21854:21;;;21911:2;21891:18;;;21884:30;21950:34;21945:2;21930:18;;21923:62;-1:-1:-1;;;22016:2:1;22001:18;;21994:38;22064:3;22049:19;;21670:404::o;22079:561::-;-1:-1:-1;;;;;22376:15:1;;;22358:34;;22428:15;;22423:2;22408:18;;22401:43;22475:2;22460:18;;22453:34;;;22518:2;22503:18;;22496:34;;;22338:3;22561;22546:19;;22539:32;;;22301:4;;22588:46;;22614:19;;22606:6;22588:46;:::i;:::-;22580:54;22079:561;-1:-1:-1;;;;;;;22079:561:1:o

Swarm Source

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