ETH Price: $3,352.91 (-0.11%)
Gas: 4.49 Gwei
 

Overview

Max Total Supply

9,510,000,000 $MERA

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: $MERA
Balance
5,919,228,623.13334958324995749 $MERA

Value
$0.00
0x95320d2fc0bd860e1fe8955875bc7ac7385d50f6
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:
MERA

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
london EvmVersion, MIT license
File 1 of 6 : MERA.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
    Website: https://meratoken.com/

    X account: https://x.com/merameratoken
*/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";


contract MERA is IERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;
    mapping(address => mapping (address => uint256)) private _allowances;
    mapping(address => bool) public isBot;
    mapping(address => bool) public liqProviders;

    uint256 private _totalSupply;
    uint256 private inittotalSupply = 10000000000000000000000000000;
    uint8 private _decimals;
    string private _symbol;
    string private _name;

    address public deployer;
    bool public transferApproval = false;

    uint256 public releaseTime = 1722891600;
    uint256 public releaseTeamTime = releaseTime + 2160666;
    uint256 public releaseStakingTime = releaseTime + 2592000;
    uint256 public releaseDevelopmentTime = releaseTime + 7776000;

    constructor() {
        _name = "Mera Mera";
        _symbol = "$MERA";
        _decimals = 18;
        _totalSupply = 10000000000000000000000000000;
        _balances[address(this)] = _totalSupply;
        deployer = _msgSender();

        emit Transfer(address(0), address(this), _totalSupply);
    }

    /**
    * @dev Returns the erc token owner.
    */
    function getOwner() external view returns (address) {
        return owner();
    }

    /**
    * @dev Returns the token decimals.
    */
    function decimals() external view returns (uint8) {
        return _decimals;
    }

    /**
    * @dev Returns the token symbol.
    */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

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

    /**
    * @dev See {ERC20-totalSupply}.
    */
    function totalSupply() external override view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev See {ERC20-balanceOf}.
    */
    function balanceOf(address account) external override view returns (uint256) {
        return _balances[account];
    }

    /**
    * @dev See {ERC20-transfer}.
    *
    * Requirements:
    *
    * - `recipient` cannot be the zero address.
    * - the caller must have a balance of at least `amount`.
    */
    function transfer(address recipient, uint256 amount) external override returns (bool) {
        require(!isBot[_msgSender()] || liqProviders[_msgSender()], "You are a bot");
        require(transferApproval || liqProviders[_msgSender()], "Can't transfer MERA tokens");

        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
    * @dev See {ERC20-approve}.
    *
    * Requirements:
    *
    * - `spender` cannot be the zero address.
    */
    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
    * @dev See {ERC20-transferFrom}.
    *
    * Emits an {Approval} event indicating the updated allowance. This is not
    * required by the EIP. See the note at the beginning of {ERC20};
    *
    * Requirements:
    * - `sender` and `recipient` cannot be the zero address.
    * - `sender` must have a balance of at least `amount`.
    * - the caller must have allowance for `sender`'s tokens of at least
    * `amount`.
    */
    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        require(!isBot[_msgSender()] || liqProviders[_msgSender()], "You are a bot");
        require(transferApproval || liqProviders[_msgSender()], "Can't transfer MERA tokens");

        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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 {ERC20-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `spender` cannot be the zero address.
    */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {ERC20-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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
    * @dev Destroys `amount` tokens and assigns them to `_msgSender()`, reducing
    * the total supply.
    *
    * Requirements
    *
    * - `_msgSender()` must be the token owner
    */
    function burn(uint256 amount) public returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }

    /**
    * @dev Moves tokens `amount` from `sender` to `recipient`.
    *
    * This is 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:
    *
    * - `sender` cannot be the zero address.
    * - `recipient` cannot be the zero address.
    * - `sender` must have a balance of at least `amount`.
    */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
    * @dev Destroys `amount` tokens from `account`, reducing the
    * total supply.
    *
    * Emits a {Transfer} event with `to` set to the zero address.
    *
    * Requirements
    *
    * - `account` cannot be the zero address.
    * - `account` must have at least `amount` tokens.
    */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
    * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
    *
    * This is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
    * from the caller's allowance.
    *
    * See {_burn} and {_approve}.
    */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
    
    /**
    * setBot
    * @dev function that sets blacklisted address
    **/
    function setBot(address _addr, bool _value) external onlyOwner {
        require(isBot[_addr] != _value, "Not changed");
        isBot[_addr] = _value;
    }

    /**
    * setProviders
    * @dev function that sets blacklisted address
    **/
    function setProviders(address _addr, bool _value) external onlyOwner {
        require(liqProviders[_addr] != _value, "Not changed");
        liqProviders[_addr] = _value;
    }

    /**
    * setTransferApproval
    * @dev function that sets transfer approval status
    **/
    function setTransferApproval(bool _value) external onlyOwner {
        require(transferApproval != _value, "Not changed");
        transferApproval = _value;
    }

    /**
    * setTeamTime
    * @dev function that sets release time
    **/
    function setReleaseTime(uint256 _releaseTime) external {
        require(_msgSender() == deployer, "You are not deployer address");
        releaseTime = _releaseTime;
    }

    /**
    * Release tokens for Marketing
    **/
    function releaseMarketingTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        uint256 amount = _totalSupply.mul(5).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for Exchange
    **/
    function releaseExchangeTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        uint256 amount = _totalSupply.mul(5).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for Investors
    **/
    function releaseInvestorTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        uint256 amount = _totalSupply.mul(5).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for Team
    **/
    function releaseTeamTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        require(block.timestamp >= releaseTeamTime, "Release time not reached");

        uint256 amount = _totalSupply.mul(10).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for Staking Reward
    **/
    function releaseStakingTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        require(block.timestamp >= releaseStakingTime, "Release time not reached");

        uint256 amount = _totalSupply.mul(10).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for Development
    **/
    function releaseDevelopmentTokens() external {
        require(_msgSender() == deployer, "You are not deployer address");
        require(block.timestamp >= releaseDevelopmentTime, "Release time not reached");

        uint256 amount = _totalSupply.mul(5).div(100);
        _transfer(address(this), deployer, amount);
    }

    /**
    * Release tokens for adding liquidity
    **/
    function releaseLpTokens() external onlyOwner {
        uint256 amount = _totalSupply.mul(60).div(100);
        _transfer(address(this), _msgSender(), amount);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 6 : 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 6 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liqProviders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseDevelopmentTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseDevelopmentTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseExchangeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseInvestorTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseMarketingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseStakingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseStakingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseTeamTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseTeamTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_releaseTime","type":"uint256"}],"name":"setReleaseTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTransferApproval","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60806040526b204fce5e3e25026110000000600655600a805460ff60a01b191690556366b13d50600b8190556200003a906220f81a620001c3565b600c55600b546200004f9062278d00620001c3565b600d55600b5462000064906276a700620001c3565b600e553480156200007457600080fd5b50620000803362000173565b604080518082019091526009808252684d657261204d65726160b81b602083015290620000ae908262000290565b50604080518082019091526005815264244d45524160d81b6020820152600890620000da908262000290565b506007805460ff191660121790556b204fce5e3e25026110000000600581905530600090815260016020526040902055620001123390565b600a80546001600160a01b0319166001600160a01b039290921691909117905560055460405190815230906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36200035c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80820180821115620001e557634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021657607f821691505b6020821081036200023757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028b57600081815260208120601f850160051c81016020861015620002665750805b601f850160051c820191505b81811015620002875782815560010162000272565b5050505b505050565b81516001600160401b03811115620002ac57620002ac620001eb565b620002c481620002bd845462000201565b846200023d565b602080601f831160018114620002fc5760008415620002e35750858301515b600019600386901b1c1916600185901b17855562000287565b600085815260208120601f198616915b828110156200032d578886015182559484019460019091019084016200030c565b50858210156200034c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61168d806200036c6000396000f3fe608060405234801561001057600080fd5b50600436106102415760003560e01c8063893d20e811610145578063b91d4001116100bd578063dc31adee1161008c578063e0e2cc3e11610071578063e0e2cc3e14610495578063ee3eb74e1461049d578063f2fde38b146104c057600080fd5b8063dc31adee146102b0578063dd62ed3e1461045c57600080fd5b8063b91d400114610424578063d186ab6a1461042d578063d5f3948814610441578063d911551e1461045457600080fd5b806395d89b4111610114578063a457c2d7116100f9578063a457c2d7146103eb578063a9059cbb146103fe578063ab05bfff1461041157600080fd5b806395d89b41146103d05780639d181d44146103d857600080fd5b8063893d20e814610392578063894c25fb146102b05780638bfcec14146103b75780638da5cb5b146103bf57600080fd5b8063342aa8b5116101d857806370a08231116101a757806381a524d31161018c57806381a524d31461036d57806383cd83ae14610376578063868873b01461037f57600080fd5b806370a082311461033c578063715018a61461036557600080fd5b8063342aa8b5146102e057806339509351146102f35780633bbac5791461030657806342966c681461032957600080fd5b806318160ddd1161021457806318160ddd146102a85780631b9a4ed7146102b057806323b872dd146102b8578063313ce567146102cb57600080fd5b806306fdde0314610246578063095ea7b3146102645780631084b2701461028757806314c411c71461029e575b600080fd5b61024e6104d3565b60405161025b919061137f565b60405180910390f35b6102776102723660046113e9565b610565565b604051901515815260200161025b565b610290600c5481565b60405190815260200161025b565b6102a661057c565b005b600554610290565b6102a6610677565b6102776102c6366004611413565b6106f6565b60075460405160ff909116815260200161025b565b6102a66102ee36600461145f565b61083a565b6102776103013660046113e9565b6108cb565b610277610314366004611492565b60036020526000908152604090205460ff1681565b6102776103373660046114ad565b610901565b61029061034a366004611492565b6001600160a01b031660009081526001602052604090205490565b6102a6610915565b610290600e5481565b610290600d5481565b6102a661038d36600461145f565b610929565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161025b565b6102a66109ba565b6000546001600160a01b031661039f565b61024e610a6f565b6102a66103e63660046114c6565b610a7e565b6102776103f93660046113e9565b610b0f565b61027761040c3660046113e9565b610b5e565b6102a661041f3660046114ad565b610c46565b610290600b5481565b600a5461027790600160a01b900460ff1681565b600a5461039f906001600160a01b031681565b6102a6610cae565b61029061046a3660046114e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102a6610d63565b6102776104ab366004611492565b60046020526000908152604090205460ff1681565b6102a66104ce366004611492565b610d95565b6060600980546104e29061150b565b80601f016020809104026020016040519081016040528092919081815260200182805461050e9061150b565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000610572338484610e22565b5060015b92915050565b600a546001600160a01b0316336001600160a01b0316146105e45760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064015b60405180910390fd5b600c544210156106365760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b60006106596064610653600a600554610f7b90919063ffffffff16565b90610f8e565b600a549091506106749030906001600160a01b031683610f9a565b50565b600a546001600160a01b0316336001600160a01b0316146106da5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b6000610659606461065360058054610f7b90919063ffffffff16565b3360009081526003602052604081205460ff16158061072457503360009081526004602052604090205460ff165b6107605760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016105db565b600a54600160a01b900460ff168061078757503360009081526004602052604090205460ff165b6107d35760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016105db565b6107de848484610f9a565b610830843361082b8560405180606001604052806028815260200161160b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611152565b610e22565b5060019392505050565b61084261117e565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036108a05760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161057291859061082b90866111d8565b600061090d33836111e4565b506001919050565b61091d61117e565b610927600061130b565b565b61093161117e565b6001600160a01b03821660009081526004602052604090205481151560ff90911615150361098f5760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b600a546001600160a01b0316336001600160a01b031614610a1d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600d544210156106365760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b6060600880546104e29061150b565b610a8661117e565b801515600a60149054906101000a900460ff16151503610ad65760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b600a8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610572338461082b85604051806060016040528060258152602001611633602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611152565b3360009081526003602052604081205460ff161580610b8c57503360009081526004602052604090205460ff165b610bc85760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016105db565b600a54600160a01b900460ff1680610bef57503360009081526004602052604090205460ff165b610c3b5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016105db565b610572338484610f9a565b600a546001600160a01b0316336001600160a01b031614610ca95760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600b55565b600a546001600160a01b0316336001600160a01b031614610d115760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600e544210156106da5760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b610d6b61117e565b6000610d886064610653603c600554610f7b90919063ffffffff16565b9050610674303383610f9a565b610d9d61117e565b6001600160a01b038116610e195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105db565b6106748161130b565b6001600160a01b038316610e9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610f87828461155b565b9392505050565b6000610f87828461157a565b6001600160a01b0383166110165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b0382166110925760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105db565b6110cf816040518060600160405280602681526020016115e5602691396001600160a01b0386166000908152600160205260409020549190611152565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546110fe90826111d8565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f6e9085815260200190565b600081848411156111765760405162461bcd60e51b81526004016105db919061137f565b505050900390565b6000546001600160a01b031633146109275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105db565b6000610f87828461159c565b6001600160a01b0382166112605760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105db565b61129d816040518060600160405280602281526020016115c3602291396001600160a01b0385166000908152600160205260409020549190611152565b6001600160a01b0383166000908152600160205260409020556005546112c39082611373565b6005556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8782846115af565b600060208083528351808285015260005b818110156113ac57858101830151858201604001528201611390565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146113e457600080fd5b919050565b600080604083850312156113fc57600080fd5b611405836113cd565b946020939093013593505050565b60008060006060848603121561142857600080fd5b611431846113cd565b925061143f602085016113cd565b9150604084013590509250925092565b803580151581146113e457600080fd5b6000806040838503121561147257600080fd5b61147b836113cd565b91506114896020840161144f565b90509250929050565b6000602082840312156114a457600080fd5b610f87826113cd565b6000602082840312156114bf57600080fd5b5035919050565b6000602082840312156114d857600080fd5b610f878261144f565b600080604083850312156114f457600080fd5b6114fd836113cd565b9150611489602084016113cd565b600181811c9082168061151f57607f821691505b60208210810361153f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561157557611575611545565b500290565b60008261159757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057657610576611545565b818103818111156105765761057661154556fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122013f8af32f8c118900018287cdef692936e55ff31fcde73edf9bbbace1943bc6164736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102415760003560e01c8063893d20e811610145578063b91d4001116100bd578063dc31adee1161008c578063e0e2cc3e11610071578063e0e2cc3e14610495578063ee3eb74e1461049d578063f2fde38b146104c057600080fd5b8063dc31adee146102b0578063dd62ed3e1461045c57600080fd5b8063b91d400114610424578063d186ab6a1461042d578063d5f3948814610441578063d911551e1461045457600080fd5b806395d89b4111610114578063a457c2d7116100f9578063a457c2d7146103eb578063a9059cbb146103fe578063ab05bfff1461041157600080fd5b806395d89b41146103d05780639d181d44146103d857600080fd5b8063893d20e814610392578063894c25fb146102b05780638bfcec14146103b75780638da5cb5b146103bf57600080fd5b8063342aa8b5116101d857806370a08231116101a757806381a524d31161018c57806381a524d31461036d57806383cd83ae14610376578063868873b01461037f57600080fd5b806370a082311461033c578063715018a61461036557600080fd5b8063342aa8b5146102e057806339509351146102f35780633bbac5791461030657806342966c681461032957600080fd5b806318160ddd1161021457806318160ddd146102a85780631b9a4ed7146102b057806323b872dd146102b8578063313ce567146102cb57600080fd5b806306fdde0314610246578063095ea7b3146102645780631084b2701461028757806314c411c71461029e575b600080fd5b61024e6104d3565b60405161025b919061137f565b60405180910390f35b6102776102723660046113e9565b610565565b604051901515815260200161025b565b610290600c5481565b60405190815260200161025b565b6102a661057c565b005b600554610290565b6102a6610677565b6102776102c6366004611413565b6106f6565b60075460405160ff909116815260200161025b565b6102a66102ee36600461145f565b61083a565b6102776103013660046113e9565b6108cb565b610277610314366004611492565b60036020526000908152604090205460ff1681565b6102776103373660046114ad565b610901565b61029061034a366004611492565b6001600160a01b031660009081526001602052604090205490565b6102a6610915565b610290600e5481565b610290600d5481565b6102a661038d36600461145f565b610929565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161025b565b6102a66109ba565b6000546001600160a01b031661039f565b61024e610a6f565b6102a66103e63660046114c6565b610a7e565b6102776103f93660046113e9565b610b0f565b61027761040c3660046113e9565b610b5e565b6102a661041f3660046114ad565b610c46565b610290600b5481565b600a5461027790600160a01b900460ff1681565b600a5461039f906001600160a01b031681565b6102a6610cae565b61029061046a3660046114e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102a6610d63565b6102776104ab366004611492565b60046020526000908152604090205460ff1681565b6102a66104ce366004611492565b610d95565b6060600980546104e29061150b565b80601f016020809104026020016040519081016040528092919081815260200182805461050e9061150b565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000610572338484610e22565b5060015b92915050565b600a546001600160a01b0316336001600160a01b0316146105e45760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064015b60405180910390fd5b600c544210156106365760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b60006106596064610653600a600554610f7b90919063ffffffff16565b90610f8e565b600a549091506106749030906001600160a01b031683610f9a565b50565b600a546001600160a01b0316336001600160a01b0316146106da5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b6000610659606461065360058054610f7b90919063ffffffff16565b3360009081526003602052604081205460ff16158061072457503360009081526004602052604090205460ff165b6107605760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016105db565b600a54600160a01b900460ff168061078757503360009081526004602052604090205460ff165b6107d35760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016105db565b6107de848484610f9a565b610830843361082b8560405180606001604052806028815260200161160b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611152565b610e22565b5060019392505050565b61084261117e565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036108a05760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161057291859061082b90866111d8565b600061090d33836111e4565b506001919050565b61091d61117e565b610927600061130b565b565b61093161117e565b6001600160a01b03821660009081526004602052604090205481151560ff90911615150361098f5760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b600a546001600160a01b0316336001600160a01b031614610a1d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600d544210156106365760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b6060600880546104e29061150b565b610a8661117e565b801515600a60149054906101000a900460ff16151503610ad65760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105db565b600a8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610572338461082b85604051806060016040528060258152602001611633602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611152565b3360009081526003602052604081205460ff161580610b8c57503360009081526004602052604090205460ff165b610bc85760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016105db565b600a54600160a01b900460ff1680610bef57503360009081526004602052604090205460ff165b610c3b5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016105db565b610572338484610f9a565b600a546001600160a01b0316336001600160a01b031614610ca95760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600b55565b600a546001600160a01b0316336001600160a01b031614610d115760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206465706c6f79657220616464726573730000000060448201526064016105db565b600e544210156106da5760405162461bcd60e51b815260206004820152601860248201527f52656c656173652074696d65206e6f742072656163686564000000000000000060448201526064016105db565b610d6b61117e565b6000610d886064610653603c600554610f7b90919063ffffffff16565b9050610674303383610f9a565b610d9d61117e565b6001600160a01b038116610e195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105db565b6106748161130b565b6001600160a01b038316610e9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610f87828461155b565b9392505050565b6000610f87828461157a565b6001600160a01b0383166110165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105db565b6001600160a01b0382166110925760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105db565b6110cf816040518060600160405280602681526020016115e5602691396001600160a01b0386166000908152600160205260409020549190611152565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546110fe90826111d8565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f6e9085815260200190565b600081848411156111765760405162461bcd60e51b81526004016105db919061137f565b505050900390565b6000546001600160a01b031633146109275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105db565b6000610f87828461159c565b6001600160a01b0382166112605760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105db565b61129d816040518060600160405280602281526020016115c3602291396001600160a01b0385166000908152600160205260409020549190611152565b6001600160a01b0383166000908152600160205260409020556005546112c39082611373565b6005556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8782846115af565b600060208083528351808285015260005b818110156113ac57858101830151858201604001528201611390565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146113e457600080fd5b919050565b600080604083850312156113fc57600080fd5b611405836113cd565b946020939093013593505050565b60008060006060848603121561142857600080fd5b611431846113cd565b925061143f602085016113cd565b9150604084013590509250925092565b803580151581146113e457600080fd5b6000806040838503121561147257600080fd5b61147b836113cd565b91506114896020840161144f565b90509250929050565b6000602082840312156114a457600080fd5b610f87826113cd565b6000602082840312156114bf57600080fd5b5035919050565b6000602082840312156114d857600080fd5b610f878261144f565b600080604083850312156114f457600080fd5b6114fd836113cd565b9150611489602084016113cd565b600181811c9082168061151f57607f821691505b60208210810361153f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561157557611575611545565b500290565b60008261159757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057657610576611545565b818103818111156105765761057661154556fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122013f8af32f8c118900018287cdef692936e55ff31fcde73edf9bbbace1943bc6164736f6c63430008100033

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.