ETH Price: $3,063.31 (+2.78%)
Gas: 1 Gwei

Token

Frank the Tank (FRANKTANK)
 

Overview

Max Total Supply

716,196,700,000,000 FRANKTANK

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000,000,000,000 FRANKTANK

Value
$0.00
0x8a50255fd6059b5e1f0f8a1a504b0b3f2eb9cfa7
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:
FrankTheTankToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-21
*/

// 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/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/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.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

// 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: contracts/FrankTheTank.sol


pragma solidity >=0.7.1 < 0.9.0;
pragma abicoder v2;









contract FrankTheTankToken is ERC20, Ownable, ERC20Burnable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;
    mapping(address => bool) controllers;

    uint256 private _totalSupply;
    uint256 private MAXSUP;
    uint256 constant MAXIMUMSUPPLY=7161967 * 10**8;

    event tokensBurned(address indexed owner,uint256 amount,string message);
    event tokensMinted(address indexed owner,uint256 amount,string message);

    constructor() ERC20("Frank the Tank", "FRANKTANK") 
    {

        _totalSupply = _totalSupply.add(MAXIMUMSUPPLY *10**decimals());
        MAXSUP=MAXSUP.add(MAXIMUMSUPPLY *10**decimals());
        _balances[msg.sender] = _balances[msg.sender].add(MAXIMUMSUPPLY *10**decimals());

        _mint(msg.sender, MAXIMUMSUPPLY * 10**18);
        emit tokensMinted(msg.sender,MAXIMUMSUPPLY *10**decimals(),"Initial supply of tokens minted.");
    }

    receive() external payable { }

    function burn(uint256 value) public override onlyOwner {
        _burn(msg.sender, value *10**decimals());
        emit tokensBurned(msg.sender,value *10**decimals(),"Tokens burned.");
    }

    function burnFrom(address account, uint256 amount) public override {
        if (controllers[msg.sender]) {
            _burn(account, amount *10**decimals());
        }
        else {
            super.burnFrom(account, amount *10**decimals());
        }
    }

    function addController(address controller) external onlyOwner {
        controllers[controller] = true;
    }

    function removeController(address controller) external onlyOwner {
        controllers[controller] = false;
    }

    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }

    function maxSupply() public  pure returns (uint256) {
        return MAXIMUMSUPPLY;
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        require(sender == msg.sender);
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        _transfer(sender, recipient, amount);
        return true;
    }

// ***
// AirDrop
// ***

    function airDropCustom(address from, address[] calldata addresses, uint256[] calldata tokens) external onlyOwner {

        require(addresses.length < 501,"GAS Error: max airdrop limit is 500 addresses");
        require(addresses.length == tokens.length,"Mismatch between Address and token count");

        uint256 SCCC = 0;

        for(uint i=0; i < addresses.length; i++){
            SCCC = SCCC + tokens[i]*10**decimals();
        }

        require(balanceOf(from) >= SCCC, "Not enough tokens in wallet");

        for(uint i=0; i < addresses.length; i++){
            _basicTransfer(from,addresses[i],tokens[i]*10**decimals());
        }
        
    }

    function airDropFixed(address from, address[] calldata addresses, uint256 tokens) external onlyOwner {

        require(addresses.length < 801,"GAS Error: max airdrop limit is 800 addresses");

        uint256 SCCC = tokens*10**decimals() * addresses.length;

        require(balanceOf(from) >= SCCC, "Not enough tokens in wallet");

        for(uint i=0; i < addresses.length; i++){
            _basicTransfer(from,addresses[i],tokens*10**decimals());
        }
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"tokensBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"tokensMinted","type":"event"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"airDropCustom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"airDropFixed","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604080518082018252600e81526d4672616e6b207468652054616e6b60901b6020808301918252835180850190945260098452684652414e4b54414e4b60b81b90840152815191929162000069916003916200035c565b5080516200007f9060049060208401906200035c565b5050506200009c620000966200022960201b60201c565b6200022d565b620000d8620000ae6012600a62000515565b620000c19066028b6089e48f0062000526565b6008546200027f60201b62000af61790919060201c565b60085562000117620000ed6012600a62000515565b620001009066028b6089e48f0062000526565b6009546200027f60201b62000af61790919060201c565b600955620001636200012c6012600a62000515565b6200013f9066028b6089e48f0062000526565b33600090815260066020908152604090912054919062000af66200027f821b17901c565b336000818152600660205260409020919091556200019c906200019666028b6089e48f00670de0b6b3a764000062000526565b62000296565b337f8d54cf4376f9d10619fbb6aded215dcdffc1b80415e0750f5064018278632d07620001cc6012600a62000515565b620001df9066028b6089e48f0062000526565b604080519182526020808301829052908201527f496e697469616c20737570706c79206f6620746f6b656e73206d696e7465642e606082015260800160405180910390a2620005a0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006200028d828462000548565b90505b92915050565b6001600160a01b038216620002f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000305919062000548565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8280546200036a9062000563565b90600052602060002090601f0160209004810192826200038e5760008555620003d9565b82601f10620003a957805160ff1916838001178555620003d9565b82800160010185558215620003d9579182015b82811115620003d9578251825591602001919060010190620003bc565b50620003e7929150620003eb565b5090565b5b80821115620003e75760008155600101620003ec565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004595781600019048211156200043d576200043d62000402565b808516156200044b57918102915b93841c93908002906200041d565b509250929050565b600082620004725750600162000290565b81620004815750600062000290565b81600181146200049a5760028114620004a557620004c5565b600191505062000290565b60ff841115620004b957620004b962000402565b50506001821b62000290565b5060208310610133831016604e8410600b8410161715620004ea575081810a62000290565b620004f6838362000418565b80600019048211156200050d576200050d62000402565b029392505050565b60006200028d60ff84168362000461565b600081600019048311821515161562000543576200054362000402565b500290565b600082198211156200055e576200055e62000402565b500190565b600181811c908216806200057857607f821691505b602082108114156200059a57634e487b7160e01b600052602260045260246000fd5b50919050565b61157080620005b06000396000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a7fc7a071161006f578063a7fc7a071461033a578063a9059cbb1461035a578063d5abeb011461037a578063dd62ed3e14610394578063f2fde38b146103b4578063f6a74ed7146103d457600080fd5b8063715018a6146102a857806379cc6790146102bd5780638da5cb5b146102dd57806395d89b4114610305578063a457c2d71461031a57600080fd5b806339509351116100f257806339509351146101f057806342966c6814610210578063442a583d1461023257806370a0823114610252578063713e4ae51461028857600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b4578063313ce567146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103f4565b60405161015c9190611129565b60405180910390f35b34801561017157600080fd5b5061018561018036600461119a565b610486565b604051901515815260200161015c565b3480156101a157600080fd5b506008545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf3660046111c4565b6104a0565b3480156101e057600080fd5b506040516012815260200161015c565b3480156101fc57600080fd5b5061018561020b36600461119a565b6104c4565b34801561021c57600080fd5b5061023061022b366004611200565b6104e6565b005b34801561023e57600080fd5b5061023061024d366004611265565b610580565b34801561025e57600080fd5b506101a661026d3660046112bf565b6001600160a01b031660009081526020819052604090205490565b34801561029457600080fd5b506102306102a33660046112da565b6106f3565b3480156102b457600080fd5b5061023061090b565b3480156102c957600080fd5b506102306102d836600461119a565b61091f565b3480156102e957600080fd5b506005546040516001600160a01b03909116815260200161015c565b34801561031157600080fd5b5061014f610965565b34801561032657600080fd5b5061018561033536600461119a565b610974565b34801561034657600080fd5b506102306103553660046112bf565b6109ef565b34801561036657600080fd5b5061018561037536600461119a565b610a1b565b34801561038657600080fd5b5066028b6089e48f006101a6565b3480156103a057600080fd5b506101a66103af36600461135b565b610a29565b3480156103c057600080fd5b506102306103cf3660046112bf565b610a54565b3480156103e057600080fd5b506102306103ef3660046112bf565b610acd565b6060600380546104039061138e565b80601f016020809104026020016040519081016040528092919081815260200182805461042f9061138e565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610b09565b60019150505b92915050565b6000336104ae858285610c2e565b6104b9858585610ca8565b506001949350505050565b6000336104948185856104d78383610a29565b6104e191906113df565b610b09565b6104ee610e4c565b61050f3360125b61050090600a6114db565b61050a90846114ea565b610ea6565b337fcde716650b13ae41f235d679e62500d67355bc41802e6cfc087b67a7850d975f61053d6012600a6114db565b61054790846114ea565b6040805191825260208201819052600e908201526d2a37b5b2b73990313ab93732b21760911b606082015260800160405180910390a250565b610588610e4c565b61032182106105f45760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3830302061646472657373657360981b60648201526084015b60405180910390fd5b6000826106036012600a6114db565b61060d90846114ea565b61061791906114ea565b905080610639866001600160a01b031660009081526020819052604090205490565b10156106875760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c6574000000000060448201526064016105eb565b60005b838110156106eb576106d8868686848181106106a8576106a8611509565b90506020020160208101906106bd91906112bf565b6106c96012600a6114db565b6106d390876114ea565b610fd0565b50806106e38161151f565b91505061068a565b505050505050565b6106fb610e4c565b6101f583106107625760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084016105eb565b8281146107c25760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b60648201526084016105eb565b6000805b8481101561081b576107da6012600a6114db565b8484838181106107ec576107ec611509565b905060200201356107fd91906114ea565b61080790836113df565b9150806108138161151f565b9150506107c6565b508061083c876001600160a01b031660009081526020819052604090205490565b101561088a5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c6574000000000060448201526064016105eb565b60005b84811015610902576108ef878787848181106108ab576108ab611509565b90506020020160208101906108c091906112bf565b6108cc6012600a6114db565b8787868181106108de576108de611509565b905060200201356106d391906114ea565b50806108fa8161151f565b91505061088d565b50505050505050565b610913610e4c565b61091d6000611096565b565b3360009081526007602052604090205460ff1615610946576109428260126104f5565b5050565b610942826109566012600a6114db565b61096090846114ea565b6110e8565b6060600480546104039061138e565b600033816109828286610a29565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105eb565b6104b98286868403610b09565b6109f7610e4c565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600033610494818585610ca8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a5c610e4c565b6001600160a01b038116610ac15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105eb565b610aca81611096565b50565b610ad5610e4c565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610b0282846113df565b9392505050565b6001600160a01b038316610b6b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105eb565b6001600160a01b038216610bcc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610c3a8484610a29565b90506000198114610ca25781811015610c955760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105eb565b610ca28484848403610b09565b50505050565b6001600160a01b038316610d0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105eb565b6001600160a01b038216610d6e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105eb565b6001600160a01b03831660009081526020819052604090205481811015610de65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105eb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ca2565b6005546001600160a01b0316331461091d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105eb565b6001600160a01b038216610f065760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105eb565b6001600160a01b03821660009081526020819052604090205481811015610f7a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105eb565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610c21565b60006001600160a01b0384163314610fe757600080fd5b6040805180820182526014815273496e73756666696369656e742042616c616e636560601b6020808301919091526001600160a01b0387166000908152600690915291909120546110399184906110fd565b6001600160a01b0380861660009081526006602052604080822093909355908516815220546110689083610af6565b6001600160a01b03841660009081526006602052604090205561108c848484610ca8565b5060019392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110f3823383610c2e565b6109428282610ea6565b600081848411156111215760405162461bcd60e51b81526004016105eb9190611129565b505050900390565b600060208083528351808285015260005b818110156111565785810183015185820160400152820161113a565b81811115611168576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461119557600080fd5b919050565b600080604083850312156111ad57600080fd5b6111b68361117e565b946020939093013593505050565b6000806000606084860312156111d957600080fd5b6111e28461117e565b92506111f06020850161117e565b9150604084013590509250925092565b60006020828403121561121257600080fd5b5035919050565b60008083601f84011261122b57600080fd5b50813567ffffffffffffffff81111561124357600080fd5b6020830191508360208260051b850101111561125e57600080fd5b9250929050565b6000806000806060858703121561127b57600080fd5b6112848561117e565b9350602085013567ffffffffffffffff8111156112a057600080fd5b6112ac87828801611219565b9598909750949560400135949350505050565b6000602082840312156112d157600080fd5b610b028261117e565b6000806000806000606086880312156112f257600080fd5b6112fb8661117e565b9450602086013567ffffffffffffffff8082111561131857600080fd5b61132489838a01611219565b9096509450604088013591508082111561133d57600080fd5b5061134a88828901611219565b969995985093965092949392505050565b6000806040838503121561136e57600080fd5b6113778361117e565b91506113856020840161117e565b90509250929050565b600181811c908216806113a257607f821691505b602082108114156113c357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113f2576113f26113c9565b500190565b600181815b80851115611432578160001904821115611418576114186113c9565b8085161561142557918102915b93841c93908002906113fc565b509250929050565b6000826114495750600161049a565b816114565750600061049a565b816001811461146c576002811461147657611492565b600191505061049a565b60ff841115611487576114876113c9565b50506001821b61049a565b5060208310610133831016604e8410600b84101617156114b5575081810a61049a565b6114bf83836113f7565b80600019048211156114d3576114d36113c9565b029392505050565b6000610b0260ff84168361143a565b6000816000190483118215151615611504576115046113c9565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611533576115336113c9565b506001019056fea2646970667358221220ce1fddca4823dd2ac76a50fdaaa1a0e8d76c29173a05cedaeba0e8ed4942f1be64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a7fc7a071161006f578063a7fc7a071461033a578063a9059cbb1461035a578063d5abeb011461037a578063dd62ed3e14610394578063f2fde38b146103b4578063f6a74ed7146103d457600080fd5b8063715018a6146102a857806379cc6790146102bd5780638da5cb5b146102dd57806395d89b4114610305578063a457c2d71461031a57600080fd5b806339509351116100f257806339509351146101f057806342966c6814610210578063442a583d1461023257806370a0823114610252578063713e4ae51461028857600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b4578063313ce567146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103f4565b60405161015c9190611129565b60405180910390f35b34801561017157600080fd5b5061018561018036600461119a565b610486565b604051901515815260200161015c565b3480156101a157600080fd5b506008545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf3660046111c4565b6104a0565b3480156101e057600080fd5b506040516012815260200161015c565b3480156101fc57600080fd5b5061018561020b36600461119a565b6104c4565b34801561021c57600080fd5b5061023061022b366004611200565b6104e6565b005b34801561023e57600080fd5b5061023061024d366004611265565b610580565b34801561025e57600080fd5b506101a661026d3660046112bf565b6001600160a01b031660009081526020819052604090205490565b34801561029457600080fd5b506102306102a33660046112da565b6106f3565b3480156102b457600080fd5b5061023061090b565b3480156102c957600080fd5b506102306102d836600461119a565b61091f565b3480156102e957600080fd5b506005546040516001600160a01b03909116815260200161015c565b34801561031157600080fd5b5061014f610965565b34801561032657600080fd5b5061018561033536600461119a565b610974565b34801561034657600080fd5b506102306103553660046112bf565b6109ef565b34801561036657600080fd5b5061018561037536600461119a565b610a1b565b34801561038657600080fd5b5066028b6089e48f006101a6565b3480156103a057600080fd5b506101a66103af36600461135b565b610a29565b3480156103c057600080fd5b506102306103cf3660046112bf565b610a54565b3480156103e057600080fd5b506102306103ef3660046112bf565b610acd565b6060600380546104039061138e565b80601f016020809104026020016040519081016040528092919081815260200182805461042f9061138e565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610b09565b60019150505b92915050565b6000336104ae858285610c2e565b6104b9858585610ca8565b506001949350505050565b6000336104948185856104d78383610a29565b6104e191906113df565b610b09565b6104ee610e4c565b61050f3360125b61050090600a6114db565b61050a90846114ea565b610ea6565b337fcde716650b13ae41f235d679e62500d67355bc41802e6cfc087b67a7850d975f61053d6012600a6114db565b61054790846114ea565b6040805191825260208201819052600e908201526d2a37b5b2b73990313ab93732b21760911b606082015260800160405180910390a250565b610588610e4c565b61032182106105f45760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3830302061646472657373657360981b60648201526084015b60405180910390fd5b6000826106036012600a6114db565b61060d90846114ea565b61061791906114ea565b905080610639866001600160a01b031660009081526020819052604090205490565b10156106875760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c6574000000000060448201526064016105eb565b60005b838110156106eb576106d8868686848181106106a8576106a8611509565b90506020020160208101906106bd91906112bf565b6106c96012600a6114db565b6106d390876114ea565b610fd0565b50806106e38161151f565b91505061068a565b505050505050565b6106fb610e4c565b6101f583106107625760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084016105eb565b8281146107c25760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b60648201526084016105eb565b6000805b8481101561081b576107da6012600a6114db565b8484838181106107ec576107ec611509565b905060200201356107fd91906114ea565b61080790836113df565b9150806108138161151f565b9150506107c6565b508061083c876001600160a01b031660009081526020819052604090205490565b101561088a5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c6574000000000060448201526064016105eb565b60005b84811015610902576108ef878787848181106108ab576108ab611509565b90506020020160208101906108c091906112bf565b6108cc6012600a6114db565b8787868181106108de576108de611509565b905060200201356106d391906114ea565b50806108fa8161151f565b91505061088d565b50505050505050565b610913610e4c565b61091d6000611096565b565b3360009081526007602052604090205460ff1615610946576109428260126104f5565b5050565b610942826109566012600a6114db565b61096090846114ea565b6110e8565b6060600480546104039061138e565b600033816109828286610a29565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105eb565b6104b98286868403610b09565b6109f7610e4c565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600033610494818585610ca8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a5c610e4c565b6001600160a01b038116610ac15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105eb565b610aca81611096565b50565b610ad5610e4c565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610b0282846113df565b9392505050565b6001600160a01b038316610b6b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105eb565b6001600160a01b038216610bcc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610c3a8484610a29565b90506000198114610ca25781811015610c955760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105eb565b610ca28484848403610b09565b50505050565b6001600160a01b038316610d0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105eb565b6001600160a01b038216610d6e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105eb565b6001600160a01b03831660009081526020819052604090205481811015610de65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105eb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ca2565b6005546001600160a01b0316331461091d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105eb565b6001600160a01b038216610f065760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105eb565b6001600160a01b03821660009081526020819052604090205481811015610f7a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105eb565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610c21565b60006001600160a01b0384163314610fe757600080fd5b6040805180820182526014815273496e73756666696369656e742042616c616e636560601b6020808301919091526001600160a01b0387166000908152600690915291909120546110399184906110fd565b6001600160a01b0380861660009081526006602052604080822093909355908516815220546110689083610af6565b6001600160a01b03841660009081526006602052604090205561108c848484610ca8565b5060019392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110f3823383610c2e565b6109428282610ea6565b600081848411156111215760405162461bcd60e51b81526004016105eb9190611129565b505050900390565b600060208083528351808285015260005b818110156111565785810183015185820160400152820161113a565b81811115611168576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461119557600080fd5b919050565b600080604083850312156111ad57600080fd5b6111b68361117e565b946020939093013593505050565b6000806000606084860312156111d957600080fd5b6111e28461117e565b92506111f06020850161117e565b9150604084013590509250925092565b60006020828403121561121257600080fd5b5035919050565b60008083601f84011261122b57600080fd5b50813567ffffffffffffffff81111561124357600080fd5b6020830191508360208260051b850101111561125e57600080fd5b9250929050565b6000806000806060858703121561127b57600080fd5b6112848561117e565b9350602085013567ffffffffffffffff8111156112a057600080fd5b6112ac87828801611219565b9598909750949560400135949350505050565b6000602082840312156112d157600080fd5b610b028261117e565b6000806000806000606086880312156112f257600080fd5b6112fb8661117e565b9450602086013567ffffffffffffffff8082111561131857600080fd5b61132489838a01611219565b9096509450604088013591508082111561133d57600080fd5b5061134a88828901611219565b969995985093965092949392505050565b6000806040838503121561136e57600080fd5b6113778361117e565b91506113856020840161117e565b90509250929050565b600181811c908216806113a257607f821691505b602082108114156113c357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113f2576113f26113c9565b500190565b600181815b80851115611432578160001904821115611418576114186113c9565b8085161561142557918102915b93841c93908002906113fc565b509250929050565b6000826114495750600161049a565b816114565750600061049a565b816001811461146c576002811461147657611492565b600191505061049a565b60ff841115611487576114876113c9565b50506001821b61049a565b5060208310610133831016604e8410600b84101617156114b5575081810a61049a565b6114bf83836113f7565b80600019048211156114d3576114d36113c9565b029392505050565b6000610b0260ff84168361143a565b6000816000190483118215151615611504576115046113c9565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611533576115336113c9565b506001019056fea2646970667358221220ce1fddca4823dd2ac76a50fdaaa1a0e8d76c29173a05cedaeba0e8ed4942f1be64736f6c63430008090033

Deployed Bytecode Sourcemap

28858:3469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13692:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16043:201;;;;;;;;;;-1:-1:-1;16043:201:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;16043:201:0;1053:187:1;30548:100:0;;;;;;;;;;-1:-1:-1;30628:12:0;;30548:100;;;1391:25:1;;;1379:2;1364:18;30548:100:0;1245:177:1;16824:295:0;;;;;;;;;;-1:-1:-1;16824:295:0;;;;;:::i;:::-;;:::i;14654:93::-;;;;;;;;;;-1:-1:-1;14654:93:0;;14737:2;1902:36:1;;1890:2;1875:18;14654:93:0;1760:184:1;17528:238:0;;;;;;;;;;-1:-1:-1;17528:238:0;;;;;:::i;:::-;;:::i;29829:193::-;;;;;;;;;;-1:-1:-1;29829:193:0;;;;;:::i;:::-;;:::i;:::-;;31845:479;;;;;;;;;;-1:-1:-1;31845:479:0;;;;;:::i;:::-;;:::i;14983:127::-;;;;;;;;;;-1:-1:-1;14983:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;15084:18:0;15057:7;15084:18;;;;;;;;;;;;14983:127;31159:678;;;;;;;;;;-1:-1:-1;31159:678:0;;;;;:::i;:::-;;:::i;27927:103::-;;;;;;;;;;;;;:::i;30030:268::-;;;;;;;;;;-1:-1:-1;30030:268:0;;;;;:::i;:::-;;:::i;27279:87::-;;;;;;;;;;-1:-1:-1;27352:6:0;;27279:87;;-1:-1:-1;;;;;27352:6:0;;;4279:51:1;;4267:2;4252:18;27279:87:0;4133:203:1;13911:104:0;;;;;;;;;;;;;:::i;18269:436::-;;;;;;;;;;-1:-1:-1;18269:436:0;;;;;:::i;:::-;;:::i;30306:111::-;;;;;;;;;;-1:-1:-1;30306:111:0;;;;;:::i;:::-;;:::i;15316:193::-;;;;;;;;;;-1:-1:-1;15316:193:0;;;;;:::i;:::-;;:::i;30656:91::-;;;;;;;;;;-1:-1:-1;29152:15:0;30656:91;;15572:151;;;;;;;;;;-1:-1:-1;15572:151:0;;;;;:::i;:::-;;:::i;28185:201::-;;;;;;;;;;-1:-1:-1;28185:201:0;;;;;:::i;:::-;;:::i;30425:115::-;;;;;;;;;;-1:-1:-1;30425:115:0;;;;;:::i;:::-;;:::i;13692:100::-;13746:13;13779:5;13772:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13692:100;:::o;16043:201::-;16126:4;11414:10;16182:32;11414:10;16198:7;16207:6;16182:8;:32::i;:::-;16232:4;16225:11;;;16043:201;;;;;:::o;16824:295::-;16955:4;11414:10;17013:38;17029:4;11414:10;17044:6;17013:15;:38::i;:::-;17062:27;17072:4;17078:2;17082:6;17062:9;:27::i;:::-;-1:-1:-1;17107:4:0;;16824:295;-1:-1:-1;;;;16824:295:0:o;17528:238::-;17616:4;11414:10;17672:64;11414:10;17688:7;17725:10;17697:25;11414:10;17688:7;17697:9;:25::i;:::-;:38;;;;:::i;:::-;17672:8;:64::i;29829:193::-;27165:13;:11;:13::i;:::-;29895:40:::1;29901:10;14737:2:::0;29924:10:::1;29920:14;::::0;:2:::1;:14;:::i;:::-;29913:21;::::0;:5;:21:::1;:::i;:::-;29895:5;:40::i;:::-;29964:10;29951:63;29982:14;14737:2:::0;29982::::1;:14;:::i;:::-;29975:21;::::0;:5;:21:::1;:::i;:::-;29951:63;::::0;;7024:25:1;;;7080:2;7065:18;;7058:30;;;7124:2;7104:18;;;7097:30;-1:-1:-1;;;7158:2:1;7143:18;;7136:44;7212:3;7197:19;29951:63:0::1;;;;;;;29829:193:::0;:::o;31845:479::-;27165:13;:11;:13::i;:::-;31986:3:::1;31967:22:::0;::::1;31959:79;;;::::0;-1:-1:-1;;;31959:79:0;;7429:2:1;31959:79:0::1;::::0;::::1;7411:21:1::0;7468:2;7448:18;;;7441:30;7507:34;7487:18;;;7480:62;-1:-1:-1;;;7558:18:1;;;7551:43;7611:19;;31959:79:0::1;;;;;;;;;32051:12;32090:9:::0;32073:14:::1;14737:2:::0;32073::::1;:14;:::i;:::-;32066:21;::::0;:6;:21:::1;:::i;:::-;:40;;;;:::i;:::-;32051:55;;32146:4;32127:15;32137:4;-1:-1:-1::0;;;;;15084:18:0;15057:7;15084:18;;;;;;;;;;;;14983:127;32127:15:::1;:23;;32119:63;;;::::0;-1:-1:-1;;;32119:63:0;;7843:2:1;32119:63:0::1;::::0;::::1;7825:21:1::0;7882:2;7862:18;;;7855:30;7921:29;7901:18;;;7894:57;7968:18;;32119:63:0::1;7641:351:1::0;32119:63:0::1;32199:6;32195:122;32209:20:::0;;::::1;32195:122;;;32250:55;32265:4;32270:9;;32280:1;32270:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;32290:14;14737:2:::0;32290::::1;:14;:::i;:::-;32283:21;::::0;:6;:21:::1;:::i;:::-;32250:14;:55::i;:::-;-1:-1:-1::0;32231:3:0;::::1;::::0;::::1;:::i;:::-;;;;32195:122;;;;31946:378;31845:479:::0;;;;:::o;31159:678::-;27165:13;:11;:13::i;:::-;31312:3:::1;31293:22:::0;::::1;31285:79;;;::::0;-1:-1:-1;;;31285:79:0;;8471:2:1;31285:79:0::1;::::0;::::1;8453:21:1::0;8510:2;8490:18;;;8483:30;8549:34;8529:18;;;8522:62;-1:-1:-1;;;8600:18:1;;;8593:43;8653:19;;31285:79:0::1;8269:409:1::0;31285:79:0::1;31383:33:::0;;::::1;31375:85;;;::::0;-1:-1:-1;;;31375:85:0;;8885:2:1;31375:85:0::1;::::0;::::1;8867:21:1::0;8924:2;8904:18;;;8897:30;8963:34;8943:18;;;8936:62;-1:-1:-1;;;9014:18:1;;;9007:38;9062:19;;31375:85:0::1;8683:404:1::0;31375:85:0::1;31473:12;31506:6:::0;31502:105:::1;31516:20:::0;;::::1;31502:105;;;31581:14;14737:2:::0;31581::::1;:14;:::i;:::-;31571:6;;31578:1;31571:9;;;;;;;:::i;:::-;;;;;;;:24;;;;:::i;:::-;31564:31;::::0;:4;:31:::1;:::i;:::-;31557:38:::0;-1:-1:-1;31538:3:0;::::1;::::0;::::1;:::i;:::-;;;;31502:105;;;;31646:4;31627:15;31637:4;-1:-1:-1::0;;;;;15084:18:0;15057:7;15084:18;;;;;;;;;;;;14983:127;31627:15:::1;:23;;31619:63;;;::::0;-1:-1:-1;;;31619:63:0;;7843:2:1;31619:63:0::1;::::0;::::1;7825:21:1::0;7882:2;7862:18;;;7855:30;7921:29;7901:18;;;7894:57;7968:18;;31619:63:0::1;7641:351:1::0;31619:63:0::1;31699:6;31695:125;31709:20:::0;;::::1;31695:125;;;31750:58;31765:4;31770:9;;31780:1;31770:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;31793:14;14737:2:::0;31793::::1;:14;:::i;:::-;31783:6;;31790:1;31783:9;;;;;;;:::i;:::-;;;;;;;:24;;;;:::i;31750:58::-;-1:-1:-1::0;31731:3:0;::::1;::::0;::::1;:::i;:::-;;;;31695:125;;;;31272:565;31159:678:::0;;;;;:::o;27927:103::-;27165:13;:11;:13::i;:::-;27992:30:::1;28019:1;27992:18;:30::i;:::-;27927:103::o:0;30030:268::-;30124:10;30112:23;;;;:11;:23;;;;;;;;30108:183;;;30152:38;30158:7;14737:2;30179:10;14654:93;30152:38;30030:268;;:::o;30108:183::-;30232:47;30247:7;30264:14;14737:2;30264;:14;:::i;:::-;30256:22;;:6;:22;:::i;:::-;30232:14;:47::i;13911:104::-;13967:13;14000:7;13993:14;;;;;:::i;18269:436::-;18362:4;11414:10;18362:4;18445:25;11414:10;18462:7;18445:9;:25::i;:::-;18418:52;;18509:15;18489:16;:35;;18481:85;;;;-1:-1:-1;;;18481:85:0;;9294:2:1;18481:85:0;;;9276:21:1;9333:2;9313:18;;;9306:30;9372:34;9352:18;;;9345:62;-1:-1:-1;;;9423:18:1;;;9416:35;9468:19;;18481:85:0;9092:401:1;18481:85:0;18602:60;18611:5;18618:7;18646:15;18627:16;:34;18602:8;:60::i;30306:111::-;27165:13;:11;:13::i;:::-;-1:-1:-1;;;;;30379:23:0::1;;::::0;;;:11:::1;:23;::::0;;;;:30;;-1:-1:-1;;30379:30:0::1;30405:4;30379:30;::::0;;30306:111::o;15316:193::-;15395:4;11414:10;15451:28;11414:10;15468:2;15472:6;15451:9;:28::i;15572:151::-;-1:-1:-1;;;;;15688:18:0;;;15661:7;15688:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15572:151::o;28185:201::-;27165:13;:11;:13::i;:::-;-1:-1:-1;;;;;28274:22:0;::::1;28266:73;;;::::0;-1:-1:-1;;;28266:73:0;;9700:2:1;28266:73:0::1;::::0;::::1;9682:21:1::0;9739:2;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;-1:-1:-1;;;9829:18:1;;;9822:36;9875:19;;28266:73:0::1;9498:402:1::0;28266:73:0::1;28350:28;28369:8;28350:18;:28::i;:::-;28185:201:::0;:::o;30425:115::-;27165:13;:11;:13::i;:::-;-1:-1:-1;;;;;30501:23:0::1;30527:5;30501:23:::0;;;:11:::1;:23;::::0;;;;:31;;-1:-1:-1;;30501:31:0::1;::::0;;30425:115::o;6490:98::-;6548:7;6575:5;6579:1;6575;:5;:::i;:::-;6568:12;6490:98;-1:-1:-1;;;6490:98:0:o;22296:380::-;-1:-1:-1;;;;;22432:19:0;;22424:68;;;;-1:-1:-1;;;22424:68:0;;10107:2:1;22424:68:0;;;10089:21:1;10146:2;10126:18;;;10119:30;10185:34;10165:18;;;10158:62;-1:-1:-1;;;10236:18:1;;;10229:34;10280:19;;22424:68:0;9905:400:1;22424:68:0;-1:-1:-1;;;;;22511:21:0;;22503:68;;;;-1:-1:-1;;;22503:68:0;;10512:2:1;22503:68:0;;;10494:21:1;10551:2;10531:18;;;10524:30;10590:34;10570:18;;;10563:62;-1:-1:-1;;;10641:18:1;;;10634:32;10683:19;;22503:68:0;10310:398:1;22503:68:0;-1:-1:-1;;;;;22584:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22636:32;;1391:25:1;;;22636:32:0;;1364:18:1;22636:32:0;;;;;;;;22296:380;;;:::o;22967:453::-;23102:24;23129:25;23139:5;23146:7;23129:9;:25::i;:::-;23102:52;;-1:-1:-1;;23169:16:0;:37;23165:248;;23251:6;23231:16;:26;;23223:68;;;;-1:-1:-1;;;23223:68:0;;10915:2:1;23223:68:0;;;10897:21:1;10954:2;10934:18;;;10927:30;10993:31;10973:18;;;10966:59;11042:18;;23223:68:0;10713:353:1;23223:68:0;23335:51;23344:5;23351:7;23379:6;23360:16;:25;23335:8;:51::i;:::-;23091:329;22967:453;;;:::o;19175:840::-;-1:-1:-1;;;;;19306:18:0;;19298:68;;;;-1:-1:-1;;;19298:68:0;;11273:2:1;19298:68:0;;;11255:21:1;11312:2;11292:18;;;11285:30;11351:34;11331:18;;;11324:62;-1:-1:-1;;;11402:18:1;;;11395:35;11447:19;;19298:68:0;11071:401:1;19298:68:0;-1:-1:-1;;;;;19385:16:0;;19377:64;;;;-1:-1:-1;;;19377:64:0;;11679:2:1;19377:64:0;;;11661:21:1;11718:2;11698:18;;;11691:30;11757:34;11737:18;;;11730:62;-1:-1:-1;;;11808:18:1;;;11801:33;11851:19;;19377:64:0;11477:399:1;19377:64:0;-1:-1:-1;;;;;19527:15:0;;19505:19;19527:15;;;;;;;;;;;19561:21;;;;19553:72;;;;-1:-1:-1;;;19553:72:0;;12083:2:1;19553:72:0;;;12065:21:1;12122:2;12102:18;;;12095:30;12161:34;12141:18;;;12134:62;-1:-1:-1;;;12212:18:1;;;12205:36;12258:19;;19553:72:0;11881:402:1;19553:72:0;-1:-1:-1;;;;;19661:15:0;;;:9;:15;;;;;;;;;;;19679:20;;;19661:38;;19879:13;;;;;;;;;;:23;;;;;;19931:26;;1391:25:1;;;19879:13:0;;19931:26;;1364:18:1;19931:26:0;;;;;;;19970:37;21183:675;27444:132;27352:6;;-1:-1:-1;;;;;27352:6:0;11414:10;27508:23;27500:68;;;;-1:-1:-1;;;27500:68:0;;12490:2:1;27500:68:0;;;12472:21:1;;;12509:18;;;12502:30;12568:34;12548:18;;;12541:62;12620:18;;27500:68:0;12288:356:1;21183:675:0;-1:-1:-1;;;;;21267:21:0;;21259:67;;;;-1:-1:-1;;;21259:67:0;;12851:2:1;21259:67:0;;;12833:21:1;12890:2;12870:18;;;12863:30;12929:34;12909:18;;;12902:62;-1:-1:-1;;;12980:18:1;;;12973:31;13021:19;;21259:67:0;12649:397:1;21259:67:0;-1:-1:-1;;;;;21426:18:0;;21401:22;21426:18;;;;;;;;;;;21463:24;;;;21455:71;;;;-1:-1:-1;;;21455:71:0;;13253:2:1;21455:71:0;;;13235:21:1;13292:2;13272:18;;;13265:30;13331:34;13311:18;;;13304:62;-1:-1:-1;;;13382:18:1;;;13375:32;13424:19;;21455:71:0;13051:398:1;21455:71:0;-1:-1:-1;;;;;21562:18:0;;:9;:18;;;;;;;;;;;21583:23;;;21562:44;;21701:12;:22;;;;;;;21752:37;1391:25:1;;;21562:9:0;;:18;21752:37;;1364:18:1;21752:37:0;1245:177:1;30755:366:0;30848:4;-1:-1:-1;;;;;30873:20:0;;30883:10;30873:20;30865:29;;;;;;30925:53;;;;;;;;;;;-1:-1:-1;;;30925:53:0;;;;;;;;-1:-1:-1;;;;;30925:17:0;;-1:-1:-1;30925:17:0;;;:9;:17;;;;;;;;:53;;30947:6;;30925:21;:53::i;:::-;-1:-1:-1;;;;;30905:17:0;;;;;;;:9;:17;;;;;;:73;;;;31012:20;;;;;;;:32;;31037:6;31012:24;:32::i;:::-;-1:-1:-1;;;;;30989:20:0;;;;;;:9;:20;;;;;:55;31055:36;31065:6;30999:9;31084:6;31055:9;:36::i;:::-;-1:-1:-1;31109:4:0;30755:366;;;;;:::o;28546:191::-;28639:6;;;-1:-1:-1;;;;;28656:17:0;;;-1:-1:-1;;;;;;28656:17:0;;;;;;;28689:40;;28639:6;;;28656:17;28639:6;;28689:40;;28620:16;;28689:40;28609:128;28546:191;:::o;25873:164::-;25950:46;25966:7;11414:10;25989:6;25950:15;:46::i;:::-;26007:22;26013:7;26022:6;26007:5;:22::i;8769:240::-;8889:7;8950:12;8942:6;;;;8934:29;;;;-1:-1:-1;;;8934:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8985:5:0;;;8769:240::o;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:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:367::-;2197:8;2207:6;2261:3;2254:4;2246:6;2242:17;2238:27;2228:55;;2279:1;2276;2269:12;2228:55;-1:-1:-1;2302:20:1;;2345:18;2334:30;;2331:50;;;2377:1;2374;2367:12;2331:50;2414:4;2406:6;2402:17;2390:29;;2474:3;2467:4;2457:6;2454:1;2450:14;2442:6;2438:27;2434:38;2431:47;2428:67;;;2491:1;2488;2481:12;2428:67;2134:367;;;;;:::o;2506:579::-;2610:6;2618;2626;2634;2687:2;2675:9;2666:7;2662:23;2658:32;2655:52;;;2703:1;2700;2693:12;2655:52;2726:29;2745:9;2726:29;:::i;:::-;2716:39;;2806:2;2795:9;2791:18;2778:32;2833:18;2825:6;2822:30;2819:50;;;2865:1;2862;2855:12;2819:50;2904:70;2966:7;2957:6;2946:9;2942:22;2904:70;:::i;:::-;2506:579;;2993:8;;-1:-1:-1;2878:96:1;;3075:2;3060:18;3047:32;;2506:579;-1:-1:-1;;;;2506:579:1:o;3090:186::-;3149:6;3202:2;3190:9;3181:7;3177:23;3173:32;3170:52;;;3218:1;3215;3208:12;3170:52;3241:29;3260:9;3241:29;:::i;3281:847::-;3412:6;3420;3428;3436;3444;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3536:29;3555:9;3536:29;:::i;:::-;3526:39;;3616:2;3605:9;3601:18;3588:32;3639:18;3680:2;3672:6;3669:14;3666:34;;;3696:1;3693;3686:12;3666:34;3735:70;3797:7;3788:6;3777:9;3773:22;3735:70;:::i;:::-;3824:8;;-1:-1:-1;3709:96:1;-1:-1:-1;3912:2:1;3897:18;;3884:32;;-1:-1:-1;3928:16:1;;;3925:36;;;3957:1;3954;3947:12;3925:36;;3996:72;4060:7;4049:8;4038:9;4034:24;3996:72;:::i;:::-;3281:847;;;;-1:-1:-1;3281:847:1;;-1:-1:-1;4087:8:1;;3970:98;3281:847;-1:-1:-1;;;3281:847:1:o;4341:260::-;4409:6;4417;4470:2;4458:9;4449:7;4445:23;4441:32;4438:52;;;4486:1;4483;4476:12;4438:52;4509:29;4528:9;4509:29;:::i;:::-;4499:39;;4557:38;4591:2;4580:9;4576:18;4557:38;:::i;:::-;4547:48;;4341:260;;;;;:::o;4606:380::-;4685:1;4681:12;;;;4728;;;4749:61;;4803:4;4795:6;4791:17;4781:27;;4749:61;4856:2;4848:6;4845:14;4825:18;4822:38;4819:161;;;4902:10;4897:3;4893:20;4890:1;4883:31;4937:4;4934:1;4927:15;4965:4;4962:1;4955:15;4819:161;;4606:380;;;:::o;4991:127::-;5052:10;5047:3;5043:20;5040:1;5033:31;5083:4;5080:1;5073:15;5107:4;5104:1;5097:15;5123:128;5163:3;5194:1;5190:6;5187:1;5184:13;5181:39;;;5200:18;;:::i;:::-;-1:-1:-1;5236:9:1;;5123:128::o;5256:422::-;5345:1;5388:5;5345:1;5402:270;5423:7;5413:8;5410:21;5402:270;;;5482:4;5478:1;5474:6;5470:17;5464:4;5461:27;5458:53;;;5491:18;;:::i;:::-;5541:7;5531:8;5527:22;5524:55;;;5561:16;;;;5524:55;5640:22;;;;5600:15;;;;5402:270;;;5406:3;5256:422;;;;;:::o;5683:806::-;5732:5;5762:8;5752:80;;-1:-1:-1;5803:1:1;5817:5;;5752:80;5851:4;5841:76;;-1:-1:-1;5888:1:1;5902:5;;5841:76;5933:4;5951:1;5946:59;;;;6019:1;6014:130;;;;5926:218;;5946:59;5976:1;5967:10;;5990:5;;;6014:130;6051:3;6041:8;6038:17;6035:43;;;6058:18;;:::i;:::-;-1:-1:-1;;6114:1:1;6100:16;;6129:5;;5926:218;;6228:2;6218:8;6215:16;6209:3;6203:4;6200:13;6196:36;6190:2;6180:8;6177:16;6172:2;6166:4;6163:12;6159:35;6156:77;6153:159;;;-1:-1:-1;6265:19:1;;;6297:5;;6153:159;6344:34;6369:8;6363:4;6344:34;:::i;:::-;6414:6;6410:1;6406:6;6402:19;6393:7;6390:32;6387:58;;;6425:18;;:::i;:::-;6463:20;;5683:806;-1:-1:-1;;;5683:806:1:o;6494:140::-;6552:5;6581:47;6622:4;6612:8;6608:19;6602:4;6581:47;:::i;6639:168::-;6679:7;6745:1;6741;6737:6;6733:14;6730:1;6727:21;6722:1;6715:9;6708:17;6704:45;6701:71;;;6752:18;;:::i;:::-;-1:-1:-1;6792:9:1;;6639:168::o;7997:127::-;8058:10;8053:3;8049:20;8046:1;8039:31;8089:4;8086:1;8079:15;8113:4;8110:1;8103:15;8129:135;8168:3;-1:-1:-1;;8189:17:1;;8186:43;;;8209:18;;:::i;:::-;-1:-1:-1;8256:1:1;8245:13;;8129:135::o

Swarm Source

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