ETH Price: $2,505.97 (-0.41%)
Gas: 1.8 Gwei

Token

Sendoor (SENDOOR)
 

Overview

Max Total Supply

100,000,000 SENDOOR

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,126,676.586812442567267674 SENDOOR

Value
$0.00
0xA71b7c868De1f1898559dAE13ee71beF1eA43962
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:
Sendoor

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-09
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-08
*/

/*

 Sendoor is here to giga send. Community shall make this happen together as a team. I will only be talking through etherscan like sendoor.




*/
// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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 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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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: MEME.sol


pragma solidity ^0.8.4;

contract Sendoor is ERC20, Ownable {

    using SafeMath for uint256;

    mapping(address => bool) private pair;
    bool public tradingOpen;
    uint256 public _maxWalletSize = 2000000 * 10 ** decimals();
    uint256 private _totalSupply = 100000000 * 10 ** decimals();

    constructor() ERC20("Sendoor", "SENDOOR") {

        _mint(msg.sender, 100000000 * 10 ** decimals());
        
    }

    function addPair(address toPair) public onlyOwner {
        require(!pair[toPair], "This pair is already excluded");
        pair[toPair] = true;
    }

    function setTrading(bool _tradingOpen) public onlyOwner {
        tradingOpen = _tradingOpen;
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function removeLimits() public onlyOwner{
        _maxWalletSize = _totalSupply;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

       if(from != owner() && to != owner()) {

            //Trade start check
            if (!tradingOpen) {
                require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            //buy 
            
            if(from != owner() && to != owner() && pair[from]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Amount exceeds maximum wallet size");
                
            }
            
            // transfer
           
            if(from != owner() && to != owner() && !(pair[to]) && !(pair[from])) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Balance exceeds max wallet size!");
            }

       }

       super._transfer(from, to, amount);

    }

}

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":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620000126012600a62000357565b6200002190621e84806200036f565b600855620000326012600a62000357565b62000042906305f5e1006200036f565b6009553480156200005257600080fd5b506040518060400160405280600781526020016629b2b73237b7b960c91b8152506040518060400160405280600781526020016629a2a72227a7a960c91b8152508160039081620000a4919062000435565b506004620000b3828262000435565b505050620000d0620000ca620000ff60201b60201c565b62000103565b620000f933620000e36012600a62000357565b620000f3906305f5e1006200036f565b62000155565b6200051c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c4919062000501565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f390849062000501565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002995781600019048211156200027d576200027d62000242565b808516156200028b57918102915b93841c93908002906200025d565b509250929050565b600082620002b25750600162000351565b81620002c15750600062000351565b8160018114620002da5760028114620002e55762000305565b600191505062000351565b60ff841115620002f957620002f962000242565b50506001821b62000351565b5060208310610133831016604e8410600b84101617156200032a575081810a62000351565b62000336838362000258565b80600019048211156200034d576200034d62000242565b0290505b92915050565b60006200036860ff841683620002a1565b9392505050565b60008160001904831182151516156200038c576200038c62000242565b500290565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003bc57607f821691505b602082108103620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023d57600081815260208120601f850160051c810160208610156200040c5750805b601f850160051c820191505b818110156200042d5782815560010162000418565b505050505050565b81516001600160401b0381111562000451576200045162000391565b6200046981620004628454620003a7565b84620003e3565b602080601f831160018114620004a15760008415620004885750858301515b600019600386901b1c1916600185901b1785556200042d565b600085815260208120601f198616915b82811015620004d257888601518255948401946001909101908401620004b1565b5085821015620004f15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000821982111562000517576200051762000242565b500190565b610f4b806200052c6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610259578063dd62ed3e1461026c578063ea1644d51461027f578063f2fde38b14610292578063ffb54a99146102a557600080fd5b80638f70ccf71461020f5780638f9a55c01461022257806395d89b411461022b578063a457c2d714610233578063a9059cbb1461024657600080fd5b806339509351116100f457806339509351146101a657806370a08231146101b9578063715018a6146101e2578063751039fc146101ec5780638da5cb5b146101f457600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102b2565b6040516101469190610cc6565b60405180910390f35b61016261015d366004610d37565b610344565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610d61565b61035c565b60405160128152602001610146565b6101626101b4366004610d37565b610380565b6101766101c7366004610d9d565b6001600160a01b031660009081526020819052604090205490565b6101ea6103a2565b005b6101ea6103b6565b6005546040516001600160a01b039091168152602001610146565b6101ea61021d366004610dbf565b6103c6565b61017660085481565b6101396103e1565b610162610241366004610d37565b6103f0565b610162610254366004610d37565b610470565b6101ea610267366004610d9d565b61047e565b61017661027a366004610de1565b610513565b6101ea61028d366004610e14565b61053e565b6101ea6102a0366004610d9d565b61054b565b6007546101629060ff1681565b6060600380546102c190610e2d565b80601f01602080910402602001604051908101604052809291908181526020018280546102ed90610e2d565b801561033a5780601f1061030f5761010080835404028352916020019161033a565b820191906000526020600020905b81548152906001019060200180831161031d57829003601f168201915b5050505050905090565b6000336103528185856105c4565b5060019392505050565b60003361036a8582856106e8565b610375858585610762565b506001949350505050565b6000336103528185856103938383610513565b61039d9190610e67565b6105c4565b6103aa610ac6565b6103b46000610b20565b565b6103be610ac6565b600954600855565b6103ce610ac6565b6007805460ff1916911515919091179055565b6060600480546102c190610e2d565b600033816103fe8286610513565b9050838110156104635760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61037582868684036105c4565b600033610352818585610762565b610486610ac6565b6001600160a01b03811660009081526006602052604090205460ff16156104ef5760405162461bcd60e51b815260206004820152601d60248201527f54686973207061697220697320616c7265616479206578636c75646564000000604482015260640161045a565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610546610ac6565b600855565b610553610ac6565b6001600160a01b0381166105b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045a565b6105c181610b20565b50565b6001600160a01b0383166106265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045a565b6001600160a01b0382166106875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106f48484610513565b9050600019811461075c578181101561074f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161045a565b61075c84848484036105c4565b50505050565b6001600160a01b0383166107885760405162461bcd60e51b815260040161045a90610e8d565b6001600160a01b0382166107ae5760405162461bcd60e51b815260040161045a90610ed2565b600081116108105760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161045a565b6005546001600160a01b0384811691161480159061083c57506005546001600160a01b03838116911614155b15610ab65760075460ff166108ce576005546001600160a01b038481169116146108ce5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161045a565b6005546001600160a01b038481169116148015906108fa57506005546001600160a01b03838116911614155b801561091e57506001600160a01b03831660009081526006602052604090205460ff165b156109b05760085481610946846001600160a01b031660009081526020819052604090205490565b6109509190610e67565b11156109b05760405162461bcd60e51b815260206004820152602960248201527f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d2077616044820152686c6c65742073697a6560b81b606482015260840161045a565b6005546001600160a01b038481169116148015906109dc57506005546001600160a01b03838116911614155b8015610a0157506001600160a01b03821660009081526006602052604090205460ff16155b8015610a2657506001600160a01b03831660009081526006602052604090205460ff16155b15610ab65760085481610a4e846001600160a01b031660009081526020819052604090205490565b610a589190610e67565b1115610ab65760405162461bcd60e51b815260206004820152602760248201527f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c65604482015266742073697a652160c81b606482015260840161045a565b610ac1838383610b72565b505050565b6005546001600160a01b031633146103b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161045a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b985760405162461bcd60e51b815260040161045a90610e8d565b6001600160a01b038216610bbe5760405162461bcd60e51b815260040161045a90610ed2565b6001600160a01b03831660009081526020819052604090205481811015610c365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c6d908490610e67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb991815260200190565b60405180910390a361075c565b600060208083528351808285015260005b81811015610cf357858101830151858201604001528201610cd7565b81811115610d05576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d3257600080fd5b919050565b60008060408385031215610d4a57600080fd5b610d5383610d1b565b946020939093013593505050565b600080600060608486031215610d7657600080fd5b610d7f84610d1b565b9250610d8d60208501610d1b565b9150604084013590509250925092565b600060208284031215610daf57600080fd5b610db882610d1b565b9392505050565b600060208284031215610dd157600080fd5b81358015158114610db857600080fd5b60008060408385031215610df457600080fd5b610dfd83610d1b565b9150610e0b60208401610d1b565b90509250929050565b600060208284031215610e2657600080fd5b5035919050565b600181811c90821680610e4157607f821691505b602082108103610e6157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610e8857634e487b7160e01b600052601160045260246000fd5b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea26469706673582212204668c9fc7444e1e7900b8f56185b31ae544c0aaf898d9bec117230ed6fbd9d2b64736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610259578063dd62ed3e1461026c578063ea1644d51461027f578063f2fde38b14610292578063ffb54a99146102a557600080fd5b80638f70ccf71461020f5780638f9a55c01461022257806395d89b411461022b578063a457c2d714610233578063a9059cbb1461024657600080fd5b806339509351116100f457806339509351146101a657806370a08231146101b9578063715018a6146101e2578063751039fc146101ec5780638da5cb5b146101f457600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102b2565b6040516101469190610cc6565b60405180910390f35b61016261015d366004610d37565b610344565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610d61565b61035c565b60405160128152602001610146565b6101626101b4366004610d37565b610380565b6101766101c7366004610d9d565b6001600160a01b031660009081526020819052604090205490565b6101ea6103a2565b005b6101ea6103b6565b6005546040516001600160a01b039091168152602001610146565b6101ea61021d366004610dbf565b6103c6565b61017660085481565b6101396103e1565b610162610241366004610d37565b6103f0565b610162610254366004610d37565b610470565b6101ea610267366004610d9d565b61047e565b61017661027a366004610de1565b610513565b6101ea61028d366004610e14565b61053e565b6101ea6102a0366004610d9d565b61054b565b6007546101629060ff1681565b6060600380546102c190610e2d565b80601f01602080910402602001604051908101604052809291908181526020018280546102ed90610e2d565b801561033a5780601f1061030f5761010080835404028352916020019161033a565b820191906000526020600020905b81548152906001019060200180831161031d57829003601f168201915b5050505050905090565b6000336103528185856105c4565b5060019392505050565b60003361036a8582856106e8565b610375858585610762565b506001949350505050565b6000336103528185856103938383610513565b61039d9190610e67565b6105c4565b6103aa610ac6565b6103b46000610b20565b565b6103be610ac6565b600954600855565b6103ce610ac6565b6007805460ff1916911515919091179055565b6060600480546102c190610e2d565b600033816103fe8286610513565b9050838110156104635760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61037582868684036105c4565b600033610352818585610762565b610486610ac6565b6001600160a01b03811660009081526006602052604090205460ff16156104ef5760405162461bcd60e51b815260206004820152601d60248201527f54686973207061697220697320616c7265616479206578636c75646564000000604482015260640161045a565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610546610ac6565b600855565b610553610ac6565b6001600160a01b0381166105b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045a565b6105c181610b20565b50565b6001600160a01b0383166106265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045a565b6001600160a01b0382166106875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106f48484610513565b9050600019811461075c578181101561074f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161045a565b61075c84848484036105c4565b50505050565b6001600160a01b0383166107885760405162461bcd60e51b815260040161045a90610e8d565b6001600160a01b0382166107ae5760405162461bcd60e51b815260040161045a90610ed2565b600081116108105760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161045a565b6005546001600160a01b0384811691161480159061083c57506005546001600160a01b03838116911614155b15610ab65760075460ff166108ce576005546001600160a01b038481169116146108ce5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161045a565b6005546001600160a01b038481169116148015906108fa57506005546001600160a01b03838116911614155b801561091e57506001600160a01b03831660009081526006602052604090205460ff165b156109b05760085481610946846001600160a01b031660009081526020819052604090205490565b6109509190610e67565b11156109b05760405162461bcd60e51b815260206004820152602960248201527f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d2077616044820152686c6c65742073697a6560b81b606482015260840161045a565b6005546001600160a01b038481169116148015906109dc57506005546001600160a01b03838116911614155b8015610a0157506001600160a01b03821660009081526006602052604090205460ff16155b8015610a2657506001600160a01b03831660009081526006602052604090205460ff16155b15610ab65760085481610a4e846001600160a01b031660009081526020819052604090205490565b610a589190610e67565b1115610ab65760405162461bcd60e51b815260206004820152602760248201527f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c65604482015266742073697a652160c81b606482015260840161045a565b610ac1838383610b72565b505050565b6005546001600160a01b031633146103b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161045a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b985760405162461bcd60e51b815260040161045a90610e8d565b6001600160a01b038216610bbe5760405162461bcd60e51b815260040161045a90610ed2565b6001600160a01b03831660009081526020819052604090205481811015610c365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c6d908490610e67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb991815260200190565b60405180910390a361075c565b600060208083528351808285015260005b81811015610cf357858101830151858201604001528201610cd7565b81811115610d05576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d3257600080fd5b919050565b60008060408385031215610d4a57600080fd5b610d5383610d1b565b946020939093013593505050565b600080600060608486031215610d7657600080fd5b610d7f84610d1b565b9250610d8d60208501610d1b565b9150604084013590509250925092565b600060208284031215610daf57600080fd5b610db882610d1b565b9392505050565b600060208284031215610dd157600080fd5b81358015158114610db857600080fd5b60008060408385031215610df457600080fd5b610dfd83610d1b565b9150610e0b60208401610d1b565b90509250929050565b600060208284031215610e2657600080fd5b5035919050565b600181811c90821680610e4157607f821691505b602082108103610e6157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610e8857634e487b7160e01b600052601160045260246000fd5b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea26469706673582212204668c9fc7444e1e7900b8f56185b31ae544c0aaf898d9bec117230ed6fbd9d2b64736f6c634300080f0033

Deployed Bytecode Sourcemap

27494:2070:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13958:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;16309:201:0;1053:187:1;15078:108:0;15166:12;;15078:108;;;1391:25:1;;;1379:2;1364:18;15078:108:0;1245:177:1;17090:295:0;;;;;;:::i;:::-;;:::i;14920:93::-;;;15003:2;1902:36:1;;1890:2;1875:18;14920:93:0;1760:184:1;17794:238:0;;;;;;:::i;:::-;;:::i;15249:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15350:18:0;15323:7;15350:18;;;;;;;;;;;;15249:127;26627:103;;;:::i;:::-;;28302:88;;;:::i;25979:87::-;26052:6;;25979:87;;-1:-1:-1;;;;;26052:6:0;;;2286:51:1;;2274:2;2259:18;25979:87:0;2140:203:1;28070:101:0;;;;;;:::i;:::-;;:::i;27647:58::-;;;;;;14177:104;;;:::i;18535:436::-;;;;;;:::i;:::-;;:::i;15582:193::-;;;;;;:::i;:::-;;:::i;27908:154::-;;;;;;:::i;:::-;;:::i;15838:151::-;;;;;;:::i;:::-;;:::i;28179:115::-;;;;;;:::i;:::-;;:::i;26885:201::-;;;;;;:::i;:::-;;:::i;27617:23::-;;;;;;;;;13958:100;14012:13;14045:5;14038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13958:100;:::o;16309:201::-;16392:4;11678:10;16448:32;11678:10;16464:7;16473:6;16448:8;:32::i;:::-;-1:-1:-1;16498:4:0;;16309:201;-1:-1:-1;;;16309:201:0:o;17090:295::-;17221:4;11678:10;17279:38;17295:4;11678:10;17310:6;17279:15;:38::i;:::-;17328:27;17338:4;17344:2;17348:6;17328:9;:27::i;:::-;-1:-1:-1;17373:4:0;;17090:295;-1:-1:-1;;;;17090:295:0:o;17794:238::-;17882:4;11678:10;17938:64;11678:10;17954:7;17991:10;17963:25;11678:10;17954:7;17963:9;:25::i;:::-;:38;;;;:::i;:::-;17938:8;:64::i;26627:103::-;25865:13;:11;:13::i;:::-;26692:30:::1;26719:1;26692:18;:30::i;:::-;26627:103::o:0;28302:88::-;25865:13;:11;:13::i;:::-;28370:12:::1;::::0;28353:14:::1;:29:::0;28302:88::o;28070:101::-;25865:13;:11;:13::i;:::-;28137:11:::1;:26:::0;;-1:-1:-1;;28137:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28070:101::o;14177:104::-;14233:13;14266:7;14259:14;;;;;:::i;18535:436::-;18628:4;11678:10;18628:4;18711:25;11678:10;18728:7;18711:9;:25::i;:::-;18684:52;;18775:15;18755:16;:35;;18747:85;;;;-1:-1:-1;;;18747:85:0;;3893:2:1;18747:85:0;;;3875:21:1;3932:2;3912:18;;;3905:30;3971:34;3951:18;;;3944:62;-1:-1:-1;;;4022:18:1;;;4015:35;4067:19;;18747:85:0;;;;;;;;;18868:60;18877:5;18884:7;18912:15;18893:16;:34;18868:8;:60::i;15582:193::-;15661:4;11678:10;15717:28;11678:10;15734:2;15738:6;15717:9;:28::i;27908:154::-;25865:13;:11;:13::i;:::-;-1:-1:-1;;;;;27978:12:0;::::1;;::::0;;;:4:::1;:12;::::0;;;;;::::1;;27977:13;27969:55;;;::::0;-1:-1:-1;;;27969:55:0;;4299:2:1;27969:55:0::1;::::0;::::1;4281:21:1::0;4338:2;4318:18;;;4311:30;4377:31;4357:18;;;4350:59;4426:18;;27969:55:0::1;4097:353:1::0;27969:55:0::1;-1:-1:-1::0;;;;;28035:12:0::1;;::::0;;;:4:::1;:12;::::0;;;;:19;;-1:-1:-1;;28035:19:0::1;28050:4;28035:19;::::0;;27908:154::o;15838:151::-;-1:-1:-1;;;;;15954:18:0;;;15927:7;15954:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15838:151::o;28179:115::-;25865:13;:11;:13::i;:::-;28256:14:::1;:30:::0;28179:115::o;26885:201::-;25865:13;:11;:13::i;:::-;-1:-1:-1;;;;;26974:22:0;::::1;26966:73;;;::::0;-1:-1:-1;;;26966:73:0;;4657:2:1;26966:73:0::1;::::0;::::1;4639:21:1::0;4696:2;4676:18;;;4669:30;4735:34;4715:18;;;4708:62;-1:-1:-1;;;4786:18:1;;;4779:36;4832:19;;26966:73:0::1;4455:402:1::0;26966:73:0::1;27050:28;27069:8;27050:18;:28::i;:::-;26885:201:::0;:::o;22160:380::-;-1:-1:-1;;;;;22296:19:0;;22288:68;;;;-1:-1:-1;;;22288:68:0;;5064:2:1;22288:68:0;;;5046:21:1;5103:2;5083:18;;;5076:30;5142:34;5122:18;;;5115:62;-1:-1:-1;;;5193:18:1;;;5186:34;5237:19;;22288:68:0;4862:400:1;22288:68:0;-1:-1:-1;;;;;22375:21:0;;22367:68;;;;-1:-1:-1;;;22367:68:0;;5469:2:1;22367:68:0;;;5451:21:1;5508:2;5488:18;;;5481:30;5547:34;5527:18;;;5520:62;-1:-1:-1;;;5598:18:1;;;5591:32;5640:19;;22367:68:0;5267:398:1;22367:68:0;-1:-1:-1;;;;;22448:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22500:32;;1391:25:1;;;22500:32:0;;1364:18:1;22500:32:0;;;;;;;22160:380;;;:::o;22831:453::-;22966:24;22993:25;23003:5;23010:7;22993:9;:25::i;:::-;22966:52;;-1:-1:-1;;23033:16:0;:37;23029:248;;23115:6;23095:16;:26;;23087:68;;;;-1:-1:-1;;;23087:68:0;;5872:2:1;23087:68:0;;;5854:21:1;5911:2;5891:18;;;5884:30;5950:31;5930:18;;;5923:59;5999:18;;23087:68:0;5670:353:1;23087:68:0;23199:51;23208:5;23215:7;23243:6;23224:16;:25;23199:8;:51::i;:::-;22955:329;22831:453;;;:::o;28398:1161::-;-1:-1:-1;;;;;28530:18:0;;28522:68;;;;-1:-1:-1;;;28522:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28609:16:0;;28601:64;;;;-1:-1:-1;;;28601:64:0;;;;;;;:::i;:::-;28693:1;28684:6;:10;28676:64;;;;-1:-1:-1;;;28676:64:0;;7040:2:1;28676:64:0;;;7022:21:1;7079:2;7059:18;;;7052:30;7118:34;7098:18;;;7091:62;-1:-1:-1;;;7169:18:1;;;7162:39;7218:19;;28676:64:0;6838:405:1;28676:64:0;26052:6;;-1:-1:-1;;;;;28755:15:0;;;26052:6;;28755:15;;;;:32;;-1:-1:-1;26052:6:0;;-1:-1:-1;;;;;28774:13:0;;;26052:6;;28774:13;;28755:32;28752:753;;;28844:11;;;;28839:144;;26052:6;;-1:-1:-1;;;;;28884:15:0;;;26052:6;;28884:15;28876:91;;;;-1:-1:-1;;;28876:91:0;;7450:2:1;28876:91:0;;;7432:21:1;7489:2;7469:18;;;7462:30;7528:34;7508:18;;;7501:62;7599:33;7579:18;;;7572:61;7650:19;;28876:91:0;7248:427:1;28876:91:0;26052:6;;-1:-1:-1;;;;;29036:15:0;;;26052:6;;29036:15;;;;:32;;-1:-1:-1;26052:6:0;;-1:-1:-1;;;;;29055:13:0;;;26052:6;;29055:13;;29036:32;:46;;;;-1:-1:-1;;;;;;29072:10:0;;;;;;:4;:10;;;;;;;;29036:46;29033:198;;;29137:14;;29127:6;29111:13;29121:2;-1:-1:-1;;;;;15350:18:0;15323:7;15350:18;;;;;;;;;;;;15249:127;29111:13;:22;;;;:::i;:::-;:40;;29103:94;;;;-1:-1:-1;;;29103:94:0;;7882:2:1;29103:94:0;;;7864:21:1;7921:2;7901:18;;;7894:30;7960:34;7940:18;;;7933:62;-1:-1:-1;;;8011:18:1;;;8004:39;8060:19;;29103:94:0;7680:405:1;29103:94:0;26052:6;;-1:-1:-1;;;;;29300:15:0;;;26052:6;;29300:15;;;;:32;;-1:-1:-1;26052:6:0;;-1:-1:-1;;;;;29319:13:0;;;26052:6;;29319:13;;29300:32;:47;;;;-1:-1:-1;;;;;;29338:8:0;;;;;;:4;:8;;;;;;;;29336:11;29300:47;:64;;;;-1:-1:-1;;;;;;29353:10:0;;;;;;:4;:10;;;;;;;;29351:13;29300:64;29297:196;;;29419:14;;29409:6;29393:13;29403:2;-1:-1:-1;;;;;15350:18:0;15323:7;15350:18;;;;;;;;;;;;15249:127;29393:13;:22;;;;:::i;:::-;:40;;29385:92;;;;-1:-1:-1;;;29385:92:0;;8292:2:1;29385:92:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;-1:-1:-1;;;8421:18:1;;;8414:37;8468:19;;29385:92:0;8090:403:1;29385:92:0;29516:33;29532:4;29538:2;29542:6;29516:15;:33::i;:::-;28398:1161;;;:::o;26144:132::-;26052:6;;-1:-1:-1;;;;;26052:6:0;11678:10;26208:23;26200:68;;;;-1:-1:-1;;;26200:68:0;;8700:2:1;26200:68:0;;;8682:21:1;;;8719:18;;;8712:30;8778:34;8758:18;;;8751:62;8830:18;;26200:68:0;8498:356:1;27246:191:0;27339:6;;;-1:-1:-1;;;;;27356:17:0;;;-1:-1:-1;;;;;;27356:17:0;;;;;;;27389:40;;27339:6;;;27356:17;27339:6;;27389:40;;27320:16;;27389:40;27309:128;27246:191;:::o;19441:671::-;-1:-1:-1;;;;;19572:18:0;;19564:68;;;;-1:-1:-1;;;19564:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19651:16:0;;19643:64;;;;-1:-1:-1;;;19643:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19793:15:0;;19771:19;19793:15;;;;;;;;;;;19827:21;;;;19819:72;;;;-1:-1:-1;;;19819:72:0;;9061:2:1;19819:72:0;;;9043:21:1;9100:2;9080:18;;;9073:30;9139:34;9119:18;;;9112:62;-1:-1:-1;;;9190:18:1;;;9183:36;9236:19;;19819:72:0;8859:402:1;19819:72:0;-1:-1:-1;;;;;19927:15:0;;;:9;:15;;;;;;;;;;;19945:20;;;19927:38;;19987:13;;;;;;;;:23;;19959:6;;19927:9;19987:23;;19959:6;;19987:23;:::i;:::-;;;;;;;;20043:2;-1:-1:-1;;;;;20028:26:0;20037:4;-1:-1:-1;;;;;20028:26:0;;20047:6;20028:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;20028:26:0;;;;;;;;20067:37;28398:1161;14:597:1;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;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:273::-;2404:6;2457:2;2445:9;2436:7;2432:23;2428:32;2425:52;;;2473:1;2470;2463:12;2425:52;2512:9;2499:23;2565:5;2558:13;2551:21;2544:5;2541:32;2531:60;;2587:1;2584;2577:12;2626:260;2694:6;2702;2755:2;2743:9;2734:7;2730:23;2726:32;2723:52;;;2771:1;2768;2761:12;2723:52;2794:29;2813:9;2794:29;:::i;:::-;2784:39;;2842:38;2876:2;2865:9;2861:18;2842:38;:::i;:::-;2832:48;;2626:260;;;;;:::o;2891:180::-;2950:6;3003:2;2991:9;2982:7;2978:23;2974:32;2971:52;;;3019:1;3016;3009:12;2971:52;-1:-1:-1;3042:23:1;;2891:180;-1:-1:-1;2891:180:1:o;3076:380::-;3155:1;3151:12;;;;3198;;;3219:61;;3273:4;3265:6;3261:17;3251:27;;3219:61;3326:2;3318:6;3315:14;3295:18;3292:38;3289:161;;3372:10;3367:3;3363:20;3360:1;3353:31;3407:4;3404:1;3397:15;3435:4;3432:1;3425:15;3289:161;;3076:380;;;:::o;3461:225::-;3501:3;3532:1;3528:6;3525:1;3522:13;3519:136;;;3577:10;3572:3;3568:20;3565:1;3558:31;3612:4;3609:1;3602:15;3640:4;3637:1;3630:15;3519:136;-1:-1:-1;3671:9:1;;3461:225::o;6028:401::-;6230:2;6212:21;;;6269:2;6249:18;;;6242:30;6308:34;6303:2;6288:18;;6281:62;-1:-1:-1;;;6374:2:1;6359:18;;6352:35;6419:3;6404:19;;6028:401::o;6434:399::-;6636:2;6618:21;;;6675:2;6655:18;;;6648:30;6714:34;6709:2;6694:18;;6687:62;-1:-1:-1;;;6780:2:1;6765:18;;6758:33;6823:3;6808:19;;6434:399::o

Swarm Source

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