ETH Price: $3,417.08 (-1.92%)
Gas: 5 Gwei

Token

dART Token (dART)
 

Overview

Max Total Supply

142,090,000 dART

Holders

593

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cyeric.eth
Balance
1,571.97098437437940624 dART

Value
$0.00
0xa24c1d869119cc57ca64b2028b83842b235f9bee
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:
DARTToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-16
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.7.0;



/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}


pragma solidity ^0.7.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}


pragma solidity ^0.7.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity 0.7.6;


contract DARTToken is Context, Ownable, ERC20Burnable {
    string public constant NAME = "dART Token";
    string public constant SYMBOL = "dART";
    uint8 public constant DECIMALS = 18;
    uint256 public constant TOTAL_SUPPLY = 142090000 * (10**uint256(DECIMALS));

    address public SeedInvestmentAddr;
    address public PrivateSaleAddr;
    address public StakingRewardsAddr;
    address public LiquidityPoolAddr;
    address public MarketingAddr;
    address public TreasuryAddr;
    address public TeamAllocationAddr;
    address public AdvisorsAddr;
    address public ReserveAddr;

    uint256 public constant SEED_INVESTMENT = 3000000 * (10**uint256(DECIMALS)); // 2.1% for Seed investment
    uint256 public constant PRIVATE_SALE = 15000000 * (10**uint256(DECIMALS)); // 10.6% for Private Sale

    uint256 public constant STAKING_REWARDS = 24500000 * (10**uint256(DECIMALS)); // 17.2% for Staking rewards
    
    uint256 public constant LIQUIDITY_POOL = 9000000 * (10**uint256(DECIMALS)); // 6.3% for Liquidity pool

    uint256 public constant MARKETING = 14000000 * (10**uint256(DECIMALS)); // 9.9% for Marketing/Listings
    uint256 public constant TREASURY = 19600000 * (10**uint256(DECIMALS)); // 13.8% for Treasury

    uint256 public constant TEAM_ALLOCATION = 17000000 * (10**uint256(DECIMALS)); // 12% for Team allocation
    uint256 public constant ADVISORS = 5000000 * (10**uint256(DECIMALS)); // 3.5% for Advisors

    uint256 public constant RESERVE = 34990000 * (10**uint256(DECIMALS)); // 24.6% for Bridge consumption

    bool private _isDistributionComplete = false;

    constructor()
        ERC20(NAME, SYMBOL)
    {
        _mint(address(this), TOTAL_SUPPLY);
    }

    function setDistributionTeamsAddresses(
        address _SeedInvestmentAddr,
        address _PrivateSaleAddr,
        address _StakingRewardsAddr,
        address _LiquidityPoolAddr,
        address _MarketingAddr,
        address _TreasuryAddr,
        address _TeamAllocationAddr,
        address _AdvisorsAddr,
        address _ReserveAddr
    ) external onlyOwner {
        require(!_isDistributionComplete, "Already distributed");

        // set parnters addresses
        SeedInvestmentAddr = _SeedInvestmentAddr;
        PrivateSaleAddr = _PrivateSaleAddr;
        StakingRewardsAddr = _StakingRewardsAddr;
        LiquidityPoolAddr = _LiquidityPoolAddr;
        MarketingAddr = _MarketingAddr;
        TreasuryAddr = _TreasuryAddr;
        TeamAllocationAddr = _TeamAllocationAddr;
        AdvisorsAddr = _AdvisorsAddr;
        ReserveAddr = _ReserveAddr;
    }

    function distributeTokens() external onlyOwner {
        require(!_isDistributionComplete, "Already distributed");

        _transfer(address(this), SeedInvestmentAddr, SEED_INVESTMENT);
        _transfer(address(this), PrivateSaleAddr, PRIVATE_SALE);
        _transfer(address(this), StakingRewardsAddr, STAKING_REWARDS);
        _transfer(address(this), LiquidityPoolAddr, LIQUIDITY_POOL);
        _transfer(address(this), MarketingAddr, MARKETING);
        _transfer(address(this), TreasuryAddr, TREASURY);
        _transfer(address(this), TeamAllocationAddr, TEAM_ALLOCATION);
        _transfer(address(this), AdvisorsAddr, ADVISORS);
        _transfer(address(this), ReserveAddr, RESERVE);

        _isDistributionComplete = true;
    }
}

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":"ADVISORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AdvisorsAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_POOL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityPoolAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIVATE_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrivateSaleAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReserveAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_INVESTMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_REWARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SeedInvestmentAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StakingRewardsAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamAllocationAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TreasuryAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"distributeTokens","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_SeedInvestmentAddr","type":"address"},{"internalType":"address","name":"_PrivateSaleAddr","type":"address"},{"internalType":"address","name":"_StakingRewardsAddr","type":"address"},{"internalType":"address","name":"_LiquidityPoolAddr","type":"address"},{"internalType":"address","name":"_MarketingAddr","type":"address"},{"internalType":"address","name":"_TreasuryAddr","type":"address"},{"internalType":"address","name":"_TeamAllocationAddr","type":"address"},{"internalType":"address","name":"_AdvisorsAddr","type":"address"},{"internalType":"address","name":"_ReserveAddr","type":"address"}],"name":"setDistributionTeamsAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e805460ff60a01b191690553480156200001e57600080fd5b506040518060400160405280600a8152602001693220a92a102a37b5b2b760b11b815250604051806040016040528060048152602001631910549560e21b8152506000620000716200011360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d090600490602085019062000291565b508051620000e690600590602084019062000291565b50506006805460ff19166012179055506200010d306a7588ba559cc35f9240000062000117565b6200033d565b3390565b6001600160a01b03821662000173576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000181600083836200022a565b6200019d816003546200022f60201b62000fd41790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001d291839062000fd46200022f821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200028a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b506200032292915062000326565b5090565b5b8082111562000322576000815560010162000327565b611656806200034d6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638da5cb5b1161013b578063a8d61e9c116100b8578063e530a7d01161007c578063e530a7d0146105d1578063f2fde38b146105d9578063f767fe97146105ff578063f76f8d7814610607578063fd99cbed1461060f57610248565b8063a8d61e9c146104fd578063a9059cbb14610567578063b3b37fe114610593578063baea97ab1461059b578063dd62ed3e146105a357610248565b80639ab1b484116100ff5780639ab1b484146104b15780639d2cc436146104b95780639d51606d146104c1578063a3f4df7e146104c9578063a457c2d7146104d157610248565b80638da5cb5b14610489578063902d55a51461049157806395d89b411461049957806398c83a16146104a157806398f70100146104a957610248565b80632d2c5565116101c957806345f38dbb1161018d57806345f38dbb1461041f5780634ed877131461042757806370a082311461042f578063715018a61461045557806379cc67901461045d57610248565b80632d2c5565146103a65780632e0f2625146103ae578063313ce567146103cc57806339509351146103d457806342966c681461040057610248565b8063124a0b1c11610210578063124a0b1c1461035057806318160ddd1461035857806323b872dd1461036057806329470766146103965780632cca9dfd1461039e57610248565b806306f2d2231461024d57806306fdde031461027157806307bce0cd146102ee578063095ea7b3146103085780630f962ea214610348575b600080fd5b610255610617565b604080516001600160a01b039092168252519081900360200190f35b610279610626565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b357818101518382015260200161029b565b50505050905090810190601f1680156102e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f66106bc565b60408051918252519081900360200190f35b6103346004803603604081101561031e57600080fd5b506001600160a01b0381351690602001356106cb565b604080519115158252519081900360200190f35b6102556106e8565b6102556106f7565b6102f6610706565b6103346004803603606081101561037657600080fd5b506001600160a01b0381358116916020810135909116906040013561070c565b610255610793565b6102f66107a2565b6102f66107b1565b6103b66107c0565b6040805160ff9092168252519081900360200190f35b6103b66107c5565b610334600480360360408110156103ea57600080fd5b506001600160a01b0381351690602001356107ce565b61041d6004803603602081101561041657600080fd5b503561081c565b005b6102f6610830565b6102f661083f565b6102f66004803603602081101561044557600080fd5b50356001600160a01b031661084e565b61041d610869565b61041d6004803603604081101561047357600080fd5b506001600160a01b038135169060200135610915565b61025561096f565b6102f661097e565b61027961098d565b6102f66109ee565b6102556109fd565b61041d610a0c565b6102f6610c18565b610255610c27565b610279610c3b565b610334600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610c61565b61041d600480360361012081101561051457600080fd5b506001600160a01b038135811691602081013582169160408201358116916060810135821691608082013581169160a081013582169160c082013581169160e08101358216916101009091013516610cc9565b6103346004803603604081101561057d57600080fd5b506001600160a01b038135169060200135610e28565b610255610e3c565b610255610e4b565b6102f6600480360360408110156105b957600080fd5b506001600160a01b0381358116916020013516610e5a565b6102f6610e85565b61041d600480360360208110156105ef57600080fd5b50356001600160a01b0316610e94565b610255610f96565b610279610fa5565b6102f6610fc5565b6008546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b6a144413a94a9cbde880000081565b60006106df6106d8611035565b8484611039565b50600192915050565b600b546001600160a01b031681565b6009546001600160a01b031681565b60035490565b6000610719848484611125565b61078984610725611035565b61078485604051806060016040528060288152602001611526602891396001600160a01b038a16600090815260026020526040812090610763611035565b6001600160a01b031681526020810191909152604001600020549190611282565b611039565b5060019392505050565b600c546001600160a01b031681565b6a0771d2fa45345aa900000081565b6a10367621087d64ba00000081565b601281565b60065460ff1690565b60006106df6107db611035565b8461078485600260006107ec611035565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fd4565b61082d610827611035565b82611319565b50565b6a027b46536c66c8e300000081565b6a0422ca8b0a00a42500000081565b6001600160a01b031660009081526001602052604090205490565b610871611035565b6001600160a01b031661088261096f565b6001600160a01b0316146108cb576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061094c8260405180606001604052806024815260200161156e6024913961094586610940611035565b610e5a565b9190611282565b90506109608361095a611035565b83611039565b61096a8383611319565b505050565b6000546001600160a01b031690565b6a7588ba559cc35f9240000081565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b6a0c685fa11e01ec6f00000081565b6007546001600160a01b031681565b610a14611035565b6001600160a01b0316610a2561096f565b6001600160a01b031614610a6e576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff1615610ac3576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48191a5cdd1c9a589d5d1959606a1b604482015290519081900360640190fd5b600654610aeb90309061010090046001600160a01b03166a027b46536c66c8e3000000611125565b600754610b0e9030906001600160a01b03166a0c685fa11e01ec6f000000611125565b600854610b319030906001600160a01b03166a144413a94a9cbde8800000611125565b600954610b549030906001600160a01b03166a0771d2fa45345aa9000000611125565b600a54610b779030906001600160a01b03166a0b949d854f34fece000000611125565b600b54610b9a9030906001600160a01b03166a10367621087d64ba000000611125565b600c54610bbd9030906001600160a01b03166a0e0fe3d8bb9bc7b1000000611125565b600d54610be09030906001600160a01b03166a0422ca8b0a00a425000000611125565b600e54610c039030906001600160a01b03166a1cf16bb3653ac250c00000611125565b600e805460ff60a01b1916600160a01b179055565b6a1cf16bb3653ac250c0000081565b60065461010090046001600160a01b031681565b6040518060400160405280600a8152602001693220a92a102a37b5b2b760b11b81525081565b60006106df610c6e611035565b84610784856040518060600160405280602581526020016115fc6025913960026000610c98611035565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611282565b610cd1611035565b6001600160a01b0316610ce261096f565b6001600160a01b031614610d2b576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff1615610d80576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48191a5cdd1c9a589d5d1959606a1b604482015290519081900360640190fd5b60068054610100600160a81b0319166101006001600160a01b039b8c1602179055600780546001600160a01b0319908116998b16999099179055600880548916978a169790971790965560098054881695891695909517909455600a8054871693881693909317909255600b80548616918716919091179055600c80548516918616919091179055600d80548416918516919091179055600e80549092169216919091179055565b60006106df610e35611035565b8484611125565b600d546001600160a01b031681565b600e546001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6a0b949d854f34fece00000081565b610e9c611035565b6001600160a01b0316610ead61096f565b6001600160a01b031614610ef6576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b6001600160a01b038116610f3b5760405162461bcd60e51b81526004018080602001828103825260268152602001806114b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b604051806040016040528060048152602001631910549560e21b81525081565b6a0e0fe3d8bb9bc7b100000081565b60008282018381101561102e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661107e5760405162461bcd60e51b81526004018080602001828103825260248152602001806115d86024913960400191505060405180910390fd5b6001600160a01b0382166110c35760405162461bcd60e51b81526004018080602001828103825260228152602001806114de6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661116a5760405162461bcd60e51b81526004018080602001828103825260258152602001806115b36025913960400191505060405180910390fd5b6001600160a01b0382166111af5760405162461bcd60e51b81526004018080602001828103825260238152602001806114736023913960400191505060405180910390fd5b6111ba83838361096a565b6111f781604051806060016040528060268152602001611500602691396001600160a01b0386166000908152600160205260409020549190611282565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546112269082610fd4565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112d65781810151838201526020016112be565b50505050905090810190601f1680156113035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661135e5760405162461bcd60e51b81526004018080602001828103825260218152602001806115926021913960400191505060405180910390fd5b61136a8260008361096a565b6113a781604051806060016040528060228152602001611496602291396001600160a01b0385166000908152600160205260409020549190611282565b6001600160a01b0383166000908152600160205260409020556003546113cd9082611415565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008282111561146c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f2344ca908dc6a4f43e48147345ffd5fa396d579587fbb5035423520f32a454264736f6c63430007060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80638da5cb5b1161013b578063a8d61e9c116100b8578063e530a7d01161007c578063e530a7d0146105d1578063f2fde38b146105d9578063f767fe97146105ff578063f76f8d7814610607578063fd99cbed1461060f57610248565b8063a8d61e9c146104fd578063a9059cbb14610567578063b3b37fe114610593578063baea97ab1461059b578063dd62ed3e146105a357610248565b80639ab1b484116100ff5780639ab1b484146104b15780639d2cc436146104b95780639d51606d146104c1578063a3f4df7e146104c9578063a457c2d7146104d157610248565b80638da5cb5b14610489578063902d55a51461049157806395d89b411461049957806398c83a16146104a157806398f70100146104a957610248565b80632d2c5565116101c957806345f38dbb1161018d57806345f38dbb1461041f5780634ed877131461042757806370a082311461042f578063715018a61461045557806379cc67901461045d57610248565b80632d2c5565146103a65780632e0f2625146103ae578063313ce567146103cc57806339509351146103d457806342966c681461040057610248565b8063124a0b1c11610210578063124a0b1c1461035057806318160ddd1461035857806323b872dd1461036057806329470766146103965780632cca9dfd1461039e57610248565b806306f2d2231461024d57806306fdde031461027157806307bce0cd146102ee578063095ea7b3146103085780630f962ea214610348575b600080fd5b610255610617565b604080516001600160a01b039092168252519081900360200190f35b610279610626565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b357818101518382015260200161029b565b50505050905090810190601f1680156102e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f66106bc565b60408051918252519081900360200190f35b6103346004803603604081101561031e57600080fd5b506001600160a01b0381351690602001356106cb565b604080519115158252519081900360200190f35b6102556106e8565b6102556106f7565b6102f6610706565b6103346004803603606081101561037657600080fd5b506001600160a01b0381358116916020810135909116906040013561070c565b610255610793565b6102f66107a2565b6102f66107b1565b6103b66107c0565b6040805160ff9092168252519081900360200190f35b6103b66107c5565b610334600480360360408110156103ea57600080fd5b506001600160a01b0381351690602001356107ce565b61041d6004803603602081101561041657600080fd5b503561081c565b005b6102f6610830565b6102f661083f565b6102f66004803603602081101561044557600080fd5b50356001600160a01b031661084e565b61041d610869565b61041d6004803603604081101561047357600080fd5b506001600160a01b038135169060200135610915565b61025561096f565b6102f661097e565b61027961098d565b6102f66109ee565b6102556109fd565b61041d610a0c565b6102f6610c18565b610255610c27565b610279610c3b565b610334600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610c61565b61041d600480360361012081101561051457600080fd5b506001600160a01b038135811691602081013582169160408201358116916060810135821691608082013581169160a081013582169160c082013581169160e08101358216916101009091013516610cc9565b6103346004803603604081101561057d57600080fd5b506001600160a01b038135169060200135610e28565b610255610e3c565b610255610e4b565b6102f6600480360360408110156105b957600080fd5b506001600160a01b0381358116916020013516610e5a565b6102f6610e85565b61041d600480360360208110156105ef57600080fd5b50356001600160a01b0316610e94565b610255610f96565b610279610fa5565b6102f6610fc5565b6008546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b6a144413a94a9cbde880000081565b60006106df6106d8611035565b8484611039565b50600192915050565b600b546001600160a01b031681565b6009546001600160a01b031681565b60035490565b6000610719848484611125565b61078984610725611035565b61078485604051806060016040528060288152602001611526602891396001600160a01b038a16600090815260026020526040812090610763611035565b6001600160a01b031681526020810191909152604001600020549190611282565b611039565b5060019392505050565b600c546001600160a01b031681565b6a0771d2fa45345aa900000081565b6a10367621087d64ba00000081565b601281565b60065460ff1690565b60006106df6107db611035565b8461078485600260006107ec611035565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fd4565b61082d610827611035565b82611319565b50565b6a027b46536c66c8e300000081565b6a0422ca8b0a00a42500000081565b6001600160a01b031660009081526001602052604090205490565b610871611035565b6001600160a01b031661088261096f565b6001600160a01b0316146108cb576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061094c8260405180606001604052806024815260200161156e6024913961094586610940611035565b610e5a565b9190611282565b90506109608361095a611035565b83611039565b61096a8383611319565b505050565b6000546001600160a01b031690565b6a7588ba559cc35f9240000081565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b6a0c685fa11e01ec6f00000081565b6007546001600160a01b031681565b610a14611035565b6001600160a01b0316610a2561096f565b6001600160a01b031614610a6e576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff1615610ac3576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48191a5cdd1c9a589d5d1959606a1b604482015290519081900360640190fd5b600654610aeb90309061010090046001600160a01b03166a027b46536c66c8e3000000611125565b600754610b0e9030906001600160a01b03166a0c685fa11e01ec6f000000611125565b600854610b319030906001600160a01b03166a144413a94a9cbde8800000611125565b600954610b549030906001600160a01b03166a0771d2fa45345aa9000000611125565b600a54610b779030906001600160a01b03166a0b949d854f34fece000000611125565b600b54610b9a9030906001600160a01b03166a10367621087d64ba000000611125565b600c54610bbd9030906001600160a01b03166a0e0fe3d8bb9bc7b1000000611125565b600d54610be09030906001600160a01b03166a0422ca8b0a00a425000000611125565b600e54610c039030906001600160a01b03166a1cf16bb3653ac250c00000611125565b600e805460ff60a01b1916600160a01b179055565b6a1cf16bb3653ac250c0000081565b60065461010090046001600160a01b031681565b6040518060400160405280600a8152602001693220a92a102a37b5b2b760b11b81525081565b60006106df610c6e611035565b84610784856040518060600160405280602581526020016115fc6025913960026000610c98611035565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611282565b610cd1611035565b6001600160a01b0316610ce261096f565b6001600160a01b031614610d2b576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff1615610d80576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48191a5cdd1c9a589d5d1959606a1b604482015290519081900360640190fd5b60068054610100600160a81b0319166101006001600160a01b039b8c1602179055600780546001600160a01b0319908116998b16999099179055600880548916978a169790971790965560098054881695891695909517909455600a8054871693881693909317909255600b80548616918716919091179055600c80548516918616919091179055600d80548416918516919091179055600e80549092169216919091179055565b60006106df610e35611035565b8484611125565b600d546001600160a01b031681565b600e546001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6a0b949d854f34fece00000081565b610e9c611035565b6001600160a01b0316610ead61096f565b6001600160a01b031614610ef6576040805162461bcd60e51b8152602060048201819052602482015260008051602061154e833981519152604482015290519081900360640190fd5b6001600160a01b038116610f3b5760405162461bcd60e51b81526004018080602001828103825260268152602001806114b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b604051806040016040528060048152602001631910549560e21b81525081565b6a0e0fe3d8bb9bc7b100000081565b60008282018381101561102e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661107e5760405162461bcd60e51b81526004018080602001828103825260248152602001806115d86024913960400191505060405180910390fd5b6001600160a01b0382166110c35760405162461bcd60e51b81526004018080602001828103825260228152602001806114de6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661116a5760405162461bcd60e51b81526004018080602001828103825260258152602001806115b36025913960400191505060405180910390fd5b6001600160a01b0382166111af5760405162461bcd60e51b81526004018080602001828103825260238152602001806114736023913960400191505060405180910390fd5b6111ba83838361096a565b6111f781604051806060016040528060268152602001611500602691396001600160a01b0386166000908152600160205260409020549190611282565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546112269082610fd4565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112d65781810151838201526020016112be565b50505050905090810190601f1680156113035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661135e5760405162461bcd60e51b81526004018080602001828103825260218152602001806115926021913960400191505060405180910390fd5b61136a8260008361096a565b6113a781604051806060016040528060228152602001611496602291396001600160a01b0385166000908152600160205260409020549190611282565b6001600160a01b0383166000908152600160205260409020556003546113cd9082611415565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008282111561146c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f2344ca908dc6a4f43e48147345ffd5fa396d579587fbb5035423520f32a454264736f6c63430007060033

Deployed Bytecode Sourcemap

25494:3407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25851:33;;;:::i;:::-;;;;-1:-1:-1;;;;;25851:33:0;;;;;;;;;;;;;;13194:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26326:76;;;:::i;:::-;;;;;;;;;;;;;;;;15340:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15340:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25965:27;;;:::i;25891:32::-;;;:::i;14293:108::-;;;:::i;15991:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15991:321:0;;;;;;;;;;;;;;;;;:::i;25999:33::-;;;:::i;26444:74::-;;;:::i;26662:69::-;;;:::i;25649:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14137:91;;;:::i;16721:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16721:218:0;;;;;;;;:::i;22512:91::-;;;;;;;;;;;;;;;;-1:-1:-1;22512:91:0;;:::i;:::-;;26108:75;;;:::i;26872:68::-;;;:::i;14464:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14464:127:0;-1:-1:-1;;;;;14464:127:0;;:::i;24912:148::-;;;:::i;22922:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22922:295:0;;;;;;;;:::i;24261:87::-;;;:::i;25691:74::-;;;:::i;13404:95::-;;;:::i;26218:73::-;;;:::i;25814:30::-;;;:::i;28143:755::-;;;:::i;26970:68::-;;;:::i;25774:33::-;;;:::i;25555:42::-;;;:::i;17442:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17442:269:0;;;;;;;;:::i;27241:894::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27241:894:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14804:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14804:175:0;;;;;;;;:::i;26039:27::-;;;:::i;26073:26::-;;;:::i;15042:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15042:151:0;;;;;;;;;;:::i;26554:70::-;;;:::i;25215:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25215:244:0;-1:-1:-1;;;;;25215:244:0;;:::i;25930:28::-;;;:::i;25604:38::-;;;:::i;26762:76::-;;;:::i;25851:33::-;;;-1:-1:-1;;;;;25851:33:0;;:::o;13194:91::-;13272:5;13265:12;;;;;;;;-1:-1:-1;;13265:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13239:13;;13265:12;;13272:5;;13265:12;;13272:5;13265:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13194:91;:::o;26326:76::-;26368:34;26326:76;:::o;15340:169::-;15423:4;15440:39;15449:12;:10;:12::i;:::-;15463:7;15472:6;15440:8;:39::i;:::-;-1:-1:-1;15497:4:0;15340:169;;;;:::o;25965:27::-;;;-1:-1:-1;;;;;25965:27:0;;:::o;25891:32::-;;;-1:-1:-1;;;;;25891:32:0;;:::o;14293:108::-;14381:12;;14293:108;:::o;15991:321::-;16097:4;16114:36;16124:6;16132:9;16143:6;16114:9;:36::i;:::-;16161:121;16170:6;16178:12;:10;:12::i;:::-;16192:89;16230:6;16192:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16192:19:0;;;;;;:11;:19;;;;;;16212:12;:10;:12::i;:::-;-1:-1:-1;;;;;16192:33:0;;;;;;;;;;;;-1:-1:-1;16192:33:0;;;:89;:37;:89::i;:::-;16161:8;:121::i;:::-;-1:-1:-1;16300:4:0;15991:321;;;;;:::o;25999:33::-;;;-1:-1:-1;;;;;25999:33:0;;:::o;26444:74::-;26485:33;26444:74;:::o;26662:69::-;26697:34;26662:69;:::o;25649:35::-;25682:2;25649:35;:::o;14137:91::-;14211:9;;;;14137:91;:::o;16721:218::-;16809:4;16826:83;16835:12;:10;:12::i;:::-;16849:7;16858:50;16897:10;16858:11;:25;16870:12;:10;:12::i;:::-;-1:-1:-1;;;;;16858:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16858:25:0;;;:34;;;;;;;;;;;:38;:50::i;22512:91::-;22568:27;22574:12;:10;:12::i;:::-;22588:6;22568:5;:27::i;:::-;22512:91;:::o;26108:75::-;26150:33;26108:75;:::o;26872:68::-;26907:33;26872:68;:::o;14464:127::-;-1:-1:-1;;;;;14565:18:0;14538:7;14565:18;;;:9;:18;;;;;;;14464:127::o;24912:148::-;24492:12;:10;:12::i;:::-;-1:-1:-1;;;;;24481:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24481:23:0;;24473:68;;;;;-1:-1:-1;;;24473:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24473:68:0;;;;;;;;;;;;;;;25019:1:::1;25003:6:::0;;24982:40:::1;::::0;-1:-1:-1;;;;;25003:6:0;;::::1;::::0;24982:40:::1;::::0;25019:1;;24982:40:::1;25050:1;25033:19:::0;;-1:-1:-1;;;;;;25033:19:0::1;::::0;;24912:148::o;22922:295::-;22999:26;23028:84;23065:6;23028:84;;;;;;;;;;;;;;;;;:32;23038:7;23047:12;:10;:12::i;:::-;23028:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;22999:113;;23125:51;23134:7;23143:12;:10;:12::i;:::-;23157:18;23125:8;:51::i;:::-;23187:22;23193:7;23202:6;23187:5;:22::i;:::-;22922:295;;;:::o;24261:87::-;24307:7;24334:6;-1:-1:-1;;;;;24334:6:0;24261:87;:::o;25691:74::-;25730:35;25691:74;:::o;13404:95::-;13484:7;13477:14;;;;;;;;-1:-1:-1;;13477:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13451:13;;13477:14;;13484:7;;13477:14;;13484:7;13477:14;;;;;;;;;;;;;;;;;;;;;;;;26218:73;26257:34;26218:73;:::o;25814:30::-;;;-1:-1:-1;;;;;25814:30:0;;:::o;28143:755::-;24492:12;:10;:12::i;:::-;-1:-1:-1;;;;;24481:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24481:23:0;;24473:68;;;;;-1:-1:-1;;;24473:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24473:68:0;;;;;;;;;;;;;;;28210:23:::1;::::0;-1:-1:-1;;;28210:23:0;::::1;;;28209:24;28201:56;;;::::0;;-1:-1:-1;;;28201:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;28201:56:0;;;;;;;;;;;;;::::1;;28295:18;::::0;28270:61:::1;::::0;28288:4:::1;::::0;28295:18:::1;::::0;::::1;-1:-1:-1::0;;;;;28295:18:0::1;26150:33:::0;28270:9:::1;:61::i;:::-;28367:15;::::0;28342:55:::1;::::0;28360:4:::1;::::0;-1:-1:-1;;;;;28367:15:0::1;26257:34:::0;28342:9:::1;:55::i;:::-;28433:18;::::0;28408:61:::1;::::0;28426:4:::1;::::0;-1:-1:-1;;;;;28433:18:0::1;26368:34:::0;28408:9:::1;:61::i;:::-;28505:17;::::0;28480:59:::1;::::0;28498:4:::1;::::0;-1:-1:-1;;;;;28505:17:0::1;26485:33:::0;28480:9:::1;:59::i;:::-;28575:13;::::0;28550:50:::1;::::0;28568:4:::1;::::0;-1:-1:-1;;;;;28575:13:0::1;26590:34:::0;28550:9:::1;:50::i;:::-;28636:12;::::0;28611:48:::1;::::0;28629:4:::1;::::0;-1:-1:-1;;;;;28636:12:0::1;26697:34:::0;28611:9:::1;:48::i;:::-;28695:18;::::0;28670:61:::1;::::0;28688:4:::1;::::0;-1:-1:-1;;;;;28695:18:0::1;26804:34:::0;28670:9:::1;:61::i;:::-;28767:12;::::0;28742:48:::1;::::0;28760:4:::1;::::0;-1:-1:-1;;;;;28767:12:0::1;26907:33:::0;28742:9:::1;:48::i;:::-;28826:11;::::0;28801:46:::1;::::0;28819:4:::1;::::0;-1:-1:-1;;;;;28826:11:0::1;27004:34:::0;28801:9:::1;:46::i;:::-;28860:23;:30:::0;;-1:-1:-1;;;;28860:30:0::1;-1:-1:-1::0;;;28860:30:0::1;::::0;;28143:755::o;26970:68::-;27004:34;26970:68;:::o;25774:33::-;;;;;;-1:-1:-1;;;;;25774:33:0;;:::o;25555:42::-;;;;;;;;;;;;;;-1:-1:-1;;;25555:42:0;;;;:::o;17442:269::-;17535:4;17552:129;17561:12;:10;:12::i;:::-;17575:7;17584:96;17623:15;17584:96;;;;;;;;;;;;;;;;;:11;:25;17596:12;:10;:12::i;:::-;-1:-1:-1;;;;;17584:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17584:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;27241:894::-;24492:12;:10;:12::i;:::-;-1:-1:-1;;;;;24481:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24481:23:0;;24473:68;;;;;-1:-1:-1;;;24473:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24473:68:0;;;;;;;;;;;;;;;27640:23:::1;::::0;-1:-1:-1;;;27640:23:0;::::1;;;27639:24;27631:56;;;::::0;;-1:-1:-1;;;27631:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27631:56:0;;;;;;;;;;;;;::::1;;27735:18;:40:::0;;-1:-1:-1;;;;;;27735:40:0::1;;-1:-1:-1::0;;;;;27735:40:0;;::::1;;;::::0;;27786:15:::1;:34:::0;;-1:-1:-1;;;;;;27786:34:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;27831:18:::1;:40:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;27882:17:::1;:38:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;27931:13:::1;:30:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;27972:12:::1;:28:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;28011:18:::1;:40:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;28062:12:::1;:28:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;28101:11:::1;:26:::0;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;27241:894::o;14804:175::-;14890:4;14907:42;14917:12;:10;:12::i;:::-;14931:9;14942:6;14907:9;:42::i;26039:27::-;;;-1:-1:-1;;;;;26039:27:0;;:::o;26073:26::-;;;-1:-1:-1;;;;;26073:26:0;;:::o;15042:151::-;-1:-1:-1;;;;;15158:18:0;;;15131:7;15158:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15042:151::o;26554:70::-;26590:34;26554:70;:::o;25215:244::-;24492:12;:10;:12::i;:::-;-1:-1:-1;;;;;24481:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24481:23:0;;24473:68;;;;;-1:-1:-1;;;24473:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24473:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25304:22:0;::::1;25296:73;;;;-1:-1:-1::0;;;25296:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25406:6;::::0;;25385:38:::1;::::0;-1:-1:-1;;;;;25385:38:0;;::::1;::::0;25406:6;::::1;::::0;25385:38:::1;::::0;::::1;25434:6;:17:::0;;-1:-1:-1;;;;;;25434:17:0::1;-1:-1:-1::0;;;;;25434:17:0;;;::::1;::::0;;;::::1;::::0;;25215:244::o;25930:28::-;;;-1:-1:-1;;;;;25930:28:0;;:::o;25604:38::-;;;;;;;;;;;;;;-1:-1:-1;;;25604:38:0;;;;:::o;26762:76::-;26804:34;26762:76;:::o;6438:179::-;6496:7;6528:5;;;6552:6;;;;6544:46;;;;;-1:-1:-1;;;6544:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608:1;6438:179;-1:-1:-1;;;6438:179:0:o;613:106::-;701:10;613:106;:::o;20589:346::-;-1:-1:-1;;;;;20691:19:0;;20683:68;;;;-1:-1:-1;;;20683:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20770:21:0;;20762:68;;;;-1:-1:-1;;;20762:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20843:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20895:32;;;;;;;;;;;;;;;;;20589:346;;;:::o;18201:539::-;-1:-1:-1;;;;;18307:20:0;;18299:70;;;;-1:-1:-1;;;18299:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18388:23:0;;18380:71;;;;-1:-1:-1;;;18380:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18464:47;18485:6;18493:9;18504:6;18464:20;:47::i;:::-;18544:71;18566:6;18544:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18544:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18524:17:0;;;;;;;:9;:17;;;;;;:91;;;;18649:20;;;;;;;:32;;18674:6;18649:24;:32::i;:::-;-1:-1:-1;;;;;18626:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;18697:35;;;;;;;18626:20;;18697:35;;;;;;;;;;;;;18201:539;;;:::o;9265:166::-;9351:7;9387:12;9379:6;;;;9371:29;;;;-1:-1:-1;;;9371:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9418:5:0;;;9265:166::o;19733:418::-;-1:-1:-1;;;;;19817:21:0;;19809:67;;;;-1:-1:-1;;;19809:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19889:49;19910:7;19927:1;19931:6;19889:20;:49::i;:::-;19972:68;19995:6;19972:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19972:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;19951:18:0;;;;;;:9;:18;;;;;:89;20066:12;;:24;;20083:6;20066:16;:24::i;:::-;20051:12;:39;20106:37;;;;;;;;20132:1;;-1:-1:-1;;;;;20106:37:0;;;;;;;;;;;;19733:418;;:::o;6900:158::-;6958:7;6991:1;6986;:6;;6978:49;;;;;-1:-1:-1;;;6978:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7045:5:0;;;6900:158::o

Swarm Source

ipfs://f2344ca908dc6a4f43e48147345ffd5fa396d579587fbb5035423520f32a4542
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.