ETH Price: $3,303.13 (-3.58%)
Gas: 7 Gwei

Token

Apollo FTW (FTW)
 

Overview

Max Total Supply

877,085,065 FTW

Holders

1,421

Market

Price

$0.00 @ 0.000001 ETH

Onchain Market Cap

$2,238,031.65

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,393.94465 FTW

Value
$29.07 ( ~0.00880073100288034 Eth) [0.0013%]
0xCaFdb1839258c5816aB88D9353cfE70Fe0b6B946
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:
ApolloFTW

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion
File 1 of 6 : ApolloFTW.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/// @title The token Contract for the Apollo Ecosystem
contract ApolloFTW is ERC20, Ownable {
    /// @notice whether a wallet excludes fees
    mapping(address => bool) public isExcludedFromFee;
    /// @notice The owner of the contract can still change whitelist addresses
    bool public ownerCanChangeWhitelist = true;
    /// @notice Addresses that will be used to determine B/S/T
    mapping(address => bool) private _markets;
    /// @notice The DAO address
    address public DAO;

    /// @notice The types of transactions
    enum TypeOfTransaction {
        BUY,
        SELL,
        TRANSFER
    }
    /// @notice The % of the transaction to be taxed in a buy.
    /// e.g. if this value is 1 that is .1%
    uint256 public buyTaxPerMille = 0;
    /// @notice The % of the transaction to be taxed in a sell.
    /// e.g. if this value is 1 that is .1%
    uint256 public sellTaxPerMille = 100;
    /// @notice The % of the transaction to be taxed in a transfer.
    /// e.g. if this value is 1 that is .1%
    uint256 public transferTaxPerMille = 0;

    /// @notice The owner of the contract can still change tax rates
    bool public ownerCanAdjustTaxes = true;

    constructor(address _devWallet) ERC20("Apollo FTW", "FTW") Ownable() {
        _mint(_devWallet, 2000000000000000000000000000);
        transferOwnership(_devWallet);
        DAO = _devWallet;
    }

    // Public ERC20 Functions

    function transfer(
        address to,
        uint256 amount
    ) public override returns (bool) {
        address owner = _msgSender();
        _transferWithTax(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transferWithTax(from, to, amount);
        return true;
    }

    /// @notice Burn some tokens
    /// @param  value The amount of tokens to burn
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    // Public View Functions

    /// @notice Specifies what type of transaction this is
    /// @param _sender The address sending tokens
    /// @param _recipient The address receiving tokens
    function getTypeOfTransaction(
        address _sender,
        address _recipient
    ) public view returns (TypeOfTransaction) {
        if (isMarketAddress(_sender)) {
            return TypeOfTransaction.BUY;
        } else if (isMarketAddress(_recipient)) {
            return TypeOfTransaction.SELL;
        } else {
            return TypeOfTransaction.TRANSFER;
        }
    }

    /// @notice Shows whether or not an address is being treated as a market
    /// @param _potentialMarket The address to investigate
    function isMarketAddress(
        address _potentialMarket
    ) public view returns (bool) {
        return _markets[_potentialMarket];
    }

    /// @notice Shows how many tokens will be taxed for a transaction
    /// @param _amount The amount of tokens to be sent for a transaction
    /// @param _transactionType The type of transaction 0=Buy, 1=Sell, 2=Transfer
    function getTaxedAmount(
        uint256 _amount,
        TypeOfTransaction _transactionType
    ) public view returns (uint256) {
        if (_transactionType == TypeOfTransaction.BUY) {
            return (_amount * buyTaxPerMille) / 1000;
        } else if (_transactionType == TypeOfTransaction.SELL) {
            return (_amount * sellTaxPerMille) / 1000;
        } else {
            return (_amount * transferTaxPerMille) / 1000;
        }
    }

    //Owner Functions
    /// @notice Set an address to be or not be a market
    /// @param _potentialMarket The address to be changed
    /// @param _isMarket Is the address to be a market or not
    function setMarket(
        address _potentialMarket,
        bool _isMarket
    ) public onlyOwner {
        _markets[_potentialMarket] = _isMarket;
    }

    /// @notice Set a new buy tax
    /// @param _newBuyTaxPerMille New tax perMille (if this value is 1 that is .1%)
    function setBuyTax(
        uint256 _newBuyTaxPerMille
    ) public onlyOwner canRevokeTaxControl {
        require(
            _newBuyTaxPerMille <= 1000,
            "Tax can not be more than 1000 permille"
        );
        buyTaxPerMille = _newBuyTaxPerMille;
    }

    /// @notice Set a new sell tax
    /// @param _newSellTaxPerMille New tax perMille (if this value is 1 that is .1%)
    function setSellTax(
        uint256 _newSellTaxPerMille
    ) public onlyOwner canRevokeTaxControl {
        require(
            _newSellTaxPerMille <= 1000,
            "Tax can not be more than 1000 permille"
        );
        sellTaxPerMille = _newSellTaxPerMille;
    }

    /// @notice Set a new transfer tax
    /// @param _newTransferTaxPerMille New tax perMille (if this value is 1 that is .1%)
    function setTransferTax(
        uint256 _newTransferTaxPerMille
    ) public onlyOwner canRevokeTaxControl {
        require(
            _newTransferTaxPerMille <= 1000,
            "Tax can not be more than 1000 permille"
        );
        transferTaxPerMille = _newTransferTaxPerMille;
    }

    /// @notice Revoke ability to change taxes
    function revokeTaxControl() public onlyOwner {
        ownerCanAdjustTaxes = false;
    }

    /// @notice Whitelist an address
    /// @param account The address to be whitelisted
    function excludeFromFee(
        address account
    ) external onlyOwner canModifyWhitelist {
        isExcludedFromFee[account] = true;
    }

    /// @notice Un-whitelist an address
    /// @param account The address to be un-whitelisted
    function includeFromFee(
        address account
    ) external onlyOwner canModifyWhitelist {
        isExcludedFromFee[account] = false;
    }

    /// @notice Revoke ability to control whitelist
    function revokeWhiteListControl() public onlyOwner {
        ownerCanChangeWhitelist = false;
    }

    // Internal Functions

    function _transferWithTax(
        address from,
        address to,
        uint256 amount
    ) internal {
        uint256 taxedAmount = getTaxedAmount(
            amount,
            getTypeOfTransaction(from, to)
        );

        if (
            taxedAmount > 0 &&
            !isExcludedFromFee[from] &&
            !isExcludedFromFee[to]
        ) {
            amount -= taxedAmount;
            _transfer(from, DAO, taxedAmount);
        }

        _transfer(from, to, amount);
    }

    // Modifiers

    modifier canRevokeTaxControl() {
        require(ownerCanAdjustTaxes, "Owner has revoked control over taxes");
        _;
    }

    modifier canModifyWhitelist() {
        require(
            ownerCanChangeWhitelist,
            "Owner has revoked control over whitelist"
        );
        _;
    }

    //DAO Functions

    /// @notice Update the DAO contract
    /// @param _newDAO The address of the new dao
    function updateDAO(address _newDAO) public {
        require(_msgSender() == DAO, "Only current DAO can change the address");
        isExcludedFromFee[_newDAO] = true;
        _transfer(DAO, _newDAO, balanceOf(DAO));
        DAO = _newDAO;
    }
}

File 2 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"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":"DAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPerMille","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":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"enum ApolloFTW.TypeOfTransaction","name":"_transactionType","type":"uint8"}],"name":"getTaxedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"getTypeOfTransaction","outputs":[{"internalType":"enum ApolloFTW.TypeOfTransaction","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_potentialMarket","type":"address"}],"name":"isMarketAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerCanAdjustTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerCanChangeWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeTaxControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeWhiteListControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPerMille","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPerMille","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_potentialMarket","type":"address"},{"internalType":"bool","name":"_isMarket","type":"bool"}],"name":"setMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellTaxPerMille","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTransferTaxPerMille","type":"uint256"}],"name":"setTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxPerMille","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDAO","type":"address"}],"name":"updateDAO","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760006101000a81548160ff0219169083151502179055506000600a556064600b556000600c556001600d60006101000a81548160ff0219169083151502179055503480156200005657600080fd5b50604051620035603803806200356083398181016040528101906200007c9190620005a5565b6040518060400160405280600a81526020017f41706f6c6c6f20465457000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46545700000000000000000000000000000000000000000000000000000000008152508160039081620000f9919062000851565b5080600490816200010b919062000851565b5050506200012e62000122620001a560201b60201c565b620001ad60201b60201c565b6200014c816b06765c793fa10079d00000006200027360201b60201c565b6200015d81620003e060201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000b7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dc9062000999565b60405180910390fd5b620002f9600083836200047660201b60201c565b80600260008282546200030d9190620009ea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c0919062000a58565b60405180910390a3620003dc600083836200047b60201b60201c565b5050565b620003f06200048060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004599062000aeb565b60405180910390fd5b6200047381620001ad60201b60201c565b50565b505050565b505050565b62000490620001a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004b66200051160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200050f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005069062000b5d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200056d8262000540565b9050919050565b6200057f8162000560565b81146200058b57600080fd5b50565b6000815190506200059f8162000574565b92915050565b600060208284031215620005be57620005bd6200053b565b5b6000620005ce848285016200058e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065957607f821691505b6020821081036200066f576200066e62000611565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069a565b620006e586836200069a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007326200072c6200072684620006fd565b62000707565b620006fd565b9050919050565b6000819050919050565b6200074e8362000711565b620007666200075d8262000739565b848454620006a7565b825550505050565b600090565b6200077d6200076e565b6200078a81848462000743565b505050565b5b81811015620007b257620007a660008262000773565b60018101905062000790565b5050565b601f8211156200080157620007cb8162000675565b620007d6846200068a565b81016020851015620007e6578190505b620007fe620007f5856200068a565b8301826200078f565b50505b505050565b600082821c905092915050565b6000620008266000198460080262000806565b1980831691505092915050565b600062000841838362000813565b9150826002028217905092915050565b6200085c82620005d7565b67ffffffffffffffff811115620008785762000877620005e2565b5b62000884825462000640565b62000891828285620007b6565b600060209050601f831160018114620008c95760008415620008b4578287015190505b620008c0858262000833565b86555062000930565b601f198416620008d98662000675565b60005b828110156200090357848901518255600182019150602085019450602081019050620008dc565b868310156200092357848901516200091f601f89168262000813565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000981601f8362000938565b91506200098e8262000949565b602082019050919050565b60006020820190508181036000830152620009b48162000972565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009f782620006fd565b915062000a0483620006fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a3c5762000a3b620009bb565b5b828201905092915050565b62000a5281620006fd565b82525050565b600060208201905062000a6f600083018462000a47565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000ad360268362000938565b915062000ae08262000a75565b604082019050919050565b6000602082019050818103600083015262000b068162000ac4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b4560208362000938565b915062000b528262000b0d565b602082019050919050565b6000602082019050818103600083015262000b788162000b36565b9050919050565b6129d18062000b8f6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80638b5259031161011a578063bcb6c0b5116100ad578063dc1052e21161007c578063dc1052e2146105cb578063dd62ed3e146105e7578063f2dfea2614610617578063f2fde38b14610647578063ff5118281461066357610206565b8063bcb6c0b514610531578063ccf2f4d91461054d578063d24a5c641461057d578063d562d6241461059b57610206565b806398fabd3a116100e957806398fabd3a146104955780639d658417146104b3578063a457c2d7146104d1578063a9059cbb1461050157610206565b80638b525903146104215780638cd09d501461043d5780638da5cb5b1461045957806395d89b411461047757610206565b8063313ce5671161019d57806344ed896f1161016c57806344ed896f146103a35780635342acb4146103ad57806356da2406146103dd57806370a08231146103e7578063715018a61461041757610206565b8063313ce5671461031d578063395093511461033b57806342966c681461036b578063437823ec1461038757610206565b806315bcf9b7116101d957806315bcf9b71461029557806318160ddd146102b157806323b872dd146102cf5780632aedf2b6146102ff57610206565b806306fdde031461020b578063079752fc14610229578063095ea7b314610247578063132b74b414610277575b600080fd5b61021361067f565b6040516102209190611b7a565b60405180910390f35b610231610711565b60405161023e9190611bb5565b60405180910390f35b610261600480360381019061025c9190611c5f565b610717565b60405161026e9190611cba565b60405180910390f35b61027f61073a565b60405161028c9190611bb5565b60405180910390f35b6102af60048036038101906102aa9190611d01565b610740565b005b6102b96107a3565b6040516102c69190611bb5565b60405180910390f35b6102e960048036038101906102e49190611d41565b6107ad565b6040516102f69190611cba565b60405180910390f35b6103076107dc565b6040516103149190611cba565b60405180910390f35b6103256107ef565b6040516103329190611db0565b60405180910390f35b61035560048036038101906103509190611c5f565b6107f8565b6040516103629190611cba565b60405180910390f35b61038560048036038101906103809190611dcb565b61082f565b005b6103a1600480360381019061039c9190611df8565b610843565b005b6103ab6108f5565b005b6103c760048036038101906103c29190611df8565b61091a565b6040516103d49190611cba565b60405180910390f35b6103e561093a565b005b61040160048036038101906103fc9190611df8565b61095f565b60405161040e9190611bb5565b60405180910390f35b61041f6109a7565b005b61043b60048036038101906104369190611dcb565b6109bb565b005b61045760048036038101906104529190611dcb565b610a61565b005b610461610b07565b60405161046e9190611e34565b60405180910390f35b61047f610b31565b60405161048c9190611b7a565b60405180910390f35b61049d610bc3565b6040516104aa9190611e34565b60405180910390f35b6104bb610be9565b6040516104c89190611cba565b60405180910390f35b6104eb60048036038101906104e69190611c5f565b610bfc565b6040516104f89190611cba565b60405180910390f35b61051b60048036038101906105169190611c5f565b610c73565b6040516105289190611cba565b60405180910390f35b61054b60048036038101906105469190611df8565b610c96565b005b61056760048036038101906105629190611e74565b610e20565b6040516105749190611bb5565b60405180910390f35b610585610ee1565b6040516105929190611bb5565b60405180910390f35b6105b560048036038101906105b09190611df8565b610ee7565b6040516105c29190611cba565b60405180910390f35b6105e560048036038101906105e09190611dcb565b610f3d565b005b61060160048036038101906105fc9190611eb4565b610fe3565b60405161060e9190611bb5565b60405180910390f35b610631600480360381019061062c9190611eb4565b61106a565b60405161063e9190611f6b565b60405180910390f35b610661600480360381019061065c9190611df8565b6110a5565b005b61067d60048036038101906106789190611df8565b611128565b005b60606003805461068e90611fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90611fb5565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600c5481565b6000806107226111da565b905061072f8185856111e2565b600191505092915050565b600b5481565b6107486113ab565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000806107b86111da565b90506107c5858285611429565b6107d08585856114b5565b60019150509392505050565b600d60009054906101000a900460ff1681565b60006012905090565b6000806108036111da565b90506108248185856108158589610fe3565b61081f9190612015565b6111e2565b600191505092915050565b61084061083a6111da565b826115ce565b50565b61084b6113ab565b600760009054906101000a900460ff1661089a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610891906120dd565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6108fd6113ab565b6000600d60006101000a81548160ff021916908315150217905550565b60066020528060005260406000206000915054906101000a900460ff1681565b6109426113ab565b6000600760006101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109af6113ab565b6109b9600061179b565b565b6109c36113ab565b600d60009054906101000a900460ff16610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a099061216f565b60405180910390fd5b6103e8811115610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612201565b60405180910390fd5b80600c8190555050565b610a696113ab565b600d60009054906101000a900460ff16610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061216f565b60405180910390fd5b6103e8811115610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612201565b60405180910390fd5b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b4090611fb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c90611fb5565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff1681565b600080610c076111da565b90506000610c158286610fe3565b905083811015610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612293565b60405180910390fd5b610c6782868684036111e2565b60019250505092915050565b600080610c7e6111da565b9050610c8b8185856114b5565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610cd76111da565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490612325565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ddc600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610dd7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661095f565b611861565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002811115610e3557610e34611ef4565b5b826002811115610e4857610e47611ef4565b5b03610e6f576103e8600a5484610e5e9190612345565b610e6891906123ce565b9050610edb565b60016002811115610e8357610e82611ef4565b5b826002811115610e9657610e95611ef4565b5b03610ebd576103e8600b5484610eac9190612345565b610eb691906123ce565b9050610edb565b6103e8600c5484610ece9190612345565b610ed891906123ce565b90505b92915050565b600a5481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f456113ab565b600d60009054906101000a900460ff16610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061216f565b60405180910390fd5b6103e8811115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612201565b60405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061107583610ee7565b15611083576000905061109f565b61108c82610ee7565b1561109a576001905061109f565b600290505b92915050565b6110ad6113ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612471565b60405180910390fd5b6111258161179b565b50565b6111306113ab565b600760009054906101000a900460ff1661117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906120dd565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890612503565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612595565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161139e9190611bb5565b60405180910390a3505050565b6113b36111da565b73ffffffffffffffffffffffffffffffffffffffff166113d1610b07565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90612601565b60405180910390fd5b565b60006114358484610fe3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114af57818110156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061266d565b60405180910390fd5b6114ae84848484036111e2565b5b50505050565b60006114ca826114c5868661106a565b610e20565b90506000811180156115265750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561157c5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115bd57808261158d919061268d565b91506115bc84600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611861565b5b6115c8848484611861565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490612733565b60405180910390fd5b61164982600083611ad7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906127c5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117829190611bb5565b60405180910390a361179683600084611adc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790612857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906128e9565b60405180910390fd5b61194a838383611ad7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c79061297b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611abe9190611bb5565b60405180910390a3611ad1848484611adc565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b1b578082015181840152602081019050611b00565b83811115611b2a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b4c82611ae1565b611b568185611aec565b9350611b66818560208601611afd565b611b6f81611b30565b840191505092915050565b60006020820190508181036000830152611b948184611b41565b905092915050565b6000819050919050565b611baf81611b9c565b82525050565b6000602082019050611bca6000830184611ba6565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c0082611bd5565b9050919050565b611c1081611bf5565b8114611c1b57600080fd5b50565b600081359050611c2d81611c07565b92915050565b611c3c81611b9c565b8114611c4757600080fd5b50565b600081359050611c5981611c33565b92915050565b60008060408385031215611c7657611c75611bd0565b5b6000611c8485828601611c1e565b9250506020611c9585828601611c4a565b9150509250929050565b60008115159050919050565b611cb481611c9f565b82525050565b6000602082019050611ccf6000830184611cab565b92915050565b611cde81611c9f565b8114611ce957600080fd5b50565b600081359050611cfb81611cd5565b92915050565b60008060408385031215611d1857611d17611bd0565b5b6000611d2685828601611c1e565b9250506020611d3785828601611cec565b9150509250929050565b600080600060608486031215611d5a57611d59611bd0565b5b6000611d6886828701611c1e565b9350506020611d7986828701611c1e565b9250506040611d8a86828701611c4a565b9150509250925092565b600060ff82169050919050565b611daa81611d94565b82525050565b6000602082019050611dc56000830184611da1565b92915050565b600060208284031215611de157611de0611bd0565b5b6000611def84828501611c4a565b91505092915050565b600060208284031215611e0e57611e0d611bd0565b5b6000611e1c84828501611c1e565b91505092915050565b611e2e81611bf5565b82525050565b6000602082019050611e496000830184611e25565b92915050565b60038110611e5c57600080fd5b50565b600081359050611e6e81611e4f565b92915050565b60008060408385031215611e8b57611e8a611bd0565b5b6000611e9985828601611c4a565b9250506020611eaa85828601611e5f565b9150509250929050565b60008060408385031215611ecb57611eca611bd0565b5b6000611ed985828601611c1e565b9250506020611eea85828601611c1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110611f3457611f33611ef4565b5b50565b6000819050611f4582611f23565b919050565b6000611f5582611f37565b9050919050565b611f6581611f4a565b82525050565b6000602082019050611f806000830184611f5c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fcd57607f821691505b602082108103611fe057611fdf611f86565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061202082611b9c565b915061202b83611b9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120605761205f611fe6565b5b828201905092915050565b7f4f776e657220686173207265766f6b656420636f6e74726f6c206f766572207760008201527f686974656c697374000000000000000000000000000000000000000000000000602082015250565b60006120c7602883611aec565b91506120d28261206b565b604082019050919050565b600060208201905081810360008301526120f6816120ba565b9050919050565b7f4f776e657220686173207265766f6b656420636f6e74726f6c206f766572207460008201527f6178657300000000000000000000000000000000000000000000000000000000602082015250565b6000612159602483611aec565b9150612164826120fd565b604082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f5461782063616e206e6f74206265206d6f7265207468616e203130303020706560008201527f726d696c6c650000000000000000000000000000000000000000000000000000602082015250565b60006121eb602683611aec565b91506121f68261218f565b604082019050919050565b6000602082019050818103600083015261221a816121de565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061227d602583611aec565b915061228882612221565b604082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b7f4f6e6c792063757272656e742044414f2063616e206368616e6765207468652060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600061230f602783611aec565b915061231a826122b3565b604082019050919050565b6000602082019050818103600083015261233e81612302565b9050919050565b600061235082611b9c565b915061235b83611b9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561239457612393611fe6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123d982611b9c565b91506123e483611b9c565b9250826123f4576123f361239f565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061245b602683611aec565b9150612466826123ff565b604082019050919050565b6000602082019050818103600083015261248a8161244e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124ed602483611aec565b91506124f882612491565b604082019050919050565b6000602082019050818103600083015261251c816124e0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061257f602283611aec565b915061258a82612523565b604082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125eb602083611aec565b91506125f6826125b5565b602082019050919050565b6000602082019050818103600083015261261a816125de565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612657601d83611aec565b915061266282612621565b602082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b600061269882611b9c565b91506126a383611b9c565b9250828210156126b6576126b5611fe6565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061271d602183611aec565b9150612728826126c1565b604082019050919050565b6000602082019050818103600083015261274c81612710565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127af602283611aec565b91506127ba82612753565b604082019050919050565b600060208201905081810360008301526127de816127a2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612841602583611aec565b915061284c826127e5565b604082019050919050565b6000602082019050818103600083015261287081612834565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d3602383611aec565b91506128de82612877565b604082019050919050565b60006020820190508181036000830152612902816128c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612965602683611aec565b915061297082612909565b604082019050919050565b6000602082019050818103600083015261299481612958565b905091905056fea2646970667358221220beae3ae83b48a11b79565d5543c0f54aaf143cf78fe978d4b5d107317ccfc9f164736f6c634300080f0033000000000000000000000000ad360393f3728ad3b60c0a4212660c6d7558f7b3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80638b5259031161011a578063bcb6c0b5116100ad578063dc1052e21161007c578063dc1052e2146105cb578063dd62ed3e146105e7578063f2dfea2614610617578063f2fde38b14610647578063ff5118281461066357610206565b8063bcb6c0b514610531578063ccf2f4d91461054d578063d24a5c641461057d578063d562d6241461059b57610206565b806398fabd3a116100e957806398fabd3a146104955780639d658417146104b3578063a457c2d7146104d1578063a9059cbb1461050157610206565b80638b525903146104215780638cd09d501461043d5780638da5cb5b1461045957806395d89b411461047757610206565b8063313ce5671161019d57806344ed896f1161016c57806344ed896f146103a35780635342acb4146103ad57806356da2406146103dd57806370a08231146103e7578063715018a61461041757610206565b8063313ce5671461031d578063395093511461033b57806342966c681461036b578063437823ec1461038757610206565b806315bcf9b7116101d957806315bcf9b71461029557806318160ddd146102b157806323b872dd146102cf5780632aedf2b6146102ff57610206565b806306fdde031461020b578063079752fc14610229578063095ea7b314610247578063132b74b414610277575b600080fd5b61021361067f565b6040516102209190611b7a565b60405180910390f35b610231610711565b60405161023e9190611bb5565b60405180910390f35b610261600480360381019061025c9190611c5f565b610717565b60405161026e9190611cba565b60405180910390f35b61027f61073a565b60405161028c9190611bb5565b60405180910390f35b6102af60048036038101906102aa9190611d01565b610740565b005b6102b96107a3565b6040516102c69190611bb5565b60405180910390f35b6102e960048036038101906102e49190611d41565b6107ad565b6040516102f69190611cba565b60405180910390f35b6103076107dc565b6040516103149190611cba565b60405180910390f35b6103256107ef565b6040516103329190611db0565b60405180910390f35b61035560048036038101906103509190611c5f565b6107f8565b6040516103629190611cba565b60405180910390f35b61038560048036038101906103809190611dcb565b61082f565b005b6103a1600480360381019061039c9190611df8565b610843565b005b6103ab6108f5565b005b6103c760048036038101906103c29190611df8565b61091a565b6040516103d49190611cba565b60405180910390f35b6103e561093a565b005b61040160048036038101906103fc9190611df8565b61095f565b60405161040e9190611bb5565b60405180910390f35b61041f6109a7565b005b61043b60048036038101906104369190611dcb565b6109bb565b005b61045760048036038101906104529190611dcb565b610a61565b005b610461610b07565b60405161046e9190611e34565b60405180910390f35b61047f610b31565b60405161048c9190611b7a565b60405180910390f35b61049d610bc3565b6040516104aa9190611e34565b60405180910390f35b6104bb610be9565b6040516104c89190611cba565b60405180910390f35b6104eb60048036038101906104e69190611c5f565b610bfc565b6040516104f89190611cba565b60405180910390f35b61051b60048036038101906105169190611c5f565b610c73565b6040516105289190611cba565b60405180910390f35b61054b60048036038101906105469190611df8565b610c96565b005b61056760048036038101906105629190611e74565b610e20565b6040516105749190611bb5565b60405180910390f35b610585610ee1565b6040516105929190611bb5565b60405180910390f35b6105b560048036038101906105b09190611df8565b610ee7565b6040516105c29190611cba565b60405180910390f35b6105e560048036038101906105e09190611dcb565b610f3d565b005b61060160048036038101906105fc9190611eb4565b610fe3565b60405161060e9190611bb5565b60405180910390f35b610631600480360381019061062c9190611eb4565b61106a565b60405161063e9190611f6b565b60405180910390f35b610661600480360381019061065c9190611df8565b6110a5565b005b61067d60048036038101906106789190611df8565b611128565b005b60606003805461068e90611fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90611fb5565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600c5481565b6000806107226111da565b905061072f8185856111e2565b600191505092915050565b600b5481565b6107486113ab565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000806107b86111da565b90506107c5858285611429565b6107d08585856114b5565b60019150509392505050565b600d60009054906101000a900460ff1681565b60006012905090565b6000806108036111da565b90506108248185856108158589610fe3565b61081f9190612015565b6111e2565b600191505092915050565b61084061083a6111da565b826115ce565b50565b61084b6113ab565b600760009054906101000a900460ff1661089a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610891906120dd565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6108fd6113ab565b6000600d60006101000a81548160ff021916908315150217905550565b60066020528060005260406000206000915054906101000a900460ff1681565b6109426113ab565b6000600760006101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109af6113ab565b6109b9600061179b565b565b6109c36113ab565b600d60009054906101000a900460ff16610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a099061216f565b60405180910390fd5b6103e8811115610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612201565b60405180910390fd5b80600c8190555050565b610a696113ab565b600d60009054906101000a900460ff16610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061216f565b60405180910390fd5b6103e8811115610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612201565b60405180910390fd5b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b4090611fb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c90611fb5565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff1681565b600080610c076111da565b90506000610c158286610fe3565b905083811015610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612293565b60405180910390fd5b610c6782868684036111e2565b60019250505092915050565b600080610c7e6111da565b9050610c8b8185856114b5565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610cd76111da565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490612325565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ddc600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610dd7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661095f565b611861565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002811115610e3557610e34611ef4565b5b826002811115610e4857610e47611ef4565b5b03610e6f576103e8600a5484610e5e9190612345565b610e6891906123ce565b9050610edb565b60016002811115610e8357610e82611ef4565b5b826002811115610e9657610e95611ef4565b5b03610ebd576103e8600b5484610eac9190612345565b610eb691906123ce565b9050610edb565b6103e8600c5484610ece9190612345565b610ed891906123ce565b90505b92915050565b600a5481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f456113ab565b600d60009054906101000a900460ff16610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061216f565b60405180910390fd5b6103e8811115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612201565b60405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061107583610ee7565b15611083576000905061109f565b61108c82610ee7565b1561109a576001905061109f565b600290505b92915050565b6110ad6113ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612471565b60405180910390fd5b6111258161179b565b50565b6111306113ab565b600760009054906101000a900460ff1661117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906120dd565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890612503565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612595565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161139e9190611bb5565b60405180910390a3505050565b6113b36111da565b73ffffffffffffffffffffffffffffffffffffffff166113d1610b07565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90612601565b60405180910390fd5b565b60006114358484610fe3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114af57818110156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061266d565b60405180910390fd5b6114ae84848484036111e2565b5b50505050565b60006114ca826114c5868661106a565b610e20565b90506000811180156115265750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561157c5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115bd57808261158d919061268d565b91506115bc84600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611861565b5b6115c8848484611861565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490612733565b60405180910390fd5b61164982600083611ad7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906127c5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117829190611bb5565b60405180910390a361179683600084611adc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790612857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906128e9565b60405180910390fd5b61194a838383611ad7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c79061297b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611abe9190611bb5565b60405180910390a3611ad1848484611adc565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b1b578082015181840152602081019050611b00565b83811115611b2a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b4c82611ae1565b611b568185611aec565b9350611b66818560208601611afd565b611b6f81611b30565b840191505092915050565b60006020820190508181036000830152611b948184611b41565b905092915050565b6000819050919050565b611baf81611b9c565b82525050565b6000602082019050611bca6000830184611ba6565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c0082611bd5565b9050919050565b611c1081611bf5565b8114611c1b57600080fd5b50565b600081359050611c2d81611c07565b92915050565b611c3c81611b9c565b8114611c4757600080fd5b50565b600081359050611c5981611c33565b92915050565b60008060408385031215611c7657611c75611bd0565b5b6000611c8485828601611c1e565b9250506020611c9585828601611c4a565b9150509250929050565b60008115159050919050565b611cb481611c9f565b82525050565b6000602082019050611ccf6000830184611cab565b92915050565b611cde81611c9f565b8114611ce957600080fd5b50565b600081359050611cfb81611cd5565b92915050565b60008060408385031215611d1857611d17611bd0565b5b6000611d2685828601611c1e565b9250506020611d3785828601611cec565b9150509250929050565b600080600060608486031215611d5a57611d59611bd0565b5b6000611d6886828701611c1e565b9350506020611d7986828701611c1e565b9250506040611d8a86828701611c4a565b9150509250925092565b600060ff82169050919050565b611daa81611d94565b82525050565b6000602082019050611dc56000830184611da1565b92915050565b600060208284031215611de157611de0611bd0565b5b6000611def84828501611c4a565b91505092915050565b600060208284031215611e0e57611e0d611bd0565b5b6000611e1c84828501611c1e565b91505092915050565b611e2e81611bf5565b82525050565b6000602082019050611e496000830184611e25565b92915050565b60038110611e5c57600080fd5b50565b600081359050611e6e81611e4f565b92915050565b60008060408385031215611e8b57611e8a611bd0565b5b6000611e9985828601611c4a565b9250506020611eaa85828601611e5f565b9150509250929050565b60008060408385031215611ecb57611eca611bd0565b5b6000611ed985828601611c1e565b9250506020611eea85828601611c1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110611f3457611f33611ef4565b5b50565b6000819050611f4582611f23565b919050565b6000611f5582611f37565b9050919050565b611f6581611f4a565b82525050565b6000602082019050611f806000830184611f5c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fcd57607f821691505b602082108103611fe057611fdf611f86565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061202082611b9c565b915061202b83611b9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120605761205f611fe6565b5b828201905092915050565b7f4f776e657220686173207265766f6b656420636f6e74726f6c206f766572207760008201527f686974656c697374000000000000000000000000000000000000000000000000602082015250565b60006120c7602883611aec565b91506120d28261206b565b604082019050919050565b600060208201905081810360008301526120f6816120ba565b9050919050565b7f4f776e657220686173207265766f6b656420636f6e74726f6c206f766572207460008201527f6178657300000000000000000000000000000000000000000000000000000000602082015250565b6000612159602483611aec565b9150612164826120fd565b604082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f5461782063616e206e6f74206265206d6f7265207468616e203130303020706560008201527f726d696c6c650000000000000000000000000000000000000000000000000000602082015250565b60006121eb602683611aec565b91506121f68261218f565b604082019050919050565b6000602082019050818103600083015261221a816121de565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061227d602583611aec565b915061228882612221565b604082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b7f4f6e6c792063757272656e742044414f2063616e206368616e6765207468652060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600061230f602783611aec565b915061231a826122b3565b604082019050919050565b6000602082019050818103600083015261233e81612302565b9050919050565b600061235082611b9c565b915061235b83611b9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561239457612393611fe6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123d982611b9c565b91506123e483611b9c565b9250826123f4576123f361239f565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061245b602683611aec565b9150612466826123ff565b604082019050919050565b6000602082019050818103600083015261248a8161244e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124ed602483611aec565b91506124f882612491565b604082019050919050565b6000602082019050818103600083015261251c816124e0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061257f602283611aec565b915061258a82612523565b604082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125eb602083611aec565b91506125f6826125b5565b602082019050919050565b6000602082019050818103600083015261261a816125de565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612657601d83611aec565b915061266282612621565b602082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b600061269882611b9c565b91506126a383611b9c565b9250828210156126b6576126b5611fe6565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061271d602183611aec565b9150612728826126c1565b604082019050919050565b6000602082019050818103600083015261274c81612710565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127af602283611aec565b91506127ba82612753565b604082019050919050565b600060208201905081810360008301526127de816127a2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612841602583611aec565b915061284c826127e5565b604082019050919050565b6000602082019050818103600083015261287081612834565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d3602383611aec565b91506128de82612877565b604082019050919050565b60006020820190508181036000830152612902816128c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612965602683611aec565b915061297082612909565b604082019050919050565b6000602082019050818103600083015261299481612958565b905091905056fea2646970667358221220beae3ae83b48a11b79565d5543c0f54aaf143cf78fe978d4b5d107317ccfc9f164736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ad360393f3728ad3b60c0a4212660c6d7558f7b3

-----Decoded View---------------
Arg [0] : _devWallet (address): 0xAd360393F3728aD3b60C0A4212660C6D7558F7b3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ad360393f3728ad3b60c0a4212660c6d7558f7b3


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.