ETH Price: $2,082.97 (+1.09%)
 

Overview

Max Total Supply

5,263,842.45124334 $psMRTR

Holders

71

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MRTRToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

// Import OpenZeppelin contracts
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MRTRToken is ERC20, Ownable(msg.sender)  {
    using SafeERC20 for IERC20;

    // Swapping parameters
    address public swapTokenAddress; // Address of the token to swap to
    uint256 public swapRate;         // Swap rate in 18-decimal fixed point (swap tokens per MRTR token)
    bool public swappingEnabled;     // Flag to enable/disable swapping

    constructor() ERC20("$psMRTR Token", "$psMRTR") {
        // Initial supply is zero
    }


    // Batch mint function callable by owner
    function batchMint(address[] memory recipients, uint256[] memory amounts) external onlyOwner {
        require(
            recipients.length == amounts.length,
            "MRTRToken: recipients and amounts length mismatch"
        );
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], amounts[i]);
        }
    }

    // Batch burn function callable by owner
    function batchBurn(address[] memory holders, uint256[] memory amounts) external onlyOwner {
        require(
            holders.length == amounts.length,
            "MRTRToken: holders and amounts length mismatch"
        );
        for (uint256 i = 0; i < holders.length; i++) {
            _burn(holders[i], amounts[i]);
        }
    }

    // Set swap parameters and enable/disable swapping
    function setSwapParameters(
        address _swapTokenAddress,
        uint256 _swapRate,
        bool _swappingEnabled
    ) external onlyOwner {
        swapTokenAddress = _swapTokenAddress;
        swapRate = _swapRate; // Swap rate in 18-decimal fixed point
        swappingEnabled = _swappingEnabled;
    }

    // Swap function for token holders
    function swap() external {
        require(swappingEnabled, "MRTRToken: swapping is disabled");

        uint256 userBalance = balanceOf(msg.sender);
        require(userBalance > 0, "MRTRToken: no tokens to swap");

        // Calculate the amount of swap tokens to receive
        uint256 swapAmount = (userBalance * swapRate) / 1e18;

        // Burn MRTR tokens from the user
        _burn(msg.sender, userBalance);

        // Transfer swap tokens to the user
        IERC20 swapToken = IERC20(swapTokenAddress);
        require(
            swapToken.balanceOf(address(this)) >= swapAmount,
            "MRTRToken: insufficient swap token balance"
        );
        swapToken.safeTransfer(msg.sender, swapAmount);
    }

    // Allow the owner to recover tokens mistakenly sent to the contract
    function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
        require(
            tokenAddress != address(this),
            "MRTRToken: cannot recover own tokens"
        );
        IERC20(tokenAddress).safeTransfer(owner(), tokenAmount);
    }

    // Allow the owner to deposit swap tokens into the contract
    function depositSwapTokens(uint256 amount) external onlyOwner {
        IERC20 swapToken = IERC20(swapTokenAddress);
        swapToken.safeTransferFrom(msg.sender, address(this), amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 10 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 11 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swapTokenAddress","type":"address"},{"internalType":"uint256","name":"_swapRate","type":"uint256"},{"internalType":"bool","name":"_swappingEnabled","type":"bool"}],"name":"setSwapParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swappingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b50336040518060400160405280600d81526020017f2470734d52545220546f6b656e000000000000000000000000000000000000008152506040518060400160405280600781526020017f2470734d5254520000000000000000000000000000000000000000000000000081525081600390816200008f919062000456565b508060049081620000a1919062000456565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e91906200057d565b60405180910390fd5b62000128816200012f60201b60201c565b5062000598565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026e57607f821691505b60208210810362000284576200028362000229565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ab565b620002f48683620002ab565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033e6200033862000332846200030c565b62000315565b6200030c565b9050919050565b5f819050919050565b62000359836200031e565b62000371620003688262000345565b848454620002b7565b825550505050565b5f90565b6200038762000379565b620003948184846200034e565b505050565b5b81811015620003bb57620003af5f826200037d565b6001810190506200039a565b5050565b601f8211156200040a57620003d4816200028a565b620003df846200029c565b81016020851015620003ef578190505b62000407620003fe856200029c565b83018262000399565b50505b505050565b5f82821c905092915050565b5f6200042c5f19846008026200040f565b1980831691505092915050565b5f6200044683836200041b565b9150826002028217905092915050565b6200046182620001f2565b67ffffffffffffffff8111156200047d576200047c620001fc565b5b62000489825462000256565b62000496828285620003bf565b5f60209050601f831160018114620004cc575f8415620004b7578287015190505b620004c3858262000439565b86555062000532565b601f198416620004dc866200028a565b5f5b828110156200050557848901518255600182019150602085019450602081019050620004de565b8683101562000525578489015162000521601f8916826200041b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000565826200053a565b9050919050565b620005778162000559565b82525050565b5f602082019050620005925f8301846200056c565b92915050565b61213b80620005a65f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c806376a66d36116100b6578063a9059cbb1161007a578063a9059cbb14610301578063aeb5556914610331578063ba8d15b21461034f578063dd62ed3e1461036b578063f2fde38b1461039b578063f36f79e0146103b757610135565b806376a66d36146102835780638119c0651461029f5780638980f11f146102a95780638da5cb5b146102c557806395d89b41146102e357610135565b80634a6cc677116100fd5780634a6cc677146101f3578063685731071461020f578063698518e51461022b57806370a0823114610249578063715018a61461027957610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a5578063313ce567146101d5575b5f80fd5b6101416103d5565b60405161014e91906115d7565b60405180910390f35b610171600480360381019061016c9190611695565b610465565b60405161017e91906116ed565b60405180910390f35b61018f610487565b60405161019c9190611715565b60405180910390f35b6101bf60048036038101906101ba919061172e565b610490565b6040516101cc91906116ed565b60405180910390f35b6101dd6104be565b6040516101ea9190611799565b60405180910390f35b61020d600480360381019061020891906119b2565b6104c6565b005b610229600480360381019061022491906119b2565b610573565b005b610233610620565b6040516102409190611715565b60405180910390f35b610263600480360381019061025e9190611a28565b610626565b6040516102709190611715565b60405180910390f35b61028161066b565b005b61029d60048036038101906102989190611a7d565b61067e565b005b6102a76106eb565b005b6102c360048036038101906102be9190611695565b6108c4565b005b6102cd610970565b6040516102da9190611adc565b60405180910390f35b6102eb610998565b6040516102f891906115d7565b60405180910390f35b61031b60048036038101906103169190611695565b610a28565b60405161032891906116ed565b60405180910390f35b610339610a4a565b60405161034691906116ed565b60405180910390f35b61036960048036038101906103649190611af5565b610a5c565b005b61038560048036038101906103809190611b20565b610aba565b6040516103929190611715565b60405180910390f35b6103b560048036038101906103b09190611a28565b610b3c565b005b6103bf610bc0565b6040516103cc9190611adc565b60405180910390f35b6060600380546103e490611b8b565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611b8b565b801561045b5780601f106104325761010080835404028352916020019161045b565b820191905f5260205f20905b81548152906001019060200180831161043e57829003601f168201915b5050505050905090565b5f8061046f610be5565b905061047c818585610bec565b600191505092915050565b5f600254905090565b5f8061049a610be5565b90506104a7858285610bfe565b6104b2858585610c91565b60019150509392505050565b5f6012905090565b6104ce610d81565b8051825114610512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050990611c2b565b60405180910390fd5b5f5b825181101561056e5761055b83828151811061053357610532611c49565b5b602002602001015183838151811061054e5761054d611c49565b5b6020026020010151610e08565b808061056690611ca3565b915050610514565b505050565b61057b610d81565b80518251146105bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b690611d5a565b60405180910390fd5b5f5b825181101561061b576106088382815181106105e0576105df611c49565b5b60200260200101518383815181106105fb576105fa611c49565b5b6020026020010151610e87565b808061061390611ca3565b9150506105c1565b505050565b60075481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610673610d81565b61067c5f610f06565b565b610686610d81565b8260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060085f6101000a81548160ff021916908315150217905550505050565b60085f9054906101000a900460ff16610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611dc2565b60405180910390fd5b5f61074333610626565b90505f8111610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611e2a565b60405180910390fd5b5f670de0b6b3a76400006007548361079f9190611e48565b6107a99190611eb6565b90506107b53383610e08565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050818173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108149190611adc565b602060405180830381865afa15801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611efa565b1015610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90611f95565b60405180910390fd5b6108bf33838373ffffffffffffffffffffffffffffffffffffffff16610fc99092919063ffffffff16565b505050565b6108cc610d81565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190612023565b60405180910390fd5b61096c610945610970565b828473ffffffffffffffffffffffffffffffffffffffff16610fc99092919063ffffffff16565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a790611b8b565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611b8b565b8015610a1e5780601f106109f557610100808354040283529160200191610a1e565b820191905f5260205f20905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b5f80610a32610be5565b9050610a3f818585610c91565b600191505092915050565b60085f9054906101000a900460ff1681565b610a64610d81565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610ab63330848473ffffffffffffffffffffffffffffffffffffffff16611048909392919063ffffffff16565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b44610d81565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bab9190611adc565b60405180910390fd5b610bbd81610f06565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610bf983838360016110ca565b505050565b5f610c098484610aba565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c8b5781811015610c7c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c7393929190612041565b60405180910390fd5b610c8a84848484035f6110ca565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d01575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf89190611adc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d71575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d689190611adc565b60405180910390fd5b610d7c838383611299565b505050565b610d89610be5565b73ffffffffffffffffffffffffffffffffffffffff16610da7610970565b73ffffffffffffffffffffffffffffffffffffffff1614610e0657610dca610be5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dfd9190611adc565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e78575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e6f9190611adc565b60405180910390fd5b610e83825f83611299565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610eee9190611adc565b60405180910390fd5b610f025f8383611299565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611043838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401610ffc929190612076565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114b2565b505050565b6110c4848573ffffffffffffffffffffffffffffffffffffffff166323b872dd86868660405160240161107d9392919061209d565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114b2565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361113a575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111319190611adc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111aa575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111a19190611adc565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611293578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161128a9190611715565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e9578060025f8282546112dd91906120d2565b925050819055506113b7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611372578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161136993929190612041565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fe578060025f8282540392505081905550611448565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a59190611715565b60405180910390a3505050565b5f8060205f8451602086015f885af1806114d1576040513d5f823e3d81fd5b3d92505f519150505f82146114ea576001811415611505565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561154757836040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161153e9190611adc565b60405180910390fd5b50505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611584578082015181840152602081019050611569565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115a98261154d565b6115b38185611557565b93506115c3818560208601611567565b6115cc8161158f565b840191505092915050565b5f6020820190508181035f8301526115ef818461159f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61163182611608565b9050919050565b61164181611627565b811461164b575f80fd5b50565b5f8135905061165c81611638565b92915050565b5f819050919050565b61167481611662565b811461167e575f80fd5b50565b5f8135905061168f8161166b565b92915050565b5f80604083850312156116ab576116aa611600565b5b5f6116b88582860161164e565b92505060206116c985828601611681565b9150509250929050565b5f8115159050919050565b6116e7816116d3565b82525050565b5f6020820190506117005f8301846116de565b92915050565b61170f81611662565b82525050565b5f6020820190506117285f830184611706565b92915050565b5f805f6060848603121561174557611744611600565b5b5f6117528682870161164e565b93505060206117638682870161164e565b925050604061177486828701611681565b9150509250925092565b5f60ff82169050919050565b6117938161177e565b82525050565b5f6020820190506117ac5f83018461178a565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117ec8261158f565b810181811067ffffffffffffffff8211171561180b5761180a6117b6565b5b80604052505050565b5f61181d6115f7565b905061182982826117e3565b919050565b5f67ffffffffffffffff821115611848576118476117b6565b5b602082029050602081019050919050565b5f80fd5b5f61186f61186a8461182e565b611814565b9050808382526020820190506020840283018581111561189257611891611859565b5b835b818110156118bb57806118a7888261164e565b845260208401935050602081019050611894565b5050509392505050565b5f82601f8301126118d9576118d86117b2565b5b81356118e984826020860161185d565b91505092915050565b5f67ffffffffffffffff82111561190c5761190b6117b6565b5b602082029050602081019050919050565b5f61192f61192a846118f2565b611814565b9050808382526020820190506020840283018581111561195257611951611859565b5b835b8181101561197b57806119678882611681565b845260208401935050602081019050611954565b5050509392505050565b5f82601f830112611999576119986117b2565b5b81356119a984826020860161191d565b91505092915050565b5f80604083850312156119c8576119c7611600565b5b5f83013567ffffffffffffffff8111156119e5576119e4611604565b5b6119f1858286016118c5565b925050602083013567ffffffffffffffff811115611a1257611a11611604565b5b611a1e85828601611985565b9150509250929050565b5f60208284031215611a3d57611a3c611600565b5b5f611a4a8482850161164e565b91505092915050565b611a5c816116d3565b8114611a66575f80fd5b50565b5f81359050611a7781611a53565b92915050565b5f805f60608486031215611a9457611a93611600565b5b5f611aa18682870161164e565b9350506020611ab286828701611681565b9250506040611ac386828701611a69565b9150509250925092565b611ad681611627565b82525050565b5f602082019050611aef5f830184611acd565b92915050565b5f60208284031215611b0a57611b09611600565b5b5f611b1784828501611681565b91505092915050565b5f8060408385031215611b3657611b35611600565b5b5f611b438582860161164e565b9250506020611b548582860161164e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ba257607f821691505b602082108103611bb557611bb4611b5e565b5b50919050565b7f4d525452546f6b656e3a20686f6c6465727320616e6420616d6f756e7473206c5f8201527f656e677468206d69736d61746368000000000000000000000000000000000000602082015250565b5f611c15602e83611557565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611cad82611662565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cdf57611cde611c76565b5b600182019050919050565b7f4d525452546f6b656e3a20726563697069656e747320616e6420616d6f756e745f8201527f73206c656e677468206d69736d61746368000000000000000000000000000000602082015250565b5f611d44603183611557565b9150611d4f82611cea565b604082019050919050565b5f6020820190508181035f830152611d7181611d38565b9050919050565b7f4d525452546f6b656e3a207377617070696e672069732064697361626c6564005f82015250565b5f611dac601f83611557565b9150611db782611d78565b602082019050919050565b5f6020820190508181035f830152611dd981611da0565b9050919050565b7f4d525452546f6b656e3a206e6f20746f6b656e7320746f2073776170000000005f82015250565b5f611e14601c83611557565b9150611e1f82611de0565b602082019050919050565b5f6020820190508181035f830152611e4181611e08565b9050919050565b5f611e5282611662565b9150611e5d83611662565b9250828202611e6b81611662565b91508282048414831517611e8257611e81611c76565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611ec082611662565b9150611ecb83611662565b925082611edb57611eda611e89565b5b828204905092915050565b5f81519050611ef48161166b565b92915050565b5f60208284031215611f0f57611f0e611600565b5b5f611f1c84828501611ee6565b91505092915050565b7f4d525452546f6b656e3a20696e73756666696369656e74207377617020746f6b5f8201527f656e2062616c616e636500000000000000000000000000000000000000000000602082015250565b5f611f7f602a83611557565b9150611f8a82611f25565b604082019050919050565b5f6020820190508181035f830152611fac81611f73565b9050919050565b7f4d525452546f6b656e3a2063616e6e6f74207265636f766572206f776e20746f5f8201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b5f61200d602483611557565b915061201882611fb3565b604082019050919050565b5f6020820190508181035f83015261203a81612001565b9050919050565b5f6060820190506120545f830186611acd565b6120616020830185611706565b61206e6040830184611706565b949350505050565b5f6040820190506120895f830185611acd565b6120966020830184611706565b9392505050565b5f6060820190506120b05f830186611acd565b6120bd6020830185611acd565b6120ca6040830184611706565b949350505050565b5f6120dc82611662565b91506120e783611662565b92508282019050808211156120ff576120fe611c76565b5b9291505056fea26469706673582212206b27912f130e759cd47878e4eeea1160b64796f4d62598b2dcda23f6b646a8c964736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c806376a66d36116100b6578063a9059cbb1161007a578063a9059cbb14610301578063aeb5556914610331578063ba8d15b21461034f578063dd62ed3e1461036b578063f2fde38b1461039b578063f36f79e0146103b757610135565b806376a66d36146102835780638119c0651461029f5780638980f11f146102a95780638da5cb5b146102c557806395d89b41146102e357610135565b80634a6cc677116100fd5780634a6cc677146101f3578063685731071461020f578063698518e51461022b57806370a0823114610249578063715018a61461027957610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a5578063313ce567146101d5575b5f80fd5b6101416103d5565b60405161014e91906115d7565b60405180910390f35b610171600480360381019061016c9190611695565b610465565b60405161017e91906116ed565b60405180910390f35b61018f610487565b60405161019c9190611715565b60405180910390f35b6101bf60048036038101906101ba919061172e565b610490565b6040516101cc91906116ed565b60405180910390f35b6101dd6104be565b6040516101ea9190611799565b60405180910390f35b61020d600480360381019061020891906119b2565b6104c6565b005b610229600480360381019061022491906119b2565b610573565b005b610233610620565b6040516102409190611715565b60405180910390f35b610263600480360381019061025e9190611a28565b610626565b6040516102709190611715565b60405180910390f35b61028161066b565b005b61029d60048036038101906102989190611a7d565b61067e565b005b6102a76106eb565b005b6102c360048036038101906102be9190611695565b6108c4565b005b6102cd610970565b6040516102da9190611adc565b60405180910390f35b6102eb610998565b6040516102f891906115d7565b60405180910390f35b61031b60048036038101906103169190611695565b610a28565b60405161032891906116ed565b60405180910390f35b610339610a4a565b60405161034691906116ed565b60405180910390f35b61036960048036038101906103649190611af5565b610a5c565b005b61038560048036038101906103809190611b20565b610aba565b6040516103929190611715565b60405180910390f35b6103b560048036038101906103b09190611a28565b610b3c565b005b6103bf610bc0565b6040516103cc9190611adc565b60405180910390f35b6060600380546103e490611b8b565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611b8b565b801561045b5780601f106104325761010080835404028352916020019161045b565b820191905f5260205f20905b81548152906001019060200180831161043e57829003601f168201915b5050505050905090565b5f8061046f610be5565b905061047c818585610bec565b600191505092915050565b5f600254905090565b5f8061049a610be5565b90506104a7858285610bfe565b6104b2858585610c91565b60019150509392505050565b5f6012905090565b6104ce610d81565b8051825114610512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050990611c2b565b60405180910390fd5b5f5b825181101561056e5761055b83828151811061053357610532611c49565b5b602002602001015183838151811061054e5761054d611c49565b5b6020026020010151610e08565b808061056690611ca3565b915050610514565b505050565b61057b610d81565b80518251146105bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b690611d5a565b60405180910390fd5b5f5b825181101561061b576106088382815181106105e0576105df611c49565b5b60200260200101518383815181106105fb576105fa611c49565b5b6020026020010151610e87565b808061061390611ca3565b9150506105c1565b505050565b60075481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610673610d81565b61067c5f610f06565b565b610686610d81565b8260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060085f6101000a81548160ff021916908315150217905550505050565b60085f9054906101000a900460ff16610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611dc2565b60405180910390fd5b5f61074333610626565b90505f8111610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611e2a565b60405180910390fd5b5f670de0b6b3a76400006007548361079f9190611e48565b6107a99190611eb6565b90506107b53383610e08565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050818173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108149190611adc565b602060405180830381865afa15801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611efa565b1015610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90611f95565b60405180910390fd5b6108bf33838373ffffffffffffffffffffffffffffffffffffffff16610fc99092919063ffffffff16565b505050565b6108cc610d81565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190612023565b60405180910390fd5b61096c610945610970565b828473ffffffffffffffffffffffffffffffffffffffff16610fc99092919063ffffffff16565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a790611b8b565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611b8b565b8015610a1e5780601f106109f557610100808354040283529160200191610a1e565b820191905f5260205f20905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b5f80610a32610be5565b9050610a3f818585610c91565b600191505092915050565b60085f9054906101000a900460ff1681565b610a64610d81565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610ab63330848473ffffffffffffffffffffffffffffffffffffffff16611048909392919063ffffffff16565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b44610d81565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bab9190611adc565b60405180910390fd5b610bbd81610f06565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610bf983838360016110ca565b505050565b5f610c098484610aba565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c8b5781811015610c7c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c7393929190612041565b60405180910390fd5b610c8a84848484035f6110ca565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d01575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf89190611adc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d71575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d689190611adc565b60405180910390fd5b610d7c838383611299565b505050565b610d89610be5565b73ffffffffffffffffffffffffffffffffffffffff16610da7610970565b73ffffffffffffffffffffffffffffffffffffffff1614610e0657610dca610be5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dfd9190611adc565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e78575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e6f9190611adc565b60405180910390fd5b610e83825f83611299565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610eee9190611adc565b60405180910390fd5b610f025f8383611299565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611043838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401610ffc929190612076565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114b2565b505050565b6110c4848573ffffffffffffffffffffffffffffffffffffffff166323b872dd86868660405160240161107d9392919061209d565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114b2565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361113a575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111319190611adc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111aa575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111a19190611adc565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611293578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161128a9190611715565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e9578060025f8282546112dd91906120d2565b925050819055506113b7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611372578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161136993929190612041565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fe578060025f8282540392505081905550611448565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a59190611715565b60405180910390a3505050565b5f8060205f8451602086015f885af1806114d1576040513d5f823e3d81fd5b3d92505f519150505f82146114ea576001811415611505565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561154757836040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161153e9190611adc565b60405180910390fd5b50505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611584578082015181840152602081019050611569565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115a98261154d565b6115b38185611557565b93506115c3818560208601611567565b6115cc8161158f565b840191505092915050565b5f6020820190508181035f8301526115ef818461159f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61163182611608565b9050919050565b61164181611627565b811461164b575f80fd5b50565b5f8135905061165c81611638565b92915050565b5f819050919050565b61167481611662565b811461167e575f80fd5b50565b5f8135905061168f8161166b565b92915050565b5f80604083850312156116ab576116aa611600565b5b5f6116b88582860161164e565b92505060206116c985828601611681565b9150509250929050565b5f8115159050919050565b6116e7816116d3565b82525050565b5f6020820190506117005f8301846116de565b92915050565b61170f81611662565b82525050565b5f6020820190506117285f830184611706565b92915050565b5f805f6060848603121561174557611744611600565b5b5f6117528682870161164e565b93505060206117638682870161164e565b925050604061177486828701611681565b9150509250925092565b5f60ff82169050919050565b6117938161177e565b82525050565b5f6020820190506117ac5f83018461178a565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117ec8261158f565b810181811067ffffffffffffffff8211171561180b5761180a6117b6565b5b80604052505050565b5f61181d6115f7565b905061182982826117e3565b919050565b5f67ffffffffffffffff821115611848576118476117b6565b5b602082029050602081019050919050565b5f80fd5b5f61186f61186a8461182e565b611814565b9050808382526020820190506020840283018581111561189257611891611859565b5b835b818110156118bb57806118a7888261164e565b845260208401935050602081019050611894565b5050509392505050565b5f82601f8301126118d9576118d86117b2565b5b81356118e984826020860161185d565b91505092915050565b5f67ffffffffffffffff82111561190c5761190b6117b6565b5b602082029050602081019050919050565b5f61192f61192a846118f2565b611814565b9050808382526020820190506020840283018581111561195257611951611859565b5b835b8181101561197b57806119678882611681565b845260208401935050602081019050611954565b5050509392505050565b5f82601f830112611999576119986117b2565b5b81356119a984826020860161191d565b91505092915050565b5f80604083850312156119c8576119c7611600565b5b5f83013567ffffffffffffffff8111156119e5576119e4611604565b5b6119f1858286016118c5565b925050602083013567ffffffffffffffff811115611a1257611a11611604565b5b611a1e85828601611985565b9150509250929050565b5f60208284031215611a3d57611a3c611600565b5b5f611a4a8482850161164e565b91505092915050565b611a5c816116d3565b8114611a66575f80fd5b50565b5f81359050611a7781611a53565b92915050565b5f805f60608486031215611a9457611a93611600565b5b5f611aa18682870161164e565b9350506020611ab286828701611681565b9250506040611ac386828701611a69565b9150509250925092565b611ad681611627565b82525050565b5f602082019050611aef5f830184611acd565b92915050565b5f60208284031215611b0a57611b09611600565b5b5f611b1784828501611681565b91505092915050565b5f8060408385031215611b3657611b35611600565b5b5f611b438582860161164e565b9250506020611b548582860161164e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ba257607f821691505b602082108103611bb557611bb4611b5e565b5b50919050565b7f4d525452546f6b656e3a20686f6c6465727320616e6420616d6f756e7473206c5f8201527f656e677468206d69736d61746368000000000000000000000000000000000000602082015250565b5f611c15602e83611557565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611cad82611662565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cdf57611cde611c76565b5b600182019050919050565b7f4d525452546f6b656e3a20726563697069656e747320616e6420616d6f756e745f8201527f73206c656e677468206d69736d61746368000000000000000000000000000000602082015250565b5f611d44603183611557565b9150611d4f82611cea565b604082019050919050565b5f6020820190508181035f830152611d7181611d38565b9050919050565b7f4d525452546f6b656e3a207377617070696e672069732064697361626c6564005f82015250565b5f611dac601f83611557565b9150611db782611d78565b602082019050919050565b5f6020820190508181035f830152611dd981611da0565b9050919050565b7f4d525452546f6b656e3a206e6f20746f6b656e7320746f2073776170000000005f82015250565b5f611e14601c83611557565b9150611e1f82611de0565b602082019050919050565b5f6020820190508181035f830152611e4181611e08565b9050919050565b5f611e5282611662565b9150611e5d83611662565b9250828202611e6b81611662565b91508282048414831517611e8257611e81611c76565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611ec082611662565b9150611ecb83611662565b925082611edb57611eda611e89565b5b828204905092915050565b5f81519050611ef48161166b565b92915050565b5f60208284031215611f0f57611f0e611600565b5b5f611f1c84828501611ee6565b91505092915050565b7f4d525452546f6b656e3a20696e73756666696369656e74207377617020746f6b5f8201527f656e2062616c616e636500000000000000000000000000000000000000000000602082015250565b5f611f7f602a83611557565b9150611f8a82611f25565b604082019050919050565b5f6020820190508181035f830152611fac81611f73565b9050919050565b7f4d525452546f6b656e3a2063616e6e6f74207265636f766572206f776e20746f5f8201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b5f61200d602483611557565b915061201882611fb3565b604082019050919050565b5f6020820190508181035f83015261203a81612001565b9050919050565b5f6060820190506120545f830186611acd565b6120616020830185611706565b61206e6040830184611706565b949350505050565b5f6040820190506120895f830185611acd565b6120966020830184611706565b9392505050565b5f6060820190506120b05f830186611acd565b6120bd6020830185611acd565b6120ca6040830184611706565b949350505050565b5f6120dc82611662565b91506120e783611662565b92508282019050808211156120ff576120fe611c76565b5b9291505056fea26469706673582212206b27912f130e759cd47878e4eeea1160b64796f4d62598b2dcda23f6b646a8c964736f6c63430008140033

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.