ETH Price: $3,420.92 (+3.79%)

Contract

0x7c84d7E3829e004a49204d650883697BC7f06748
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Trump (TRUMP) (@$0.00)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve212378432024-11-21 18:17:4743 hrs ago1732213067IN
TrumpMeme: TRUMP Token
0 ETH0.001063422.85032264
Approve212293982024-11-20 13:58:112 days ago1732111091IN
TrumpMeme: TRUMP Token
0 ETH0.0006332113.60639834
Approve212288562024-11-20 12:09:233 days ago1732104563IN
TrumpMeme: TRUMP Token
0 ETH0.0002899811.94428014
Approve212141302024-11-18 10:53:355 days ago1731927215IN
TrumpMeme: TRUMP Token
0 ETH0.0006161413.24993537
Approve212123762024-11-18 5:01:235 days ago1731906083IN
TrumpMeme: TRUMP Token
0 ETH0.00043629.43145315
Approve212091222024-11-17 18:08:595 days ago1731866939IN
TrumpMeme: TRUMP Token
0 ETH0.0003487314.4
Approve212091102024-11-17 18:06:355 days ago1731866795IN
TrumpMeme: TRUMP Token
0 ETH0.0007068315.2
Approve212091062024-11-17 18:05:475 days ago1731866747IN
TrumpMeme: TRUMP Token
0 ETH0.0003608414.9
Approve212090912024-11-17 18:02:355 days ago1731866555IN
TrumpMeme: TRUMP Token
0 ETH0.0007254315.6
Approve211942982024-11-15 16:30:357 days ago1731688235IN
TrumpMeme: TRUMP Token
0 ETH0.0014077230.38989698
Transfer211775552024-11-13 8:24:1110 days ago1731486251IN
TrumpMeme: TRUMP Token
0 ETH0.0006979918.19918662
Approve211707362024-11-12 9:34:2311 days ago1731404063IN
TrumpMeme: TRUMP Token
0 ETH0.0015907734.16476812
Approve211701752024-11-12 7:41:2311 days ago1731397283IN
TrumpMeme: TRUMP Token
0 ETH0.0011082623.81408951
Approve211592892024-11-10 19:13:3512 days ago1731266015IN
TrumpMeme: TRUMP Token
0 ETH0.0013331828.77344134
Approve211547762024-11-10 4:08:1113 days ago1731211691IN
TrumpMeme: TRUMP Token
0 ETH0.0005477111.77824832
Transfer211547632024-11-10 4:05:3513 days ago1731211535IN
TrumpMeme: TRUMP Token
0 ETH0.0006306411.37502215
Approve211544522024-11-10 3:02:5913 days ago1731207779IN
TrumpMeme: TRUMP Token
0 ETH0.000443489.5369283
Approve211503692024-11-09 13:22:4714 days ago1731158567IN
TrumpMeme: TRUMP Token
0 ETH0.00057712.3953819
Approve211477752024-11-09 4:41:5914 days ago1731127319IN
TrumpMeme: TRUMP Token
0 ETH0.000300186.4469072
Approve211466972024-11-09 1:06:1114 days ago1731114371IN
TrumpMeme: TRUMP Token
0 ETH0.00042929.26574158
Approve211415172024-11-08 7:46:1115 days ago1731051971IN
TrumpMeme: TRUMP Token
0 ETH0.000388218.37860093
Approve211391642024-11-07 23:50:5915 days ago1731023459IN
TrumpMeme: TRUMP Token
0 ETH0.0006126713.22650586
Approve211320012024-11-06 23:49:5916 days ago1730936999IN
TrumpMeme: TRUMP Token
0 ETH0.0006938914.97584954
Approve211316252024-11-06 22:34:3516 days ago1730932475IN
TrumpMeme: TRUMP Token
0 ETH0.0008678918.64912828
Approve211312152024-11-06 21:11:5916 days ago1730927519IN
TrumpMeme: TRUMP Token
0 ETH0.0016592135.86557727
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Trump

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-30
*/

// SPDX-License-Identifier: Copyleft
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;
    }
}


library SafeMath {
    /**
     * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


pragma solidity ^0.8.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() {
        _transferOwnership(_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 {
        _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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.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 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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;
        _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;
        }
        _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 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 {}
}

pragma solidity ^0.8.0;
contract Trump is Ownable, ERC20 {

    using SafeMath for uint256;

    /**
        Error codes:

        BA: 
            Let me tell you, folks, you've been blacklisted. That's right, you're out. You're done. 
            You've crossed the line, and now you're paying the price. I'm sorry to say it, but that's just the way it is.
            You had your chance, but you blew it. So now, you're on the blacklist. 
            It's not a good place to be, believe me. But you brought it on yourself.

    

        NR:
            Let me make it clear, folks - we haven't even started trading yet. That's right, it's still early days.
            But let me tell you, when we do start trading, it's going to be huge. People are going to be talking about it all
            over the world. We're going to make cryptocurrency great again, believe me. But for now, just be patient. 
            Good things come to those who wait, and trust me, this is going to be worth the wait.


        NA:
            If you think you can transfer an amount that's not between the minimum and maximum values allowed, think again 
            - it's not going to happen on our watch!"

    
     */


    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Trump", "TRUMP") {
        _mint(msg.sender, 450690000000000 * (10**18));
    }

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

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

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

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "NR");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to).add(amount) <= maxHoldingAmount && super.balanceOf(to).add(amount) >= minHoldingAmount, "NA");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020016405472756d760dc1b8152506040518060400160405280600581526020016405452554d560dc1b8152506200006862000062620000bc60201b60201c565b620000c0565b81516200007d9060049060208501906200042b565b508051620000939060059060208401906200042b565b505050620000b6336d163881ee45829983d9edd00000006200011060201b60201c565b62000535565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017a6000838362000207565b80600360008282546200018e9190620004d1565b90915550506001600160a01b03821660009081526001602052604081208054839290620001bd908490620004d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200024a57506001600160a01b0383166000908152600a602052604090205460ff16155b6200027d5760405162461bcd60e51b8152602060048201526002602482015261424160f01b604482015260640162000163565b6009546001600160a01b0316620002f0576000546001600160a01b0384811691161480620002b857506000546001600160a01b038381169116145b620002eb5760405162461bcd60e51b8152602060048201526002602482015261272960f11b604482015260640162000163565b505050565b60065460ff1680156200031057506009546001600160a01b038481169116145b15620002eb5760075462000348826200033485620003a660201b620002c91760201c565b620003c160201b62000a211790919060201c565b1115801562000373575060085462000370826200033485620003a660201b620002c91760201c565b10155b620002eb5760405162461bcd60e51b81526020600482015260026024820152614e4160f01b604482015260640162000163565b6001600160a01b031660009081526001602052604090205490565b600080620003d08385620004d1565b905083811015620004245760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000163565b9392505050565b8280546200043990620004f8565b90600052602060002090601f0160209004810192826200045d5760008555620004a8565b82601f106200047857805160ff1916838001178555620004a8565b82800160010185558215620004a8579182015b82811115620004a85782518255916020019190600101906200048b565b50620004b6929150620004ba565b5090565b5b80821115620004b65760008155600101620004bb565b60008219821115620004f357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050d57607f821691505b602082108114156200052f57634e487b7160e01b600052602260045260246000fd5b50919050565b6116e380620005456000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806349bd5a5e116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610348578063dd62ed3e1461035b578063f2fde38b146103a157600080fd5b80638da5cb5b1461030f57806395d89b411461032d578063a457c2d71461033557600080fd5b8063715018a6116100bd578063715018a6146102f1578063860a32ec146102f957806389f9a1d31461030657600080fd5b806349bd5a5e1461027657806370a08231146102bb57600080fd5b806323b872dd1161013a5780633aa633aa116101145780633aa633aa1461023b578063404e51291461025057806342966c681461026357600080fd5b806323b872dd14610206578063313ce56714610219578063395093511461022857600080fd5b806316c021291161016b57806316c02129146101c857806318160ddd146101eb5780631ab99e12146101fd57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f6103b4565b60405161019c9190611416565b60405180910390f35b6101b86101b33660046114b2565b610446565b604051901515815260200161019c565b6101b86101d63660046114dc565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161019c565b6101ef60085481565b6101b86102143660046114f7565b61045c565b6040516012815260200161019c565b6101b86102363660046114b2565b610547565b61024e610249366004611543565b610590565b005b61024e61025e366004611585565b61068f565b61024e6102713660046115b8565b610766565b6009546102969073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019c565b6101ef6102c93660046114dc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61024e610773565b6006546101b89060ff1681565b6101ef60075481565b60005473ffffffffffffffffffffffffffffffffffffffff16610296565b61018f610800565b6101b86103433660046114b2565b61080f565b6101b86103563660046114b2565b6108e7565b6101ef6103693660046115d1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61024e6103af3660046114dc565b6108f4565b6060600480546103c3906115fb565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef906115fb565b801561043c5780601f106104115761010080835404028352916020019161043c565b820191906000526020600020905b81548152906001019060200180831161041f57829003601f168201915b5050505050905090565b6000610453338484610aa1565b50600192915050565b6000610469848484610c55565b73ffffffffffffffffffffffffffffffffffffffff841660009081526002602090815260408083203384529091529020548281101561052f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61053c8533858403610aa1565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161045391859061058b90869061167e565b610aa1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b60005473ffffffffffffffffffffffffffffffffffffffff163314610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6107703382610f14565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b6107fe600061110a565b565b6060600580546103c3906115fb565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156108d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610526565b6108dd3385858403610aa1565b5060019392505050565b6000610453338484610c55565b60005473ffffffffffffffffffffffffffffffffffffffff163314610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b73ffffffffffffffffffffffffffffffffffffffff8116610a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610526565b6107708161110a565b600080610a2e838561167e565b905083811015610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610526565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff8216610be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cf8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff8216610d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610526565b610da683838361117f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610e5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610ea090849061167e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0691815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610526565b610fc38260008361117f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081208383039055600380548492906110b5908490611696565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c48565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff161580156111db575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16155b611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f42410000000000000000000000000000000000000000000000000000000000006044820152606401610526565b60095473ffffffffffffffffffffffffffffffffffffffff166113075760005473ffffffffffffffffffffffffffffffffffffffff848116911614806112a1575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b611105576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4e520000000000000000000000000000000000000000000000000000000000006044820152606401610526565b60065460ff168015611333575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15611105576007546113718261136b8573ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b90610a21565b111580156113b057506008546113ad8261136b8573ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b10155b611105576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4e410000000000000000000000000000000000000000000000000000000000006044820152606401610526565b600060208083528351808285015260005b8181101561144357858101830151858201604001528201611427565b81811115611455576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146114ad57600080fd5b919050565b600080604083850312156114c557600080fd5b6114ce83611489565b946020939093013593505050565b6000602082840312156114ee57600080fd5b610a9a82611489565b60008060006060848603121561150c57600080fd5b61151584611489565b925061152360208501611489565b9150604084013590509250925092565b803580151581146114ad57600080fd5b6000806000806080858703121561155957600080fd5b61156285611533565b935061157060208601611489565b93969395505050506040820135916060013590565b6000806040838503121561159857600080fd5b6115a183611489565b91506115af60208401611533565b90509250929050565b6000602082840312156115ca57600080fd5b5035919050565b600080604083850312156115e457600080fd5b6115ed83611489565b91506115af60208401611489565b600181811c9082168061160f57607f821691505b60208210811415611649577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156116915761169161164f565b500190565b6000828210156116a8576116a861164f565b50039056fea2646970667358221220bf7303383743b6f934e02d5e28b5cc5761d3a430a297f14da01c274df77e547764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c806349bd5a5e116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610348578063dd62ed3e1461035b578063f2fde38b146103a157600080fd5b80638da5cb5b1461030f57806395d89b411461032d578063a457c2d71461033557600080fd5b8063715018a6116100bd578063715018a6146102f1578063860a32ec146102f957806389f9a1d31461030657600080fd5b806349bd5a5e1461027657806370a08231146102bb57600080fd5b806323b872dd1161013a5780633aa633aa116101145780633aa633aa1461023b578063404e51291461025057806342966c681461026357600080fd5b806323b872dd14610206578063313ce56714610219578063395093511461022857600080fd5b806316c021291161016b57806316c02129146101c857806318160ddd146101eb5780631ab99e12146101fd57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f6103b4565b60405161019c9190611416565b60405180910390f35b6101b86101b33660046114b2565b610446565b604051901515815260200161019c565b6101b86101d63660046114dc565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161019c565b6101ef60085481565b6101b86102143660046114f7565b61045c565b6040516012815260200161019c565b6101b86102363660046114b2565b610547565b61024e610249366004611543565b610590565b005b61024e61025e366004611585565b61068f565b61024e6102713660046115b8565b610766565b6009546102969073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019c565b6101ef6102c93660046114dc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61024e610773565b6006546101b89060ff1681565b6101ef60075481565b60005473ffffffffffffffffffffffffffffffffffffffff16610296565b61018f610800565b6101b86103433660046114b2565b61080f565b6101b86103563660046114b2565b6108e7565b6101ef6103693660046115d1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61024e6103af3660046114dc565b6108f4565b6060600480546103c3906115fb565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef906115fb565b801561043c5780601f106104115761010080835404028352916020019161043c565b820191906000526020600020905b81548152906001019060200180831161041f57829003601f168201915b5050505050905090565b6000610453338484610aa1565b50600192915050565b6000610469848484610c55565b73ffffffffffffffffffffffffffffffffffffffff841660009081526002602090815260408083203384529091529020548281101561052f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61053c8533858403610aa1565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161045391859061058b90869061167e565b610aa1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b60005473ffffffffffffffffffffffffffffffffffffffff163314610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6107703382610f14565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b6107fe600061110a565b565b6060600580546103c3906115fb565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156108d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610526565b6108dd3385858403610aa1565b5060019392505050565b6000610453338484610c55565b60005473ffffffffffffffffffffffffffffffffffffffff163314610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610526565b73ffffffffffffffffffffffffffffffffffffffff8116610a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610526565b6107708161110a565b600080610a2e838561167e565b905083811015610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610526565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff8216610be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cf8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff8216610d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610526565b610da683838361117f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610e5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610ea090849061167e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0691815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610526565b610fc38260008361117f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610526565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081208383039055600380548492906110b5908490611696565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c48565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff161580156111db575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16155b611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f42410000000000000000000000000000000000000000000000000000000000006044820152606401610526565b60095473ffffffffffffffffffffffffffffffffffffffff166113075760005473ffffffffffffffffffffffffffffffffffffffff848116911614806112a1575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b611105576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4e520000000000000000000000000000000000000000000000000000000000006044820152606401610526565b60065460ff168015611333575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15611105576007546113718261136b8573ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b90610a21565b111580156113b057506008546113ad8261136b8573ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b10155b611105576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4e410000000000000000000000000000000000000000000000000000000000006044820152606401610526565b600060208083528351808285015260005b8181101561144357858101830151858201604001528201611427565b81811115611455576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146114ad57600080fd5b919050565b600080604083850312156114c557600080fd5b6114ce83611489565b946020939093013593505050565b6000602082840312156114ee57600080fd5b610a9a82611489565b60008060006060848603121561150c57600080fd5b61151584611489565b925061152360208501611489565b9150604084013590509250925092565b803580151581146114ad57600080fd5b6000806000806080858703121561155957600080fd5b61156285611533565b935061157060208601611489565b93969395505050506040820135916060013590565b6000806040838503121561159857600080fd5b6115a183611489565b91506115af60208401611533565b90509250929050565b6000602082840312156115ca57600080fd5b5035919050565b600080604083850312156115e457600080fd5b6115ed83611489565b91506115af60208401611489565b600181811c9082168061160f57607f821691505b60208210811415611649577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156116915761169161164f565b500190565b6000828210156116a8576116a861164f565b50039056fea2646970667358221220bf7303383743b6f934e02d5e28b5cc5761d3a430a297f14da01c274df77e547764736f6c63430008090033

Deployed Bytecode Sourcemap

23728:2606:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13742:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15909:169;;;;;;:::i;:::-;;:::i;:::-;;;1300:14:1;;1293:22;1275:41;;1263:2;1248:18;15909:169:0;1135:187:1;25089:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14862:108;14950:12;;14862:108;;;1664:25:1;;;1652:2;1637:18;14862:108:0;1518:177:1;25016:31:0;;;;;;16560:492;;;;;;:::i;:::-;;:::i;14704:93::-;;;14787:2;2175:36:1;;2163:2;2148:18;14704:93:0;2033:184:1;17461:215:0;;;;;;:::i;:::-;;:::i;25393:301::-;;;;;;:::i;:::-;;:::i;:::-;;25250:135;;;;;;:::i;:::-;;:::i;26250:81::-;;;;;;:::i;:::-;;:::i;25054:28::-;;;;;;;;;;;;3403:42:1;3391:55;;;3373:74;;3361:2;3346:18;25054:28:0;3227:226:1;15033:127:0;;;;;;:::i;:::-;15134:18;;15107:7;15134:18;;;:9;:18;;;;;;;15033:127;7143:103;;;:::i;24952:19::-;;;;;;;;;24978:31;;;;;;6492:87;6538:7;6565:6;;;6492:87;;13961:104;;;:::i;18179:413::-;;;;;;:::i;:::-;;:::i;15373:175::-;;;;;;:::i;:::-;;:::i;15611:151::-;;;;;;:::i;:::-;15727:18;;;;15700:7;15727:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15611:151;7401:201;;;;;;:::i;:::-;;:::i;13742:100::-;13796:13;13829:5;13822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13742:100;:::o;15909:169::-;15992:4;16009:39;685:10;16032:7;16041:6;16009:8;:39::i;:::-;-1:-1:-1;16066:4:0;15909:169;;;;:::o;16560:492::-;16700:4;16717:36;16727:6;16735:9;16746:6;16717:9;:36::i;:::-;16793:19;;;16766:24;16793:19;;;:11;:19;;;;;;;;685:10;16793:33;;;;;;;;16845:26;;;;16837:79;;;;;;;4367:2:1;16837:79:0;;;4349:21:1;4406:2;4386:18;;;4379:30;4445:34;4425:18;;;4418:62;4516:10;4496:18;;;4489:38;4544:19;;16837:79:0;;;;;;;;;16952:57;16961:6;685:10;17002:6;16983:16;:25;16952:8;:57::i;:::-;-1:-1:-1;17040:4:0;;16560:492;-1:-1:-1;;;;16560:492:0:o;17461:215::-;685:10;17549:4;17598:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;17549:4;;17566:80;;17589:7;;17598:47;;17635:10;;17598:47;:::i;:::-;17566:8;:80::i;25393:301::-;6538:7;6565:6;6712:23;6565:6;685:10;6712:23;6704:68;;;;;;;5098:2:1;6704:68:0;;;5080:21:1;;;5117:18;;;5110:30;5176:34;5156:18;;;5149:62;5228:18;;6704:68:0;4896:356:1;6704:68:0;25533:7:::1;:18:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;25562:13:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;25603:16:::1;:36:::0;25650:16:::1;:36:::0;25393:301::o;25250:135::-;6538:7;6565:6;6712:23;6565:6;685:10;6712:23;6704:68;;;;;;;5098:2:1;6704:68:0;;;5080:21:1;;;5117:18;;;5110:30;5176:34;5156:18;;;5149:62;5228:18;;6704:68:0;4896:356:1;6704:68:0;25339:20:::1;::::0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;25250:135::o;26250:81::-;26299:24;26305:10;26317:5;26299;:24::i;:::-;26250:81;:::o;7143:103::-;6538:7;6565:6;6712:23;6565:6;685:10;6712:23;6704:68;;;;;;;5098:2:1;6704:68:0;;;5080:21:1;;;5117:18;;;5110:30;5176:34;5156:18;;;5149:62;5228:18;;6704:68:0;4896:356:1;6704:68:0;7208:30:::1;7235:1;7208:18;:30::i;:::-;7143:103::o:0;13961:104::-;14017:13;14050:7;14043:14;;;;;:::i;18179:413::-;685:10;18272:4;18316:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;18369:35;;;;18361:85;;;;;;;5459:2:1;18361:85:0;;;5441:21:1;5498:2;5478:18;;;5471:30;5537:34;5517:18;;;5510:62;5608:7;5588:18;;;5581:35;5633:19;;18361:85:0;5257:401:1;18361:85:0;18482:67;685:10;18505:7;18533:15;18514:16;:34;18482:8;:67::i;:::-;-1:-1:-1;18580:4:0;;18179:413;-1:-1:-1;;;18179:413:0:o;15373:175::-;15459:4;15476:42;685:10;15500:9;15511:6;15476:9;:42::i;7401:201::-;6538:7;6565:6;6712:23;6565:6;685:10;6712:23;6704:68;;;;;;;5098:2:1;6704:68:0;;;5080:21:1;;;5117:18;;;5110:30;5176:34;5156:18;;;5149:62;5228:18;;6704:68:0;4896:356:1;6704:68:0;7490:22:::1;::::0;::::1;7482:73;;;::::0;::::1;::::0;;5865:2:1;7482:73:0::1;::::0;::::1;5847:21:1::0;5904:2;5884:18;;;5877:30;5943:34;5923:18;;;5916:62;6014:8;5994:18;;;5987:36;6040:19;;7482:73:0::1;5663:402:1::0;7482:73:0::1;7566:28;7585:8;7566:18;:28::i;1084:181::-:0;1142:7;;1174:5;1178:1;1174;:5;:::i;:::-;1162:17;;1203:1;1198;:6;;1190:46;;;;;;;6272:2:1;1190:46:0;;;6254:21:1;6311:2;6291:18;;;6284:30;6350:29;6330:18;;;6323:57;6397:18;;1190:46:0;6070:351:1;1190:46:0;1256:1;1084:181;-1:-1:-1;;;1084:181:0:o;21863:380::-;21999:19;;;21991:68;;;;;;;6628:2:1;21991:68:0;;;6610:21:1;6667:2;6647:18;;;6640:30;6706:34;6686:18;;;6679:62;6777:6;6757:18;;;6750:34;6801:19;;21991:68:0;6426:400:1;21991:68:0;22078:21;;;22070:68;;;;;;;7033:2:1;22070:68:0;;;7015:21:1;7072:2;7052:18;;;7045:30;7111:34;7091:18;;;7084:62;7182:4;7162:18;;;7155:32;7204:19;;22070:68:0;6831:398:1;22070:68:0;22151:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22203:32;;1664:25:1;;;22203:32:0;;1637:18:1;22203:32:0;;;;;;;;21863:380;;;:::o;19082:733::-;19222:20;;;19214:70;;;;;;;7436:2:1;19214:70:0;;;7418:21:1;7475:2;7455:18;;;7448:30;7514:34;7494:18;;;7487:62;7585:7;7565:18;;;7558:35;7610:19;;19214:70:0;7234:401:1;19214:70:0;19303:23;;;19295:71;;;;;;;7842:2:1;19295:71:0;;;7824:21:1;7881:2;7861:18;;;7854:30;7920:34;7900:18;;;7893:62;7991:5;7971:18;;;7964:33;8014:19;;19295:71:0;7640:399:1;19295:71:0;19379:47;19400:6;19408:9;19419:6;19379:20;:47::i;:::-;19463:17;;;19439:21;19463:17;;;:9;:17;;;;;;19499:23;;;;19491:74;;;;;;;8246:2:1;19491:74:0;;;8228:21:1;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;8395:8;8375:18;;;8368:36;8421:19;;19491:74:0;8044:402:1;19491:74:0;19601:17;;;;;;;;:9;:17;;;;;;19621:22;;;19601:42;;19665:20;;;;;;;;:30;;19637:6;;19601:17;19665:30;;19637:6;;19665:30;:::i;:::-;;;;;;;;19730:9;19713:35;;19722:6;19713:35;;;19741:6;19713:35;;;;1664:25:1;;1652:2;1637:18;;1518:177;19713:35:0;;;;;;;;19203:612;19082:733;;;:::o;20834:591::-;20918:21;;;20910:67;;;;;;;8653:2:1;20910:67:0;;;8635:21:1;8692:2;8672:18;;;8665:30;8731:34;8711:18;;;8704:62;8802:3;8782:18;;;8775:31;8823:19;;20910:67:0;8451:397:1;20910:67:0;20990:49;21011:7;21028:1;21032:6;20990:20;:49::i;:::-;21077:18;;;21052:22;21077:18;;;:9;:18;;;;;;21114:24;;;;21106:71;;;;;;;9055:2:1;21106:71:0;;;9037:21:1;9094:2;9074:18;;;9067:30;9133:34;9113:18;;;9106:62;9204:4;9184:18;;;9177:32;9226:19;;21106:71:0;8853:398:1;21106:71:0;21213:18;;;;;;;:9;:18;;;;;21234:23;;;21213:44;;21279:12;:22;;21251:6;;21213:18;21279:22;;21251:6;;21279:22;:::i;:::-;;;;-1:-1:-1;;21319:37:0;;1664:25:1;;;21345:1:0;;21319:37;;;;;;1652:2:1;1637:18;21319:37:0;1518:177:1;21369:48:0;20899:526;20834:591;;:::o;7762:191::-;7836:16;7855:6;;;7872:17;;;;;;;;;;7905:40;;7855:6;;;;;;;7905:40;;7836:16;7905:40;7825:128;7762:191;:::o;25702:540::-;25854:14;;;;;;;:10;:14;;;;;;;;25853:15;:36;;;;-1:-1:-1;25873:16:0;;;;;;;:10;:16;;;;;;;;25872:17;25853:36;25845:51;;;;;;;9588:2:1;25845:51:0;;;9570:21:1;9627:1;9607:18;;;9600:29;9665:4;9645:18;;;9638:32;9687:18;;25845:51:0;9386:325:1;25845:51:0;25913:13;;:27;:13;25909:128;;6538:7;6565:6;;25965:15;;;6565:6;;25965:15;;:32;;-1:-1:-1;6538:7:0;6565:6;;25984:13;;;6565:6;;25984:13;25965:32;25957:47;;;;;;;9918:2:1;25957:47:0;;;9900:21:1;9957:1;9937:18;;;9930:29;9995:4;9975:18;;;9968:32;10017:18;;25957:47:0;9716:325:1;25909:128:0;26053:7;;;;:32;;;;-1:-1:-1;26072:13:0;;;26064:21;;;26072:13;;26064:21;26053:32;26049:186;;;26145:16;;26110:31;26134:6;26110:19;26126:2;15134:18;;15107:7;15134:18;;;:9;:18;;;;;;;15033:127;26110:19;:23;;:31::i;:::-;:51;;:106;;;;;26200:16;;26165:31;26189:6;26165:19;26181:2;15134:18;;15107:7;15134:18;;;:9;:18;;;;;;;15033:127;26165:31;:51;;26110:106;26102:121;;;;;;;10248:2:1;26102:121:0;;;10230:21:1;10287:1;10267:18;;;10260:29;10325:4;10305:18;;;10298:32;10347:18;;26102:121:0;10046:325:1;14:656;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:196::-;743:20;;803:42;792:54;;782:65;;772:93;;861:1;858;851:12;772:93;675:196;;;:::o;876:254::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;1120:2;1105:18;;;;1092:32;;-1:-1:-1;;;876:254:1:o;1327:186::-;1386:6;1439:2;1427:9;1418:7;1414:23;1410:32;1407:52;;;1455:1;1452;1445:12;1407:52;1478:29;1497:9;1478:29;:::i;1700:328::-;1777:6;1785;1793;1846:2;1834:9;1825:7;1821:23;1817:32;1814:52;;;1862:1;1859;1852:12;1814:52;1885:29;1904:9;1885:29;:::i;:::-;1875:39;;1933:38;1967:2;1956:9;1952:18;1933:38;:::i;:::-;1923:48;;2018:2;2007:9;2003:18;1990:32;1980:42;;1700:328;;;;;:::o;2222:160::-;2287:20;;2343:13;;2336:21;2326:32;;2316:60;;2372:1;2369;2362:12;2387:391;2470:6;2478;2486;2494;2547:3;2535:9;2526:7;2522:23;2518:33;2515:53;;;2564:1;2561;2554:12;2515:53;2587:26;2603:9;2587:26;:::i;:::-;2577:36;;2632:38;2666:2;2655:9;2651:18;2632:38;:::i;:::-;2387:391;;2622:48;;-1:-1:-1;;;;2717:2:1;2702:18;;2689:32;;2768:2;2753:18;2740:32;;2387:391::o;2783:254::-;2848:6;2856;2909:2;2897:9;2888:7;2884:23;2880:32;2877:52;;;2925:1;2922;2915:12;2877:52;2948:29;2967:9;2948:29;:::i;:::-;2938:39;;2996:35;3027:2;3016:9;3012:18;2996:35;:::i;:::-;2986:45;;2783:254;;;;;:::o;3042:180::-;3101:6;3154:2;3142:9;3133:7;3129:23;3125:32;3122:52;;;3170:1;3167;3160:12;3122:52;-1:-1:-1;3193:23:1;;3042:180;-1:-1:-1;3042:180:1:o;3458:260::-;3526:6;3534;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;3626:29;3645:9;3626:29;:::i;:::-;3616:39;;3674:38;3708:2;3697:9;3693:18;3674:38;:::i;3723:437::-;3802:1;3798:12;;;;3845;;;3866:61;;3920:4;3912:6;3908:17;3898:27;;3866:61;3973:2;3965:6;3962:14;3942:18;3939:38;3936:218;;;4010:77;4007:1;4000:88;4111:4;4108:1;4101:15;4139:4;4136:1;4129:15;3936:218;;3723:437;;;:::o;4574:184::-;4626:77;4623:1;4616:88;4723:4;4720:1;4713:15;4747:4;4744:1;4737:15;4763:128;4803:3;4834:1;4830:6;4827:1;4824:13;4821:39;;;4840:18;;:::i;:::-;-1:-1:-1;4876:9:1;;4763:128::o;9256:125::-;9296:4;9324:1;9321;9318:8;9315:34;;;9329:18;;:::i;:::-;-1:-1:-1;9366:9:1;;9256:125::o

Swarm Source

ipfs://bf7303383743b6f934e02d5e28b5cc5761d3a430a297f14da01c274df77e5477

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Trump meme token is a community-driven meme token with zero taxes, LP burned, and renounced ownership.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.