ETH Price: $3,392.68 (+1.27%)
Gas: 6 Gwei

Token

BERA (BERA)
 

Overview

Max Total Supply

1,000,000,000 BERA

Holders

319

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
BERA

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BERA.sol
/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

// BERA BEAR

// https://t.me/Beratoken_erc20

// https://twitter.com/beratoken?t=48dfPCS-ePnZXfnjqVCmww&s=09

// https://www.bera-erc.com/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.4;

/**
 * @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/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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


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

pragma solidity ^0.8.4;

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

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

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


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


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

pragma solidity ^0.8.4;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

// File contracts/BERA.sol

pragma solidity ^0.8.4;


contract BERA is Ownable, ERC20 {
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    uint256 SUPPLY = 1000000000 * 10**18;

    constructor() ERC20("BERA", "BERA") payable {
        _mint(msg.sender, SUPPLY * 90 / 1000);
        _mint(address(this), SUPPLY * 910 / 1000);
        maxHoldingAmount = SUPPLY * 1 / 100;
    }

    function removeMaxHoldingAmount() external onlyOwner {
        maxHoldingAmount = SUPPLY;
    }

    function openTrading() external onlyOwner {
        IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        _approve(address(this), address(router), balanceOf(address(this)));
        router.addLiquidityETH{
            value: address(this).balance
        } (
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if(uniswapV2Pair == address(0)) {
            require(from == owner() || from == address(0) || to == owner(), "trading is not started");
            return;
        }

        if(from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbidden");
        }
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxHoldingAmount","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526b033b2e3c9fd0803ce80000006008556040518060400160405280600481526020017f42455241000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4245524100000000000000000000000000000000000000000000000000000000815250620000a0620000946200016260201b60201c565b6200016a60201b60201c565b8160049080519060200190620000b892919062000643565b508060059080519060200190620000d192919062000643565b50505062000105336103e8605a600854620000ed9190620008a2565b620000f991906200086a565b6200022e60201b60201c565b62000137306103e861038e6008546200011f9190620008a2565b6200012b91906200086a565b6200022e60201b60201c565b606460016008546200014a9190620008a2565b6200015691906200086a565b60068190555062000a4b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029890620007bd565b60405180910390fd5b620002b560008383620003a860201b60201c565b8060036000828254620002c991906200080d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200032191906200080d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003889190620007df565b60405180910390a3620003a460008383620005cc60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415620005045762000410620005d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004765750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80620004bc57506200048d620005d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620004fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f5906200079b565b60405180910390fd5b620005c7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620005c657600654816200057584620005fa60201b620006041760201c565b6200058191906200080d565b1115620005c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005bc9062000779565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000651906200090d565b90600052602060002090601f016020900481019282620006755760008555620006c1565b82601f106200069057805160ff1916838001178555620006c1565b82800160010185558215620006c1579182015b82811115620006c0578251825591602001919060010190620006a3565b5b509050620006d09190620006d4565b5090565b5b80821115620006ef576000816000905550600101620006d5565b5090565b600062000702600983620007fc565b91506200070f82620009d0565b602082019050919050565b600062000729601683620007fc565b91506200073682620009f9565b602082019050919050565b600062000750601f83620007fc565b91506200075d8262000a22565b602082019050919050565b620007738162000903565b82525050565b600060208201905081810360008301526200079481620006f3565b9050919050565b60006020820190508181036000830152620007b6816200071a565b9050919050565b60006020820190508181036000830152620007d88162000741565b9050919050565b6000602082019050620007f6600083018462000768565b92915050565b600082825260208201905092915050565b60006200081a8262000903565b9150620008278362000903565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200085f576200085e62000943565b5b828201905092915050565b6000620008778262000903565b9150620008848362000903565b92508262000897576200089662000972565b5b828204905092915050565b6000620008af8262000903565b9150620008bc8362000903565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008f857620008f762000943565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200092657607f821691505b602082108114156200093d576200093c620009a1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6120178062000a5b6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806389f9a1d3116100a2578063a457c2d711610071578063a457c2d7146102c1578063a9059cbb146102f1578063c9567bf914610321578063dd62ed3e1461032b578063f2fde38b1461035b57610116565b806389f9a1d31461025d5780638da5cb5b1461027b578063909278811461029957806395d89b41146102a357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610377565b604051610130919061195b565b60405180910390f35b610153600480360381019061014e919061160b565b610409565b6040516101609190611940565b60405180910390f35b610171610427565b60405161017e9190611add565b60405180910390f35b6101a1600480360381019061019c91906115bc565b610431565b6040516101ae9190611940565b60405180910390f35b6101bf610529565b6040516101cc9190611af8565b60405180910390f35b6101ef60048036038101906101ea919061160b565b610532565b6040516101fc9190611940565b60405180910390f35b61020d6105de565b60405161021a919061189b565b60405180910390f35b61023d6004803603810190610238919061152e565b610604565b60405161024a9190611add565b60405180910390f35b61025b61064d565b005b6102656106d5565b6040516102729190611add565b60405180910390f35b6102836106db565b604051610290919061189b565b60405180910390f35b6102a1610704565b005b6102ab61078b565b6040516102b8919061195b565b60405180910390f35b6102db60048036038101906102d6919061160b565b61081d565b6040516102e89190611940565b60405180910390f35b61030b6004803603810190610306919061160b565b610908565b6040516103189190611940565b60405180910390f35b610329610926565b005b61034560048036038101906103409190611580565b610c41565b6040516103529190611add565b60405180910390f35b6103756004803603810190610370919061152e565b610cc8565b005b60606004805461038690611c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611c1f565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b600061041d610416610dc0565b8484610dc8565b6001905092915050565b6000600354905090565b600061043e848484610f93565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610489610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050090611a1d565b60405180910390fd5b61051d85610515610dc0565b858403610dc8565b60019150509392505050565b60006012905090565b60006105d461053f610dc0565b84846002600061054d610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cf9190611b2f565b610dc8565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610655610dc0565b73ffffffffffffffffffffffffffffffffffffffff166106736106db565b73ffffffffffffffffffffffffffffffffffffffff16146106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090611a3d565b60405180910390fd5b6106d36000611217565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61070c610dc0565b73ffffffffffffffffffffffffffffffffffffffff1661072a6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790611a3d565b60405180910390fd5b600854600681905550565b60606005805461079a90611c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690611c1f565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b6000806002600061082c610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090611abd565b60405180910390fd5b6108fd6108f4610dc0565b85858403610dc8565b600191505092915050565b600061091c610915610dc0565b8484610f93565b6001905092915050565b61092e610dc0565b73ffffffffffffffffffffffffffffffffffffffff1661094c6106db565b73ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611a3d565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a0157600080fd5b505afa158015610a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a399190611557565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9b57600080fd5b505afa158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190611557565b6040518363ffffffff1660e01b8152600401610af09291906118b6565b602060405180830381600087803b158015610b0a57600080fd5b505af1158015610b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b429190611557565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b953082610b9030610604565b610dc8565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610bbc30610604565b600080610bc76106db565b426040518863ffffffff1660e01b8152600401610be9969594939291906118df565b6060604051808303818588803b158015610c0257600080fd5b505af1158015610c16573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3b9190611647565b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd0610dc0565b73ffffffffffffffffffffffffffffffffffffffff16610cee6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90611a3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061199d565b60405180910390fd5b610dbd81611217565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611a9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906119bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f869190611add565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061197d565b60405180910390fd5b61107e8383836112db565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906119dd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190611b2f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111fe9190611add565b60405180910390a36112118484846114d5565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114205761133a6106db565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061139f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113dc57506113ad6106db565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290611a5d565b60405180910390fd5b6114d0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114cf576006548161148384610604565b61148d9190611b2f565b11156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906119fd565b60405180910390fd5b5b5b505050565b505050565b6000813590506114e981611fb3565b92915050565b6000815190506114fe81611fb3565b92915050565b60008135905061151381611fca565b92915050565b60008151905061152881611fca565b92915050565b60006020828403121561154057600080fd5b600061154e848285016114da565b91505092915050565b60006020828403121561156957600080fd5b6000611577848285016114ef565b91505092915050565b6000806040838503121561159357600080fd5b60006115a1858286016114da565b92505060206115b2858286016114da565b9150509250929050565b6000806000606084860312156115d157600080fd5b60006115df868287016114da565b93505060206115f0868287016114da565b925050604061160186828701611504565b9150509250925092565b6000806040838503121561161e57600080fd5b600061162c858286016114da565b925050602061163d85828601611504565b9150509250929050565b60008060006060848603121561165c57600080fd5b600061166a86828701611519565b935050602061167b86828701611519565b925050604061168c86828701611519565b9150509250925092565b61169f81611b85565b82525050565b6116ae81611b97565b82525050565b6116bd81611bda565b82525050565b60006116ce82611b13565b6116d88185611b1e565b93506116e8818560208601611bec565b6116f181611caf565b840191505092915050565b6000611709602383611b1e565b915061171482611cc0565b604082019050919050565b600061172c602683611b1e565b915061173782611d0f565b604082019050919050565b600061174f602283611b1e565b915061175a82611d5e565b604082019050919050565b6000611772602683611b1e565b915061177d82611dad565b604082019050919050565b6000611795600983611b1e565b91506117a082611dfc565b602082019050919050565b60006117b8602883611b1e565b91506117c382611e25565b604082019050919050565b60006117db602083611b1e565b91506117e682611e74565b602082019050919050565b60006117fe601683611b1e565b915061180982611e9d565b602082019050919050565b6000611821602583611b1e565b915061182c82611ec6565b604082019050919050565b6000611844602483611b1e565b915061184f82611f15565b604082019050919050565b6000611867602583611b1e565b915061187282611f64565b604082019050919050565b61188681611bc3565b82525050565b61189581611bcd565b82525050565b60006020820190506118b06000830184611696565b92915050565b60006040820190506118cb6000830185611696565b6118d86020830184611696565b9392505050565b600060c0820190506118f46000830189611696565b611901602083018861187d565b61190e60408301876116b4565b61191b60608301866116b4565b6119286080830185611696565b61193560a083018461187d565b979650505050505050565b600060208201905061195560008301846116a5565b92915050565b6000602082019050818103600083015261197581846116c3565b905092915050565b60006020820190508181036000830152611996816116fc565b9050919050565b600060208201905081810360008301526119b68161171f565b9050919050565b600060208201905081810360008301526119d681611742565b9050919050565b600060208201905081810360008301526119f681611765565b9050919050565b60006020820190508181036000830152611a1681611788565b9050919050565b60006020820190508181036000830152611a36816117ab565b9050919050565b60006020820190508181036000830152611a56816117ce565b9050919050565b60006020820190508181036000830152611a76816117f1565b9050919050565b60006020820190508181036000830152611a9681611814565b9050919050565b60006020820190508181036000830152611ab681611837565b9050919050565b60006020820190508181036000830152611ad68161185a565b9050919050565b6000602082019050611af2600083018461187d565b92915050565b6000602082019050611b0d600083018461188c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b3a82611bc3565b9150611b4583611bc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b7a57611b79611c51565b5b828201905092915050565b6000611b9082611ba3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611be582611bc3565b9050919050565b60005b83811015611c0a578082015181840152602081019050611bef565b83811115611c19576000848401525b50505050565b60006002820490506001821680611c3757607f821691505b60208210811415611c4b57611c4a611c80565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611fbc81611b85565b8114611fc757600080fd5b50565b611fd381611bc3565b8114611fde57600080fd5b5056fea2646970667358221220b1e1d4f23295474ab98ab4d75a1a5d0c8b7e6e84ff69171d8ff7f9fb1951cecf64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806389f9a1d3116100a2578063a457c2d711610071578063a457c2d7146102c1578063a9059cbb146102f1578063c9567bf914610321578063dd62ed3e1461032b578063f2fde38b1461035b57610116565b806389f9a1d31461025d5780638da5cb5b1461027b578063909278811461029957806395d89b41146102a357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610377565b604051610130919061195b565b60405180910390f35b610153600480360381019061014e919061160b565b610409565b6040516101609190611940565b60405180910390f35b610171610427565b60405161017e9190611add565b60405180910390f35b6101a1600480360381019061019c91906115bc565b610431565b6040516101ae9190611940565b60405180910390f35b6101bf610529565b6040516101cc9190611af8565b60405180910390f35b6101ef60048036038101906101ea919061160b565b610532565b6040516101fc9190611940565b60405180910390f35b61020d6105de565b60405161021a919061189b565b60405180910390f35b61023d6004803603810190610238919061152e565b610604565b60405161024a9190611add565b60405180910390f35b61025b61064d565b005b6102656106d5565b6040516102729190611add565b60405180910390f35b6102836106db565b604051610290919061189b565b60405180910390f35b6102a1610704565b005b6102ab61078b565b6040516102b8919061195b565b60405180910390f35b6102db60048036038101906102d6919061160b565b61081d565b6040516102e89190611940565b60405180910390f35b61030b6004803603810190610306919061160b565b610908565b6040516103189190611940565b60405180910390f35b610329610926565b005b61034560048036038101906103409190611580565b610c41565b6040516103529190611add565b60405180910390f35b6103756004803603810190610370919061152e565b610cc8565b005b60606004805461038690611c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611c1f565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b600061041d610416610dc0565b8484610dc8565b6001905092915050565b6000600354905090565b600061043e848484610f93565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610489610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050090611a1d565b60405180910390fd5b61051d85610515610dc0565b858403610dc8565b60019150509392505050565b60006012905090565b60006105d461053f610dc0565b84846002600061054d610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cf9190611b2f565b610dc8565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610655610dc0565b73ffffffffffffffffffffffffffffffffffffffff166106736106db565b73ffffffffffffffffffffffffffffffffffffffff16146106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090611a3d565b60405180910390fd5b6106d36000611217565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61070c610dc0565b73ffffffffffffffffffffffffffffffffffffffff1661072a6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790611a3d565b60405180910390fd5b600854600681905550565b60606005805461079a90611c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690611c1f565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b6000806002600061082c610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090611abd565b60405180910390fd5b6108fd6108f4610dc0565b85858403610dc8565b600191505092915050565b600061091c610915610dc0565b8484610f93565b6001905092915050565b61092e610dc0565b73ffffffffffffffffffffffffffffffffffffffff1661094c6106db565b73ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611a3d565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a0157600080fd5b505afa158015610a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a399190611557565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9b57600080fd5b505afa158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190611557565b6040518363ffffffff1660e01b8152600401610af09291906118b6565b602060405180830381600087803b158015610b0a57600080fd5b505af1158015610b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b429190611557565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b953082610b9030610604565b610dc8565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610bbc30610604565b600080610bc76106db565b426040518863ffffffff1660e01b8152600401610be9969594939291906118df565b6060604051808303818588803b158015610c0257600080fd5b505af1158015610c16573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3b9190611647565b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd0610dc0565b73ffffffffffffffffffffffffffffffffffffffff16610cee6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90611a3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061199d565b60405180910390fd5b610dbd81611217565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611a9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906119bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f869190611add565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061197d565b60405180910390fd5b61107e8383836112db565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906119dd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190611b2f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111fe9190611add565b60405180910390a36112118484846114d5565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114205761133a6106db565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061139f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113dc57506113ad6106db565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290611a5d565b60405180910390fd5b6114d0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114cf576006548161148384610604565b61148d9190611b2f565b11156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906119fd565b60405180910390fd5b5b5b505050565b505050565b6000813590506114e981611fb3565b92915050565b6000815190506114fe81611fb3565b92915050565b60008135905061151381611fca565b92915050565b60008151905061152881611fca565b92915050565b60006020828403121561154057600080fd5b600061154e848285016114da565b91505092915050565b60006020828403121561156957600080fd5b6000611577848285016114ef565b91505092915050565b6000806040838503121561159357600080fd5b60006115a1858286016114da565b92505060206115b2858286016114da565b9150509250929050565b6000806000606084860312156115d157600080fd5b60006115df868287016114da565b93505060206115f0868287016114da565b925050604061160186828701611504565b9150509250925092565b6000806040838503121561161e57600080fd5b600061162c858286016114da565b925050602061163d85828601611504565b9150509250929050565b60008060006060848603121561165c57600080fd5b600061166a86828701611519565b935050602061167b86828701611519565b925050604061168c86828701611519565b9150509250925092565b61169f81611b85565b82525050565b6116ae81611b97565b82525050565b6116bd81611bda565b82525050565b60006116ce82611b13565b6116d88185611b1e565b93506116e8818560208601611bec565b6116f181611caf565b840191505092915050565b6000611709602383611b1e565b915061171482611cc0565b604082019050919050565b600061172c602683611b1e565b915061173782611d0f565b604082019050919050565b600061174f602283611b1e565b915061175a82611d5e565b604082019050919050565b6000611772602683611b1e565b915061177d82611dad565b604082019050919050565b6000611795600983611b1e565b91506117a082611dfc565b602082019050919050565b60006117b8602883611b1e565b91506117c382611e25565b604082019050919050565b60006117db602083611b1e565b91506117e682611e74565b602082019050919050565b60006117fe601683611b1e565b915061180982611e9d565b602082019050919050565b6000611821602583611b1e565b915061182c82611ec6565b604082019050919050565b6000611844602483611b1e565b915061184f82611f15565b604082019050919050565b6000611867602583611b1e565b915061187282611f64565b604082019050919050565b61188681611bc3565b82525050565b61189581611bcd565b82525050565b60006020820190506118b06000830184611696565b92915050565b60006040820190506118cb6000830185611696565b6118d86020830184611696565b9392505050565b600060c0820190506118f46000830189611696565b611901602083018861187d565b61190e60408301876116b4565b61191b60608301866116b4565b6119286080830185611696565b61193560a083018461187d565b979650505050505050565b600060208201905061195560008301846116a5565b92915050565b6000602082019050818103600083015261197581846116c3565b905092915050565b60006020820190508181036000830152611996816116fc565b9050919050565b600060208201905081810360008301526119b68161171f565b9050919050565b600060208201905081810360008301526119d681611742565b9050919050565b600060208201905081810360008301526119f681611765565b9050919050565b60006020820190508181036000830152611a1681611788565b9050919050565b60006020820190508181036000830152611a36816117ab565b9050919050565b60006020820190508181036000830152611a56816117ce565b9050919050565b60006020820190508181036000830152611a76816117f1565b9050919050565b60006020820190508181036000830152611a9681611814565b9050919050565b60006020820190508181036000830152611ab681611837565b9050919050565b60006020820190508181036000830152611ad68161185a565b9050919050565b6000602082019050611af2600083018461187d565b92915050565b6000602082019050611b0d600083018461188c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b3a82611bc3565b9150611b4583611bc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b7a57611b79611c51565b5b828201905092915050565b6000611b9082611ba3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611be582611bc3565b9050919050565b60005b83811015611c0a578082015181840152602081019050611bef565b83811115611c19576000848401525b50505050565b60006002820490506001821680611c3757607f821691505b60208210811415611c4b57611c4a611c80565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611fbc81611b85565b8114611fc757600080fd5b50565b611fd381611bc3565b8114611fde57600080fd5b5056fea2646970667358221220b1e1d4f23295474ab98ab4d75a1a5d0c8b7e6e84ff69171d8ff7f9fb1951cecf64736f6c63430008040033

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.