ETH Price: $3,513.29 (+2.82%)
Gas: 14 Gwei

Token

MSN (MSN)
 

Overview

Max Total Supply

399,999,999.999999999999999974 MSN

Holders

166

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
nftclub.eth
Balance
8,012,820.51282051282051282 MSN

Value
$0.00
0xdfeb50f97bb6a660697849ac13645e2e26cc4915
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:
MSN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Contract.sol
// contracts/MSN.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MSN is ERC20, Ownable {
    constructor() ERC20("MSN", "MSN"){}

    /// turn on/off contributions
    bool public allowContributions;

    /// a minimum contribution to participate in the presale
    uint256 public constant MIN_CONTRIBUTION = .1 ether;

    /// limit the maximum contribution for each wallet
    uint256 public constant MAX_CONTRIBUTION = 1 ether;

    /// the maximum amount of eth that this contract will accept for presale
    uint256 public constant HARD_CAP = 50 ether;

    /// total number of tokens available
    uint256 public constant MAX_SUPPLY = 1000000000 * 10 ** 18;

    /// 40% of tokens reserved for public presale
    uint256 public constant PRESALE_SUPPLY = 400000000 * 10 ** 18;

    /// 60% of tokens reserved for LP and Marketing
    uint256 public constant RESERVE_MAX_SUPPLY = 600000000 * 10 ** 18;

    /// used to track the total contributions for the presale
    uint256 public TOTAL_CONTRIBUTED;

    /// used to track the total number of contributoors
    uint256 public NUMBER_OF_CONTRIBUTOORS;

    mapping(address => bool) public blacklists;

    /// a struct used to keep track of each contributoors address and contribution amount
    struct Contribution {
        address addr;
        uint256 amount;
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

    
    }

    /// mapping of contributions
    mapping (uint256 => Contribution) public contribution;

    /// index of an address to it's contribition information
    mapping (address => uint256) public contributoor;

    /// collect presale contributions
    function sendToPresale() public payable {

        /// look up the sender's current contribution amount in the mapping
        uint256 currentContribution = contribution[contributoor[msg.sender]].amount;

        /// initialize a contribution index so we can keep track of this address' contributions
        uint256 contributionIndex;

        require(msg.value >= MIN_CONTRIBUTION, "Contribution too low");

        /// check to see if contributions are allowed
        require (allowContributions, "Contributions not allowed");

        /// enforce per-wallet contribution limit
        require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit");

        /// enforce hard cap
        require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap"); 

        if (contributoor[msg.sender] != 0){
            /// no need to increase the number of contributors since this person already added
            contributionIndex = contributoor[msg.sender];
        } else {
            /// keep track of each new contributor with a unique index
            contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1;
            NUMBER_OF_CONTRIBUTOORS++;
        }

        /// add the contribution to the amount contributed
        TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value;

        /// keep track of the address' contributions so far
        contributoor[msg.sender] = contributionIndex;
        contribution[contributionIndex].addr = msg.sender;
        contribution[contributionIndex].amount += msg.value;
    }

    function airdropPresale() external onlyOwner {

        /// determine the price per token
        uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY;

        /// loop over each contribution and distribute tokens
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {

            /// convert contribution to 18 decimals
            uint256 contributionAmount = contribution[i].amount * 10 ** 18;

            /// calculate the percentage of the pool based on the address' contribution
            uint256 numberOfTokensToMint = contributionAmount/pricePerToken;

            /// mint the tokens to the address
            _mint(contribution[i].addr, numberOfTokensToMint);
        }
    }

    /// dev mint the remainder of the pool to round out the supply
    function devMint() external onlyOwner {

        /// calculate the remaining supply
        uint256 numberToMint = MAX_SUPPLY - totalSupply();
        
        /// don't allow the dev mint until the tokens have been airdropped
        require (numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max");

        /// mint the remaining supply to the dev's wallet
        _mint(msg.sender, numberToMint);
    }

     /// set whether or not the contract allows contributions
    function setAllowContributions(bool _value) external onlyOwner {
        allowContributions = _value;
    }

    /// if there are not enough contributions or we decide this sucks, refund everyone their eth
    function refundEveryone() external onlyOwner {
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {
            address payable refundAddress = payable(contribution[i].addr);
            
            /// refund the contribution
            refundAddress.transfer(contribution[i].amount);
        }
    }

    /// allows the owner to withdraw the funds in this contract
    function withdrawBalance(address payable _address) external onlyOwner {
        (bool success, ) = _address.call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @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");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        _afterTokenTransfer(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");

        _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;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 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);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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 4 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 5 of 6 : 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 6 of 6 : 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020016226a9a760e91b8152506040518060400160405280600381526020016226a9a760e91b815250816003908051906020019062000062929190620000f1565b50805162000078906004906020840190620000f1565b505050620000956200008f6200009b60201b60201c565b6200009f565b620001d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b61158680620001e46000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d57806394d95f8f116100a0578063c26993261161006f578063c269932614610564578063dd62ed3e14610584578063e3261454146105a4578063e8709c40146105b9578063f2fde38b1461061857600080fd5b806394d95f8f146104f357806395d89b411461050f578063a457c2d714610524578063a9059cbb1461054457600080fd5b80637c69e207116100dc5780637c69e207146104815780638512747d1461049657806387e3c520146104ab5780638da5cb5b146104cb57600080fd5b806370a08231146103f6578063715018a61461042c57806373138e4f14610441578063756af45f1461046157600080fd5b8063395093511161018557806340650c911161015457806340650c911461039b578063511f0726146103b75780635ea06028146103bf5780637072e45c146103d557600080fd5b8063395093511461030f5780633a03171c1461032f5780633dfa10f91461034c578063404e51291461037957600080fd5b806318160ddd116101c157806318160ddd1461029e57806323b872dd146102b3578063313ce567146102d357806332cb6b0c146102ef57600080fd5b8063044f910c146101f357806306fdde031461021c578063095ea7b31461023e57806316c021291461026e575b600080fd5b3480156101ff57600080fd5b5061020960075481565b6040519081526020015b60405180910390f35b34801561022857600080fd5b50610231610638565b604051610213919061140a565b34801561024a57600080fd5b5061025e6102593660046113aa565b6106ca565b6040519015158152602001610213565b34801561027a57600080fd5b5061025e6102893660046112d7565b60086020526000908152604090205460ff1681565b3480156102aa57600080fd5b50600254610209565b3480156102bf57600080fd5b5061025e6102ce366004611334565b6106e2565b3480156102df57600080fd5b5060405160128152602001610213565b3480156102fb57600080fd5b506102096b033b2e3c9fd0803ce800000081565b34801561031b57600080fd5b5061025e61032a3660046113aa565b610706565b34801561033b57600080fd5b506102096802b5e3af16b188000081565b34801561035857600080fd5b506102096103673660046112d7565b600a6020526000908152604090205481565b34801561038557600080fd5b50610399610394366004611375565b610728565b005b3480156103a757600080fd5b5061020967016345785d8a000081565b61039961075b565b3480156103cb57600080fd5b5061020960065481565b3480156103e157600080fd5b5060055461025e90600160a01b900460ff1681565b34801561040257600080fd5b506102096104113660046112d7565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b506103996109ae565b34801561044d57600080fd5b506102096b014adf4b7320334b9000000081565b34801561046d57600080fd5b5061039961047c3660046112d7565b6109c2565b34801561048d57600080fd5b50610399610a63565b3480156104a257600080fd5b50610399610af7565b3480156104b757600080fd5b506103996104c63660046113d6565b610ba8565b3480156104d757600080fd5b506005546040516001600160a01b039091168152602001610213565b3480156104ff57600080fd5b50610209670de0b6b3a764000081565b34801561051b57600080fd5b50610231610bce565b34801561053057600080fd5b5061025e61053f3660046113aa565b610bdd565b34801561055057600080fd5b5061025e61055f3660046113aa565b610c58565b34801561057057600080fd5b506102096b01f04ef12cb04cf15800000081565b34801561059057600080fd5b5061020961059f3660046112fb565b610c66565b3480156105b057600080fd5b50610399610c91565b3480156105c557600080fd5b506105f96105d43660046113f1565b600960205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610213565b34801561062457600080fd5b506103996106333660046112d7565b610d07565b606060038054610647906114cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610673906114cf565b80156106c05780601f10610695576101008083540402835291602001916106c0565b820191906000526020600020905b8154815290600101906020018083116106a357829003601f168201915b5050505050905090565b6000336106d8818585610d7d565b5060019392505050565b6000336106f0858285610ea1565b6106fb858585610f1b565b506001949350505050565b6000336106d88185856107198383610c66565b610723919061145f565b610d7d565b6107306110ca565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b336000908152600a6020908152604080832054835260099091528120600101549067016345785d8a00003410156107d05760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064015b60405180910390fd5b600554600160a01b900460ff166108295760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f7765640000000000000060448201526064016107c7565b670de0b6b3a764000061083c833461145f565b11156108985760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b60648201526084016107c7565b6802b5e3af16b1880000600654346108b0919061145f565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e206578636565647320686172642063617000000060448201526064016107c7565b336000908152600a6020526040902054156109295750336000908152600a602052604090205461094f565b60075461093790600161145f565b6007805491925060006109498361150a565b91905055505b3460065461095d919061145f565b600655336000818152600a602090815260408083208590558483526009909152812080546001600160a01b0319169092178255600190910180543492906109a590849061145f565b90915550505050565b6109b66110ca565b6109c06000611124565b565b6109ca6110ca565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a17576040519150601f19603f3d011682016040523d82523d6000602084013e610a1c565b606091505b5050905080610a5f5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016107c7565b5050565b610a6b6110ca565b6000610a7660025490565b610a8c906b033b2e3c9fd0803ce80000006114b8565b90506b01f04ef12cb04cf158000000811115610aea5760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016107c7565b610af43382611176565b50565b610aff6110ca565b60006b014adf4b7320334b90000000600654670de0b6b3a7640000610b249190611499565b610b2e9190611477565b905060015b6007548111610a5f57600081815260096020526040812060010154610b6090670de0b6b3a7640000611499565b90506000610b6e8483611477565b600084815260096020526040902054909150610b93906001600160a01b031682611176565b50508080610ba09061150a565b915050610b33565b610bb06110ca565b60058054911515600160a01b0260ff60a01b19909216919091179055565b606060048054610647906114cf565b60003381610beb8286610c66565b905083811015610c4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c7565b6106fb8286868403610d7d565b6000336106d8818585610f1b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c996110ca565b60015b6007548111610af457600081815260096020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610cf2573d6000803e3d6000fd5b50508080610cff9061150a565b915050610c9c565b610d0f6110ca565b6001600160a01b038116610d745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b610af481611124565b6001600160a01b038316610ddf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6001600160a01b038216610e405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ead8484610c66565b90506000198114610f155781811015610f085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c7565b610f158484848403610d7d565b50505050565b6001600160a01b038316610f7f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c7565b6001600160a01b038216610fe15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c7565b610fec838383611241565b6001600160a01b038316600090815260208190526040902054818110156110645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f15565b6005546001600160a01b031633146109c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107c7565b6111d860008383611241565b80600260008282546111ea919061145f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526008602052604090205460ff1615801561128357506001600160a01b03831660009081526008602052604090205460ff16155b6112bd5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016107c7565b505050565b803580151581146112d257600080fd5b919050565b6000602082840312156112e957600080fd5b81356112f48161153b565b9392505050565b6000806040838503121561130e57600080fd5b82356113198161153b565b915060208301356113298161153b565b809150509250929050565b60008060006060848603121561134957600080fd5b83356113548161153b565b925060208401356113648161153b565b929592945050506040919091013590565b6000806040838503121561138857600080fd5b82356113938161153b565b91506113a1602084016112c2565b90509250929050565b600080604083850312156113bd57600080fd5b82356113c88161153b565b946020939093013593505050565b6000602082840312156113e857600080fd5b6112f4826112c2565b60006020828403121561140357600080fd5b5035919050565b600060208083528351808285015260005b818110156114375785810183015185820160400152820161141b565b81811115611449576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561147257611472611525565b500190565b60008261149457634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156114b3576114b3611525565b500290565b6000828210156114ca576114ca611525565b500390565b600181811c908216806114e357607f821691505b6020821081141561150457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561151e5761151e611525565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610af457600080fdfea2646970667358221220824a7507642e3dcd3439b2b623cb7c7fe28b6cbf4a711716d5c15bdd849413c064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d57806394d95f8f116100a0578063c26993261161006f578063c269932614610564578063dd62ed3e14610584578063e3261454146105a4578063e8709c40146105b9578063f2fde38b1461061857600080fd5b806394d95f8f146104f357806395d89b411461050f578063a457c2d714610524578063a9059cbb1461054457600080fd5b80637c69e207116100dc5780637c69e207146104815780638512747d1461049657806387e3c520146104ab5780638da5cb5b146104cb57600080fd5b806370a08231146103f6578063715018a61461042c57806373138e4f14610441578063756af45f1461046157600080fd5b8063395093511161018557806340650c911161015457806340650c911461039b578063511f0726146103b75780635ea06028146103bf5780637072e45c146103d557600080fd5b8063395093511461030f5780633a03171c1461032f5780633dfa10f91461034c578063404e51291461037957600080fd5b806318160ddd116101c157806318160ddd1461029e57806323b872dd146102b3578063313ce567146102d357806332cb6b0c146102ef57600080fd5b8063044f910c146101f357806306fdde031461021c578063095ea7b31461023e57806316c021291461026e575b600080fd5b3480156101ff57600080fd5b5061020960075481565b6040519081526020015b60405180910390f35b34801561022857600080fd5b50610231610638565b604051610213919061140a565b34801561024a57600080fd5b5061025e6102593660046113aa565b6106ca565b6040519015158152602001610213565b34801561027a57600080fd5b5061025e6102893660046112d7565b60086020526000908152604090205460ff1681565b3480156102aa57600080fd5b50600254610209565b3480156102bf57600080fd5b5061025e6102ce366004611334565b6106e2565b3480156102df57600080fd5b5060405160128152602001610213565b3480156102fb57600080fd5b506102096b033b2e3c9fd0803ce800000081565b34801561031b57600080fd5b5061025e61032a3660046113aa565b610706565b34801561033b57600080fd5b506102096802b5e3af16b188000081565b34801561035857600080fd5b506102096103673660046112d7565b600a6020526000908152604090205481565b34801561038557600080fd5b50610399610394366004611375565b610728565b005b3480156103a757600080fd5b5061020967016345785d8a000081565b61039961075b565b3480156103cb57600080fd5b5061020960065481565b3480156103e157600080fd5b5060055461025e90600160a01b900460ff1681565b34801561040257600080fd5b506102096104113660046112d7565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b506103996109ae565b34801561044d57600080fd5b506102096b014adf4b7320334b9000000081565b34801561046d57600080fd5b5061039961047c3660046112d7565b6109c2565b34801561048d57600080fd5b50610399610a63565b3480156104a257600080fd5b50610399610af7565b3480156104b757600080fd5b506103996104c63660046113d6565b610ba8565b3480156104d757600080fd5b506005546040516001600160a01b039091168152602001610213565b3480156104ff57600080fd5b50610209670de0b6b3a764000081565b34801561051b57600080fd5b50610231610bce565b34801561053057600080fd5b5061025e61053f3660046113aa565b610bdd565b34801561055057600080fd5b5061025e61055f3660046113aa565b610c58565b34801561057057600080fd5b506102096b01f04ef12cb04cf15800000081565b34801561059057600080fd5b5061020961059f3660046112fb565b610c66565b3480156105b057600080fd5b50610399610c91565b3480156105c557600080fd5b506105f96105d43660046113f1565b600960205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610213565b34801561062457600080fd5b506103996106333660046112d7565b610d07565b606060038054610647906114cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610673906114cf565b80156106c05780601f10610695576101008083540402835291602001916106c0565b820191906000526020600020905b8154815290600101906020018083116106a357829003601f168201915b5050505050905090565b6000336106d8818585610d7d565b5060019392505050565b6000336106f0858285610ea1565b6106fb858585610f1b565b506001949350505050565b6000336106d88185856107198383610c66565b610723919061145f565b610d7d565b6107306110ca565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b336000908152600a6020908152604080832054835260099091528120600101549067016345785d8a00003410156107d05760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064015b60405180910390fd5b600554600160a01b900460ff166108295760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f7765640000000000000060448201526064016107c7565b670de0b6b3a764000061083c833461145f565b11156108985760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b60648201526084016107c7565b6802b5e3af16b1880000600654346108b0919061145f565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e206578636565647320686172642063617000000060448201526064016107c7565b336000908152600a6020526040902054156109295750336000908152600a602052604090205461094f565b60075461093790600161145f565b6007805491925060006109498361150a565b91905055505b3460065461095d919061145f565b600655336000818152600a602090815260408083208590558483526009909152812080546001600160a01b0319169092178255600190910180543492906109a590849061145f565b90915550505050565b6109b66110ca565b6109c06000611124565b565b6109ca6110ca565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a17576040519150601f19603f3d011682016040523d82523d6000602084013e610a1c565b606091505b5050905080610a5f5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016107c7565b5050565b610a6b6110ca565b6000610a7660025490565b610a8c906b033b2e3c9fd0803ce80000006114b8565b90506b01f04ef12cb04cf158000000811115610aea5760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016107c7565b610af43382611176565b50565b610aff6110ca565b60006b014adf4b7320334b90000000600654670de0b6b3a7640000610b249190611499565b610b2e9190611477565b905060015b6007548111610a5f57600081815260096020526040812060010154610b6090670de0b6b3a7640000611499565b90506000610b6e8483611477565b600084815260096020526040902054909150610b93906001600160a01b031682611176565b50508080610ba09061150a565b915050610b33565b610bb06110ca565b60058054911515600160a01b0260ff60a01b19909216919091179055565b606060048054610647906114cf565b60003381610beb8286610c66565b905083811015610c4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c7565b6106fb8286868403610d7d565b6000336106d8818585610f1b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c996110ca565b60015b6007548111610af457600081815260096020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610cf2573d6000803e3d6000fd5b50508080610cff9061150a565b915050610c9c565b610d0f6110ca565b6001600160a01b038116610d745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b610af481611124565b6001600160a01b038316610ddf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6001600160a01b038216610e405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ead8484610c66565b90506000198114610f155781811015610f085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c7565b610f158484848403610d7d565b50505050565b6001600160a01b038316610f7f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c7565b6001600160a01b038216610fe15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c7565b610fec838383611241565b6001600160a01b038316600090815260208190526040902054818110156110645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f15565b6005546001600160a01b031633146109c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107c7565b6111d860008383611241565b80600260008282546111ea919061145f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526008602052604090205460ff1615801561128357506001600160a01b03831660009081526008602052604090205460ff16155b6112bd5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016107c7565b505050565b803580151581146112d257600080fd5b919050565b6000602082840312156112e957600080fd5b81356112f48161153b565b9392505050565b6000806040838503121561130e57600080fd5b82356113198161153b565b915060208301356113298161153b565b809150509250929050565b60008060006060848603121561134957600080fd5b83356113548161153b565b925060208401356113648161153b565b929592945050506040919091013590565b6000806040838503121561138857600080fd5b82356113938161153b565b91506113a1602084016112c2565b90509250929050565b600080604083850312156113bd57600080fd5b82356113c88161153b565b946020939093013593505050565b6000602082840312156113e857600080fd5b6112f4826112c2565b60006020828403121561140357600080fd5b5035919050565b600060208083528351808285015260005b818110156114375785810183015185820160400152820161141b565b81811115611449576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561147257611472611525565b500190565b60008261149457634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156114b3576114b3611525565b500290565b6000828210156114ca576114ca611525565b500390565b600181811c908216806114e357607f821691505b6020821081141561150457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561151e5761151e611525565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610af457600080fdfea2646970667358221220824a7507642e3dcd3439b2b623cb7c7fe28b6cbf4a711716d5c15bdd849413c064736f6c63430008070033

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.