ETH Price: $2,545.46 (+2.42%)

Token

Sun (RA)
 

Overview

Max Total Supply

1,000,000,000 RA

Holders

451

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.460546707 RA

Value
$0.00
0x3300dbf763154a8f26fb8f82b82e0ff4b0a2f18c
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:
Sun

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : Sun.sol
pragma solidity ^0.8.23;

import "./Erc20.sol";
import "./ISunra.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";

contract Ownable {
    address _owner;

    constructor() {
        _owner = msg.sender;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "caller is not the owner");
        _;
    }

    function owner() external view virtual returns (address) {
        return _owner;
    }

    function renounceOwnership(address newOwner) external onlyOwner {
        _owner = newOwner;
    }
}

contract PoolCreatableErc20 is ERC20 {
    uint256 public constant startTotalSupply = 1e9 * (10 ** _decimals);
    IUniswapV2Router02 constant uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address internal pair;
    uint256 internal _startTime;
    bool internal _inSwap;

    constructor(
        string memory name_,
        string memory symbol_
    ) ERC20(name_, symbol_) {}

    modifier lockTheSwap() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    function createPair() external payable lockTheSwap {
        pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _mint(address(this), startTotalSupply);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            startTotalSupply,
            0,
            0,
            msg.sender,
            block.timestamp
        );
        _startTime = block.timestamp;
    }
}

contract Sun is Ownable, PoolCreatableErc20 {
    uint256 constant _startMaxBuyCount = (startTotalSupply * 25) / 10000;
    uint256 constant _addMaxBuyPercentPerSec = 1; // add 0.01%/second
    ISunra public immutable sunra;
    uint256 public taxPercent = 10;
    uint256 public tokenTaxPercent = 20; // noe of this is starts destruction on take

    constructor(address sunra_) PoolCreatableErc20("Sun", "RA") {
        sunra = ISunra(sunra_);
    }

    function changeTaxPercent(uint256 percent) external onlyOwner {
        require(percent <= 15);
        taxPercent = percent;
    }

    function changeTokenTaxPercent(uint256 percent) external onlyOwner {
        require(percent <= 100);
        tokenTaxPercent = percent;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (_inSwap) {
            super._transfer(from, to, amount);
            return;
        }

        if (to == address(0)) {
            require(
                _balances[from] >= amount,
                "ERC20: transfer amount exceeds balance"
            );
            unchecked {
                _balances[from] -= amount;
                _totalSupply -= amount;
            }
            emit Transfer(from, to, amount);
            return;
        }

        if (from == pair) {
            transferFromPair(to, amount);
            sunra.createNewLands();
            return;
        }

        if (to == pair) {
            transferToPair(from, amount);
            sunra.createNewLands();
            return;
        }

        super._transfer(from, to, amount);
    }

    function transferFromPair(address to, uint256 amount) private {
        require(amount <= maximumBuyCount(), "maximum buy count limit");
        uint256 tax = (amount * taxPercent) / 100;
        uint256 ercFee = (tax * tokenTaxPercent) / 100;
        uint256 ethFee = tax - ercFee;
        if (ercFee > 0) super._transfer(pair, address(sunra), ercFee);
        if (ethFee > 0) super._transfer(pair, address(this), ethFee);
        super._transfer(pair, to, amount - ercFee - ethFee);
    }

    function transferToPair(address from, uint256 amount) private {
        uint256 tax = (amount * taxPercent) / 100;
        uint256 ercFee = (tax * tokenTaxPercent) / 100;
        uint256 ethFee = tax - ercFee;

        uint256 swapCount = balanceOf(address(this));
        uint256 maxSwapCount = 2 * amount;
        if (swapCount > maxSwapCount) swapCount = maxSwapCount;
        _swapTokensForEth(swapCount);
        if (ercFee > 0) super._transfer(from, address(sunra), ercFee);
        if (ethFee > 0) super._transfer(from, address(this), ethFee);
        super._transfer(from, pair, amount - ercFee - ethFee);
    }

    function _swapTokensForEth(uint256 tokenAmount) internal lockTheSwap {
        if (tokenAmount == 0) return;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        // make the swap
        uniswapV2Router.swapExactTokensForETH(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(sunra),
            block.timestamp
        );
    }

    function burned() public view returns (uint256) {
        return startTotalSupply - totalSupply();
    }

    function maximumBuyCount() public view returns (uint256) {
        if (pair == address(0)) return startTotalSupply;
        uint256 count = _startMaxBuyCount +
            (startTotalSupply *
                (block.timestamp - _startTime) *
                _addMaxBuyPercentPerSec) /
            10000;
        if (count > startTotalSupply) count = startTotalSupply;
        return count;
    }

    function maximumBuyCountWithoutDecimals() public view returns (uint256) {
        return maximumBuyCount() / (10 ** _decimals);
    }
}

File 2 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 3 of 8 : 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 4 of 8 : 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 5 of 8 : Erc20.sol
pragma solidity ^0.8.23;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;
    uint8 internal constant _decimals = 9;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 pure returns (uint8) {
        return _decimals;
    }

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address owner,
        address spender
    ) public view virtual override 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 override 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 override 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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, 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(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Erases `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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), 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 6 of 8 : ISunra.sol
pragma solidity ^0.8.23;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface ISunra {
    function token1() external view returns (IERC20);

    function token2() external view returns (IERC20);

    function createNewLands() external;
}

File 7 of 8 : IUniswapV2Factory.sol
pragma solidity ^0.8.23;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 8 of 8 : IUniswapV2Router02.sol
pragma solidity ^0.8.23;

interface IUniswapV2Router02 {
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function getReserves(
        address factory,
        address tokenA,
        address tokenB
    ) external view returns (uint reserveA, uint reserveB);

    function getAmountsIn(
        uint amountOut,
        address[] memory path
    ) external view returns (uint[] memory amounts);

    function getAmountsOut(
        uint amountIn,
        address[] memory path
    ) external view returns (uint[] memory amounts);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"sunra_","type":"address"}],"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":"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":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"changeTokenTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"maximumBuyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumBuyCountWithoutDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sunra","outputs":[{"internalType":"contract ISunra","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60a0604052600a6009556014600a553480156200001b57600080fd5b5060405162001a6538038062001a658339810160408190526200003e91620000bd565b604080518082018252600381526229bab760e91b60208083019190915282518084019093526002835261524160f01b90830152600080546001600160a01b03191633179055908181600462000094838262000196565b506005620000a3828262000196565b5050506001600160a01b0390921660805250620002629050565b600060208284031215620000d057600080fd5b81516001600160a01b0381168114620000e857600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011a57607f821691505b6020821081036200013b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000191576000816000526020600020601f850160051c810160208610156200016c5750805b601f850160051c820191505b818110156200018d5782815560010162000178565b5050505b505050565b81516001600160401b03811115620001b257620001b2620000ef565b620001ca81620001c3845462000105565b8462000141565b602080601f831160018114620002025760008415620001e95750858301515b600019600386901b1c1916600185901b1785556200018d565b600085815260208120601f198616915b82811015620002335788860151825594840194600190910190840162000212565b5085821015620002525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516117cb6200029a6000396000818161015701528181610d380152818161105e0152818161115b01526112ed01526117cb6000f3fe6080604052600436106101405760003560e01c806373f42561116100b6578063a9059cbb1161006f578063a9059cbb14610370578063af58c64714610390578063c08a5740146103a5578063dd62ed3e146103c5578063e2a2617a146103e5578063fc06b26a146103fa57600080fd5b806373f42561146102ea5780637541f41c146102ff5780638da5cb5b1461031557806395d89b41146103335780639e78fb4f14610348578063a457c2d71461035057600080fd5b806323b872dd1161010857806323b872dd146102205780632ae1bb6714610240578063313ce5671461025657806338bf3cfa14610272578063395093511461029457806370a08231146102b457600080fd5b806301f3d24f1461014557806306fdde0314610196578063095ea7b3146101b857806313a4486c146101e857806318160ddd1461020b575b600080fd5b34801561015157600080fd5b506101797f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101a257600080fd5b506101ab61041a565b60405161018d9190611358565b3480156101c457600080fd5b506101d86101d33660046113bf565b6104ac565b604051901515815260200161018d565b3480156101f457600080fd5b506101fd6104c6565b60405190815260200161018d565b34801561021757600080fd5b506003546101fd565b34801561022c57600080fd5b506101d861023b3660046113eb565b6104e3565b34801561024c57600080fd5b506101fd600a5481565b34801561026257600080fd5b506040516009815260200161018d565b34801561027e57600080fd5b5061029261028d36600461142c565b610507565b005b3480156102a057600080fd5b506101d86102af3660046113bf565b61055c565b3480156102c057600080fd5b506101fd6102cf36600461142c565b6001600160a01b031660009081526001602052604090205490565b3480156102f657600080fd5b506101fd61057e565b34801561030b57600080fd5b506101fd60095481565b34801561032157600080fd5b506000546001600160a01b0316610179565b34801561033f57600080fd5b506101ab6105b2565b6102926105c1565b34801561035c57600080fd5b506101d861036b3660046113bf565b61086e565b34801561037c57600080fd5b506101d861038b3660046113bf565b6108e9565b34801561039c57600080fd5b506101fd6108f7565b3480156103b157600080fd5b506102926103c0366004611450565b610917565b3480156103d157600080fd5b506101fd6103e0366004611469565b610954565b3480156103f157600080fd5b506101fd61097f565b34801561040657600080fd5b50610292610415366004611450565b610a7a565b606060048054610429906114a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610455906114a2565b80156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b6000336104ba818585610ab7565b60019150505b92915050565b6104d26009600a6115d6565b6104e090633b9aca006115e5565b81565b6000336104f1858285610bdc565b6104fc858585610c56565b506001949350505050565b6000546001600160a01b0316331461053a5760405162461bcd60e51b8152600401610531906115fc565b60405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104ba81858561056f8383610954565b6105799190611633565b610ab7565b600061058960035490565b6105956009600a6115d6565b6105a390633b9aca006115e5565b6105ad9190611646565b905090565b606060058054610429906114a2565b6008805460ff191660011790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa15801561061e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106429190611659565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c79190611659565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610714573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107389190611659565b600680546001600160a01b0319166001600160a01b039290921691909117905561077b306107686009600a6115d6565b61077690633b9aca006115e5565b610dd9565b61079c30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610ab7565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d71934306107c46009600a6115d6565b6107d290633b9aca006115e5565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610836573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061085b9190611676565b505042600755506008805460ff19169055565b6000338161087c8286610954565b9050838110156108dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610531565b6104fc8286868403610ab7565b6000336104ba818585610c56565b60006109056009600a6115d6565b61090d61097f565b6105ad91906116a4565b6000546001600160a01b031633146109415760405162461bcd60e51b8152600401610531906115fc565b606481111561094f57600080fd5b600a55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6006546000906001600160a01b03166109ac5761099e6009600a6115d6565b6105ad90633b9aca006115e5565b60006127106001600754426109c19190611646565b6109cd6009600a6115d6565b6109db90633b9aca006115e5565b6109e591906115e5565b6109ef91906115e5565b6109f991906116a4565b612710610a086009600a6115d6565b610a1690633b9aca006115e5565b610a219060196115e5565b610a2b91906116a4565b610a359190611633565b9050610a436009600a6115d6565b610a5190633b9aca006115e5565b811115610a7557610a646009600a6115d6565b610a7290633b9aca006115e5565b90505b919050565b6000546001600160a01b03163314610aa45760405162461bcd60e51b8152600401610531906115fc565b600f811115610ab257600080fd5b600955565b6001600160a01b038316610b195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610531565b6001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610531565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610be88484610954565b90506000198114610c505781811015610c435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610531565b610c508484848403610ab7565b50505050565b60085460ff1615610c7157610c6c838383610e9a565b505050565b6001600160a01b038216610d16576001600160a01b038316600090815260016020526040902054811115610cb75760405162461bcd60e51b8152600401610531906116c6565b6001600160a01b03808416600081815260016020526040908190208054859003905560038054859003905551918416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bcf9085815260200190565b6006546001600160a01b0390811690841603610dae57610d368282610fa5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663670565866040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0390811690831603610dce57610d3683826110d2565b610c6c838383610e9a565b6001600160a01b038216610e2f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610531565b8060036000828254610e419190611633565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610efe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610531565b6001600160a01b03831660009081526001602052604090205481811015610f375760405162461bcd60e51b8152600401610531906116c6565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f979086815260200190565b60405180910390a350505050565b610fad61097f565b811115610ffc5760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d69740000000000000000006044820152606401610531565b600060646009548361100e91906115e5565b61101891906116a4565b905060006064600a548361102c91906115e5565b61103691906116a4565b905060006110448284611646565b9050811561108357600654611083906001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000084610e9a565b80156110a0576006546110a0906001600160a01b03163083610e9a565b6006546110cb906001600160a01b031686836110bc8689611646565b6110c69190611646565b610e9a565b5050505050565b60006064600954836110e491906115e5565b6110ee91906116a4565b905060006064600a548361110291906115e5565b61110c91906116a4565b9050600061111a8284611646565b306000908152600160205260408120549192506111388660026115e5565b905080821115611146578091505b61114f826111ae565b831561118057611180877f000000000000000000000000000000000000000000000000000000000000000086610e9a565b821561119157611191873085610e9a565b600654610da59088906001600160a01b0316856110bc888b611646565b6008805460ff19166001179055801561134b5760408051600280825260608201835260009260208301908036833701905050905030816000815181106111f6576111f661170c565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190611659565b8160018151811061129f5761129f61170c565b6001600160a01b03909216602092830291909101909101526040516318cbafe560e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d906318cbafe59061131790859060009086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611722565b600060405180830381600087803b15801561133157600080fd5b505af1158015611345573d6000803e3d6000fd5b50505050505b506008805460ff19169055565b60006020808352835180602085015260005b818110156113865785810183015185820160400152820161136a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113bc57600080fd5b50565b600080604083850312156113d257600080fd5b82356113dd816113a7565b946020939093013593505050565b60008060006060848603121561140057600080fd5b833561140b816113a7565b9250602084013561141b816113a7565b929592945050506040919091013590565b60006020828403121561143e57600080fd5b8135611449816113a7565b9392505050565b60006020828403121561146257600080fd5b5035919050565b6000806040838503121561147c57600080fd5b8235611487816113a7565b91506020830135611497816113a7565b809150509250929050565b600181811c908216806114b657607f821691505b6020821081036114d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561152d578160001904821115611513576115136114dc565b8085161561152057918102915b93841c93908002906114f7565b509250929050565b600082611544575060016104c0565b81611551575060006104c0565b816001811461156757600281146115715761158d565b60019150506104c0565b60ff841115611582576115826114dc565b50506001821b6104c0565b5060208310610133831016604e8410600b84101617156115b0575081810a6104c0565b6115ba83836114f2565b80600019048211156115ce576115ce6114dc565b029392505050565b600061144960ff841683611535565b80820281158282048414176104c0576104c06114dc565b60208082526017908201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b808201808211156104c0576104c06114dc565b818103818111156104c0576104c06114dc565b60006020828403121561166b57600080fd5b8151611449816113a7565b60008060006060848603121561168b57600080fd5b8351925060208401519150604084015190509250925092565b6000826116c157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156117745784516001600160a01b03168352938301939183019160010161174f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203e648dd7a8b0b83f6d7e3d7de6ff71a1724879174a036e3ceead6fc0dd5d758f64736f6c634300081700330000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b5

Deployed Bytecode

0x6080604052600436106101405760003560e01c806373f42561116100b6578063a9059cbb1161006f578063a9059cbb14610370578063af58c64714610390578063c08a5740146103a5578063dd62ed3e146103c5578063e2a2617a146103e5578063fc06b26a146103fa57600080fd5b806373f42561146102ea5780637541f41c146102ff5780638da5cb5b1461031557806395d89b41146103335780639e78fb4f14610348578063a457c2d71461035057600080fd5b806323b872dd1161010857806323b872dd146102205780632ae1bb6714610240578063313ce5671461025657806338bf3cfa14610272578063395093511461029457806370a08231146102b457600080fd5b806301f3d24f1461014557806306fdde0314610196578063095ea7b3146101b857806313a4486c146101e857806318160ddd1461020b575b600080fd5b34801561015157600080fd5b506101797f0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b581565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101a257600080fd5b506101ab61041a565b60405161018d9190611358565b3480156101c457600080fd5b506101d86101d33660046113bf565b6104ac565b604051901515815260200161018d565b3480156101f457600080fd5b506101fd6104c6565b60405190815260200161018d565b34801561021757600080fd5b506003546101fd565b34801561022c57600080fd5b506101d861023b3660046113eb565b6104e3565b34801561024c57600080fd5b506101fd600a5481565b34801561026257600080fd5b506040516009815260200161018d565b34801561027e57600080fd5b5061029261028d36600461142c565b610507565b005b3480156102a057600080fd5b506101d86102af3660046113bf565b61055c565b3480156102c057600080fd5b506101fd6102cf36600461142c565b6001600160a01b031660009081526001602052604090205490565b3480156102f657600080fd5b506101fd61057e565b34801561030b57600080fd5b506101fd60095481565b34801561032157600080fd5b506000546001600160a01b0316610179565b34801561033f57600080fd5b506101ab6105b2565b6102926105c1565b34801561035c57600080fd5b506101d861036b3660046113bf565b61086e565b34801561037c57600080fd5b506101d861038b3660046113bf565b6108e9565b34801561039c57600080fd5b506101fd6108f7565b3480156103b157600080fd5b506102926103c0366004611450565b610917565b3480156103d157600080fd5b506101fd6103e0366004611469565b610954565b3480156103f157600080fd5b506101fd61097f565b34801561040657600080fd5b50610292610415366004611450565b610a7a565b606060048054610429906114a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610455906114a2565b80156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b6000336104ba818585610ab7565b60019150505b92915050565b6104d26009600a6115d6565b6104e090633b9aca006115e5565b81565b6000336104f1858285610bdc565b6104fc858585610c56565b506001949350505050565b6000546001600160a01b0316331461053a5760405162461bcd60e51b8152600401610531906115fc565b60405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104ba81858561056f8383610954565b6105799190611633565b610ab7565b600061058960035490565b6105956009600a6115d6565b6105a390633b9aca006115e5565b6105ad9190611646565b905090565b606060058054610429906114a2565b6008805460ff191660011790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa15801561061e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106429190611659565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c79190611659565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610714573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107389190611659565b600680546001600160a01b0319166001600160a01b039290921691909117905561077b306107686009600a6115d6565b61077690633b9aca006115e5565b610dd9565b61079c30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610ab7565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d71934306107c46009600a6115d6565b6107d290633b9aca006115e5565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610836573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061085b9190611676565b505042600755506008805460ff19169055565b6000338161087c8286610954565b9050838110156108dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610531565b6104fc8286868403610ab7565b6000336104ba818585610c56565b60006109056009600a6115d6565b61090d61097f565b6105ad91906116a4565b6000546001600160a01b031633146109415760405162461bcd60e51b8152600401610531906115fc565b606481111561094f57600080fd5b600a55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6006546000906001600160a01b03166109ac5761099e6009600a6115d6565b6105ad90633b9aca006115e5565b60006127106001600754426109c19190611646565b6109cd6009600a6115d6565b6109db90633b9aca006115e5565b6109e591906115e5565b6109ef91906115e5565b6109f991906116a4565b612710610a086009600a6115d6565b610a1690633b9aca006115e5565b610a219060196115e5565b610a2b91906116a4565b610a359190611633565b9050610a436009600a6115d6565b610a5190633b9aca006115e5565b811115610a7557610a646009600a6115d6565b610a7290633b9aca006115e5565b90505b919050565b6000546001600160a01b03163314610aa45760405162461bcd60e51b8152600401610531906115fc565b600f811115610ab257600080fd5b600955565b6001600160a01b038316610b195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610531565b6001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610531565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610be88484610954565b90506000198114610c505781811015610c435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610531565b610c508484848403610ab7565b50505050565b60085460ff1615610c7157610c6c838383610e9a565b505050565b6001600160a01b038216610d16576001600160a01b038316600090815260016020526040902054811115610cb75760405162461bcd60e51b8152600401610531906116c6565b6001600160a01b03808416600081815260016020526040908190208054859003905560038054859003905551918416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bcf9085815260200190565b6006546001600160a01b0390811690841603610dae57610d368282610fa5565b7f0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b56001600160a01b031663670565866040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0390811690831603610dce57610d3683826110d2565b610c6c838383610e9a565b6001600160a01b038216610e2f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610531565b8060036000828254610e419190611633565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610efe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610531565b6001600160a01b03831660009081526001602052604090205481811015610f375760405162461bcd60e51b8152600401610531906116c6565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f979086815260200190565b60405180910390a350505050565b610fad61097f565b811115610ffc5760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d69740000000000000000006044820152606401610531565b600060646009548361100e91906115e5565b61101891906116a4565b905060006064600a548361102c91906115e5565b61103691906116a4565b905060006110448284611646565b9050811561108357600654611083906001600160a01b03167f0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b584610e9a565b80156110a0576006546110a0906001600160a01b03163083610e9a565b6006546110cb906001600160a01b031686836110bc8689611646565b6110c69190611646565b610e9a565b5050505050565b60006064600954836110e491906115e5565b6110ee91906116a4565b905060006064600a548361110291906115e5565b61110c91906116a4565b9050600061111a8284611646565b306000908152600160205260408120549192506111388660026115e5565b905080821115611146578091505b61114f826111ae565b831561118057611180877f0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b586610e9a565b821561119157611191873085610e9a565b600654610da59088906001600160a01b0316856110bc888b611646565b6008805460ff19166001179055801561134b5760408051600280825260608201835260009260208301908036833701905050905030816000815181106111f6576111f661170c565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190611659565b8160018151811061129f5761129f61170c565b6001600160a01b03909216602092830291909101909101526040516318cbafe560e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d906318cbafe59061131790859060009086907f0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b5904290600401611722565b600060405180830381600087803b15801561133157600080fd5b505af1158015611345573d6000803e3d6000fd5b50505050505b506008805460ff19169055565b60006020808352835180602085015260005b818110156113865785810183015185820160400152820161136a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113bc57600080fd5b50565b600080604083850312156113d257600080fd5b82356113dd816113a7565b946020939093013593505050565b60008060006060848603121561140057600080fd5b833561140b816113a7565b9250602084013561141b816113a7565b929592945050506040919091013590565b60006020828403121561143e57600080fd5b8135611449816113a7565b9392505050565b60006020828403121561146257600080fd5b5035919050565b6000806040838503121561147c57600080fd5b8235611487816113a7565b91506020830135611497816113a7565b809150509250929050565b600181811c908216806114b657607f821691505b6020821081036114d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561152d578160001904821115611513576115136114dc565b8085161561152057918102915b93841c93908002906114f7565b509250929050565b600082611544575060016104c0565b81611551575060006104c0565b816001811461156757600281146115715761158d565b60019150506104c0565b60ff841115611582576115826114dc565b50506001821b6104c0565b5060208310610133831016604e8410600b84101617156115b0575081810a6104c0565b6115ba83836114f2565b80600019048211156115ce576115ce6114dc565b029392505050565b600061144960ff841683611535565b80820281158282048414176104c0576104c06114dc565b60208082526017908201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b808201808211156104c0576104c06114dc565b818103818111156104c0576104c06114dc565b60006020828403121561166b57600080fd5b8151611449816113a7565b60008060006060848603121561168b57600080fd5b8351925060208401519150604084015190509250925092565b6000826116c157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156117745784516001600160a01b03168352938301939183019160010161174f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203e648dd7a8b0b83f6d7e3d7de6ff71a1724879174a036e3ceead6fc0dd5d758f64736f6c63430008170033

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

0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b5

-----Decoded View---------------
Arg [0] : sunra_ (address): 0x4ACd3411930A299D32768b48B2E67F51da66D4B5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004acd3411930a299d32768b48b2e67f51da66d4b5


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.