ETH Price: $3,848.49 (-1.97%)

Contract

0x109909e1E4CeB8A89274bbdA937b02c3c62828c2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208307942024-09-25 23:06:3580 days ago1727305595IN
0x109909e1...3c62828c2
0 ETH0.0009129219.34781213
Approve206866012024-09-05 19:52:59100 days ago1725565979IN
0x109909e1...3c62828c2
0 ETH0.000320856.8
Transfer206645402024-09-02 18:01:23103 days ago1725300083IN
0x109909e1...3c62828c2
0 ETH0.0006756711.85909895
Approve205956752024-08-24 3:07:59113 days ago1724468879IN
0x109909e1...3c62828c2
0 ETH0.000048611.03673302
Approve205045822024-08-11 9:49:47125 days ago1723369787IN
0x109909e1...3c62828c2
0 ETH0.000088691.87728052
Approve202200862024-07-02 16:41:35165 days ago1719938495IN
0x109909e1...3c62828c2
0 ETH0.000307566.50993339
Approve200435442024-06-08 0:31:11190 days ago1717806671IN
0x109909e1...3c62828c2
0 ETH0.000208838.38664176
Transfer199116322024-05-20 14:07:47208 days ago1716214067IN
0x109909e1...3c62828c2
0 ETH0.0006381211.20240647
Approve198085862024-05-06 4:13:11223 days ago1714968791IN
0x109909e1...3c62828c2
0 ETH0.000200384.24689813
Approve191567512024-02-04 18:33:23314 days ago1707071603IN
0x109909e1...3c62828c2
0 ETH0.0003369713.50002767
Approve190812752024-01-25 4:33:35325 days ago1706157215IN
0x109909e1...3c62828c2
0 ETH0.0004945810.52994558
Approve190812632024-01-25 4:30:59325 days ago1706157059IN
0x109909e1...3c62828c2
0 ETH0.0005933112.57426284
Approve190012572024-01-13 23:29:35336 days ago1705188575IN
0x109909e1...3c62828c2
0 ETH0.0007166615.27784767
Approve189471882024-01-06 9:07:59343 days ago1704532079IN
0x109909e1...3c62828c2
0 ETH0.0002790111.20497256
Approve189267772024-01-03 12:17:59346 days ago1704284279IN
0x109909e1...3c62828c2
0 ETH0.01243885265.16982688
Approve189088572023-12-31 23:52:35349 days ago1704066755IN
0x109909e1...3c62828c2
0 ETH0.0006088412.90331725
Approve188966472023-12-30 6:46:11351 days ago1703918771IN
0x109909e1...3c62828c2
0 ETH0.0006501613.77903827
Approve186534522023-11-26 4:25:59385 days ago1700972759IN
0x109909e1...3c62828c2
0 ETH0.0014521530.7757097
Approve186154462023-11-20 20:41:59390 days ago1700512919IN
0x109909e1...3c62828c2
0 ETH0.0018985140.47237104
Approve185608422023-11-13 5:16:11398 days ago1699852571IN
0x109909e1...3c62828c2
0 ETH0.0013845329.34265807
Approve185455572023-11-11 1:56:23400 days ago1699667783IN
0x109909e1...3c62828c2
0 ETH0.0016110434.1431156
Approve185433002023-11-10 18:22:11400 days ago1699640531IN
0x109909e1...3c62828c2
0 ETH0.0019379641.31337763
Approve184362542023-10-26 18:43:47415 days ago1698345827IN
0x109909e1...3c62828c2
0 ETH0.0009749220.7832552
Approve183808272023-10-19 0:31:47423 days ago1697675507IN
0x109909e1...3c62828c2
0 ETH0.000280045.9685001
Approve183808082023-10-19 0:27:59423 days ago1697675279IN
0x109909e1...3c62828c2
0 ETH0.000295476.29889505
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Rebase

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Rebase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

contract Rebase is ERC20, Ownable {
    mapping(address => bool) public isTaxExempt;

    uint256 public tax;
    address public pair;
    address public taxManager;
    address public taxRecipient;

    modifier onlyOwnerOrTaxManager() {
        require(
            msg.sender == owner() || msg.sender == taxManager,
            "Caller is neither the owner nor tax manager"
        );
        _;
    }

    error NotAllowed();
    error InvalidConfig();

    constructor(
        address mintRecipient_,
        address taxRecipient_,
        address taxManager_,
        uint256 tax_
    ) ERC20("Rebase", "REBASE") {
        _mint(mintRecipient_, 1_000_000 * 10 ** decimals());
        setTaxExempt(msg.sender, true);
        setTaxRecipient(taxRecipient_);
        setTaxManager(taxManager_);
        setTax(tax_);
    }

    function setPair(address pair_) external onlyOwner {
        pair = pair_;
    }

    function setTaxRecipient(
        address taxRecipient_
    ) public onlyOwnerOrTaxManager {
        if (taxRecipient_ == address(0)) {
            revert InvalidConfig();
        }
        taxRecipient = taxRecipient_;
    }

    function setTaxManager(address taxManager_) public onlyOwner {
        if (taxManager_ == address(0)) {
            revert InvalidConfig();
        }
        taxManager = taxManager_;
    }

    function setTax(uint256 tax_) public onlyOwnerOrTaxManager {
        if (tax_ > 15) {
            revert InvalidConfig();
        }
        tax = tax_;
    }

    function setTaxExempt(
        address account_,
        bool isTaxExempt_
    ) public onlyOwnerOrTaxManager {
        isTaxExempt[account_] = isTaxExempt_;
    }

    function shouldTakeTax(
        address sender,
        address recipient
    ) public view returns (bool) {
        return
            !isTaxExempt[sender] &&
            !isTaxExempt[recipient] &&
            sender != owner() &&
            recipient != owner() &&
            pair != address(0) &&
            (sender == pair || recipient == pair);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (shouldTakeTax(sender, recipient)) {
            uint256 taxAmount = (amount * tax) / 100;
            super._transfer(sender, recipient, amount - taxAmount);
            super._transfer(sender, taxRecipient, taxAmount);
            return;
        } else {
            super._transfer(sender, recipient, amount);
            return;
        }
    }
}

File 2 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);
    }
}

File 3 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 4 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 5 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 6 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"mintRecipient_","type":"address"},{"internalType":"address","name":"taxRecipient_","type":"address"},{"internalType":"address","name":"taxManager_","type":"address"},{"internalType":"uint256","name":"tax_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidConfig","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxExempt","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax_","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"bool","name":"isTaxExempt_","type":"bool"}],"name":"setTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxManager_","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxRecipient_","type":"address"}],"name":"setTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"shouldTakeTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b5060405162003388380380620033888339818101604052810190620000379190620009b8565b6040518060400160405280600681526020017f52656261736500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f52454241534500000000000000000000000000000000000000000000000000008152508160039081620000b4919062000c9a565b508060049081620000c6919062000c9a565b505050620000e9620000dd6200017860201b60201c565b6200018060201b60201c565b6200012884620000fe6200024660201b60201c565b600a6200010c919062000f11565b620f42406200011c919062000f62565b6200024f60201b60201c565b6200013b336001620003bc60201b60201c565b6200014c83620004f060201b60201c565b6200015d826200067460201b60201c565b6200016e816200072f60201b60201c565b50505050620011a3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b8906200100e565b60405180910390fd5b620002d5600083836200084e60201b60201c565b8060026000828254620002e9919062001030565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039c91906200107c565b60405180910390a3620003b8600083836200085360201b60201c565b5050565b620003cc6200085860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480620004535750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000495576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048c906200110f565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620005006200085860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480620005875750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b620005c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c0906200110f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000630576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620006846200088260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620006eb576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6200073f6200085860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480620007c65750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000808576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ff906200110f565b60405180910390fd5b600f81111562000844576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060078190555050565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008926200017860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b86200085860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009089062001181565b60405180910390fd5b565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009458262000918565b9050919050565b620009578162000938565b81146200096357600080fd5b50565b60008151905062000977816200094c565b92915050565b6000819050919050565b62000992816200097d565b81146200099e57600080fd5b50565b600081519050620009b28162000987565b92915050565b60008060008060808587031215620009d557620009d462000913565b5b6000620009e58782880162000966565b9450506020620009f88782880162000966565b935050604062000a0b8782880162000966565b925050606062000a1e87828801620009a1565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000aac57607f821691505b60208210810362000ac25762000ac162000a64565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aed565b62000b38868362000aed565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b7b62000b7562000b6f846200097d565b62000b50565b6200097d565b9050919050565b6000819050919050565b62000b978362000b5a565b62000baf62000ba68262000b82565b84845462000afa565b825550505050565b600090565b62000bc662000bb7565b62000bd381848462000b8c565b505050565b5b8181101562000bfb5762000bef60008262000bbc565b60018101905062000bd9565b5050565b601f82111562000c4a5762000c148162000ac8565b62000c1f8462000add565b8101602085101562000c2f578190505b62000c4762000c3e8562000add565b83018262000bd8565b50505b505050565b600082821c905092915050565b600062000c6f6000198460080262000c4f565b1980831691505092915050565b600062000c8a838362000c5c565b9150826002028217905092915050565b62000ca58262000a2a565b67ffffffffffffffff81111562000cc15762000cc062000a35565b5b62000ccd825462000a93565b62000cda82828562000bff565b600060209050601f83116001811462000d12576000841562000cfd578287015190505b62000d09858262000c7c565b86555062000d79565b601f19841662000d228662000ac8565b60005b8281101562000d4c5784890151825560018201915060208501945060208101905062000d25565b8683101562000d6c578489015162000d68601f89168262000c5c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e0f5780860481111562000de75762000de662000d81565b5b600185161562000df75780820291505b808102905062000e078562000db0565b945062000dc7565b94509492505050565b60008262000e2a576001905062000efd565b8162000e3a576000905062000efd565b816001811462000e53576002811462000e5e5762000e94565b600191505062000efd565b60ff84111562000e735762000e7262000d81565b5b8360020a91508482111562000e8d5762000e8c62000d81565b5b5062000efd565b5060208310610133831016604e8410600b841016171562000ece5782820a90508381111562000ec85762000ec762000d81565b5b62000efd565b62000edd848484600162000dbd565b9250905081840481111562000ef75762000ef662000d81565b5b81810290505b9392505050565b600060ff82169050919050565b600062000f1e826200097d565b915062000f2b8362000f04565b925062000f5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e18565b905092915050565b600062000f6f826200097d565b915062000f7c836200097d565b925082820262000f8c816200097d565b9150828204841483151762000fa65762000fa562000d81565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ff6601f8362000fad565b9150620010038262000fbe565b602082019050919050565b60006020820190508181036000830152620010298162000fe7565b9050919050565b60006200103d826200097d565b91506200104a836200097d565b925082820190508082111562001065576200106462000d81565b5b92915050565b62001076816200097d565b82525050565b60006020820190506200109360008301846200106b565b92915050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b6000620010f7602b8362000fad565b9150620011048262001099565b604082019050919050565b600060208201905081810360008301526200112a81620010e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200116960208362000fad565b9150620011768262001131565b602082019050919050565b600060208201905081810360008301526200119c816200115a565b9050919050565b6121d580620011b36000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de57806395d89b4111610097578063a8aa1b3111610071578063a8aa1b311461044e578063a9059cbb1461046c578063dd62ed3e1461049c578063f2fde38b146104cc57610173565b806395d89b41146103e257806399c8d55614610400578063a457c2d71461041e57610173565b8063715018a6146103345780637223442d1461033e578063737ea06e1461036e57806378e3079e1461038c5780638187f516146103a85780638da5cb5b146103c457610173565b806323b872dd1161013057806323b872dd1461024c5780632e5bb6ff1461027c578063313ce5671461029857806339509351146102b65780634d237730146102e657806370a082311461030457610173565b806306fdde0314610178578063095e391314610196578063095ea7b3146101b257806316c2be6b146101e257806318160ddd146102125780631dc6104014610230575b600080fd5b6101806104e8565b60405161018d9190611789565b60405180910390f35b6101b060048036038101906101ab919061180e565b61057a565b005b6101cc60048036038101906101c79190611871565b61062c565b6040516101d991906118cc565b60405180910390f35b6101fc60048036038101906101f7919061180e565b61064f565b60405161020991906118cc565b60405180910390f35b61021a61066f565b60405161022791906118f6565b60405180910390f35b61024a6004803603810190610245919061193d565b610679565b005b6102666004803603810190610261919061197d565b6107a1565b60405161027391906118cc565b60405180910390f35b610296600480360381019061029191906119d0565b6107d0565b005b6102a06108e2565b6040516102ad9190611a19565b60405180910390f35b6102d060048036038101906102cb9190611871565b6108eb565b6040516102dd91906118cc565b60405180910390f35b6102ee610922565b6040516102fb9190611a43565b60405180910390f35b61031e6004803603810190610319919061180e565b610948565b60405161032b91906118f6565b60405180910390f35b61033c610990565b005b61035860048036038101906103539190611a5e565b6109a4565b60405161036591906118cc565b60405180910390f35b610376610bdc565b6040516103839190611a43565b60405180910390f35b6103a660048036038101906103a1919061180e565b610c02565b005b6103c260048036038101906103bd919061180e565b610d79565b005b6103cc610dc5565b6040516103d99190611a43565b60405180910390f35b6103ea610def565b6040516103f79190611789565b60405180910390f35b610408610e81565b60405161041591906118f6565b60405180910390f35b61043860048036038101906104339190611871565b610e87565b60405161044591906118cc565b60405180910390f35b610456610efe565b6040516104639190611a43565b60405180910390f35b61048660048036038101906104819190611871565b610f24565b60405161049391906118cc565b60405180910390f35b6104b660048036038101906104b19190611a5e565b610f47565b6040516104c391906118f6565b60405180910390f35b6104e660048036038101906104e1919061180e565b610fce565b005b6060600380546104f790611acd565b80601f016020809104026020016040519081016040528092919081815260200182805461052390611acd565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b610582611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105e8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106376110cf565b90506106448185856110d7565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610681610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806107075750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073d90611b70565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806107ac6110cf565b90506107b98582856112a0565b6107c485858561132c565b60019150509392505050565b6107d8610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061085e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490611b70565b60405180910390fd5b600f8111156108d8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060078190555050565b60006012905090565b6000806108f66110cf565b90506109178185856109088589610f47565b6109129190611bbf565b6110d7565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610998611051565b6109a260006113b3565b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610a4a5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610a895750610a59610dc5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610ac85750610a98610dc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610b235750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b8015610bd45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bd35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c0a610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c905750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690611b70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d35576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d81611051565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dfe90611acd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2a90611acd565b8015610e775780601f10610e4c57610100808354040283529160200191610e77565b820191906000526020600020905b815481529060010190602001808311610e5a57829003601f168201915b5050505050905090565b60075481565b600080610e926110cf565b90506000610ea08286610f47565b905083811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611c65565b60405180910390fd5b610ef282868684036110d7565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f2f6110cf565b9050610f3c81858561132c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd6611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90611cf7565b60405180910390fd5b61104e816113b3565b50565b6110596110cf565b73ffffffffffffffffffffffffffffffffffffffff16611077610dc5565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490611d63565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90611df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90611e87565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129391906118f6565b60405180910390a3505050565b60006112ac8484610f47565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113265781811015611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90611ef3565b60405180910390fd5b61132584848484036110d7565b5b50505050565b61133683836109a4565b156113a257600060646007548361134d9190611f13565b6113579190611f84565b905061136f8484838561136a9190611fb5565b611479565b61139c84600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611479565b506113ae565b6113ad838383611479565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061205b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906120ed565b60405180910390fd5b6115628383836116ef565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df9061217f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d691906118f6565b60405180910390a36116e98484846116f4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611733578082015181840152602081019050611718565b60008484015250505050565b6000601f19601f8301169050919050565b600061175b826116f9565b6117658185611704565b9350611775818560208601611715565b61177e8161173f565b840191505092915050565b600060208201905081810360008301526117a38184611750565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117db826117b0565b9050919050565b6117eb816117d0565b81146117f657600080fd5b50565b600081359050611808816117e2565b92915050565b600060208284031215611824576118236117ab565b5b6000611832848285016117f9565b91505092915050565b6000819050919050565b61184e8161183b565b811461185957600080fd5b50565b60008135905061186b81611845565b92915050565b60008060408385031215611888576118876117ab565b5b6000611896858286016117f9565b92505060206118a78582860161185c565b9150509250929050565b60008115159050919050565b6118c6816118b1565b82525050565b60006020820190506118e160008301846118bd565b92915050565b6118f08161183b565b82525050565b600060208201905061190b60008301846118e7565b92915050565b61191a816118b1565b811461192557600080fd5b50565b60008135905061193781611911565b92915050565b60008060408385031215611954576119536117ab565b5b6000611962858286016117f9565b925050602061197385828601611928565b9150509250929050565b600080600060608486031215611996576119956117ab565b5b60006119a4868287016117f9565b93505060206119b5868287016117f9565b92505060406119c68682870161185c565b9150509250925092565b6000602082840312156119e6576119e56117ab565b5b60006119f48482850161185c565b91505092915050565b600060ff82169050919050565b611a13816119fd565b82525050565b6000602082019050611a2e6000830184611a0a565b92915050565b611a3d816117d0565b82525050565b6000602082019050611a586000830184611a34565b92915050565b60008060408385031215611a7557611a746117ab565b5b6000611a83858286016117f9565b9250506020611a94858286016117f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ae557607f821691505b602082108103611af857611af7611a9e565b5b50919050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b6000611b5a602b83611704565b9150611b6582611afe565b604082019050919050565b60006020820190508181036000830152611b8981611b4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bca8261183b565b9150611bd58361183b565b9250828201905080821115611bed57611bec611b90565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c4f602583611704565b9150611c5a82611bf3565b604082019050919050565b60006020820190508181036000830152611c7e81611c42565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ce1602683611704565b9150611cec82611c85565b604082019050919050565b60006020820190508181036000830152611d1081611cd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d4d602083611704565b9150611d5882611d17565b602082019050919050565b60006020820190508181036000830152611d7c81611d40565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ddf602483611704565b9150611dea82611d83565b604082019050919050565b60006020820190508181036000830152611e0e81611dd2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e71602283611704565b9150611e7c82611e15565b604082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611edd601d83611704565b9150611ee882611ea7565b602082019050919050565b60006020820190508181036000830152611f0c81611ed0565b9050919050565b6000611f1e8261183b565b9150611f298361183b565b9250828202611f378161183b565b91508282048414831517611f4e57611f4d611b90565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f8f8261183b565b9150611f9a8361183b565b925082611faa57611fa9611f55565b5b828204905092915050565b6000611fc08261183b565b9150611fcb8361183b565b9250828203905081811115611fe357611fe2611b90565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612045602583611704565b915061205082611fe9565b604082019050919050565b6000602082019050818103600083015261207481612038565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120d7602383611704565b91506120e28261207b565b604082019050919050565b60006020820190508181036000830152612106816120ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612169602683611704565b91506121748261210d565b604082019050919050565b600060208201905081810360008301526121988161215c565b905091905056fea264697066735822122043a0e6d4f26a328798e059ed35fcd87307e8cbffe0bec9e7e5d1d0fd56631d0c64736f6c63430008110033000000000000000000000000378382b7581c3a3635da72c8d87ed18d999275e3000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b0000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de57806395d89b4111610097578063a8aa1b3111610071578063a8aa1b311461044e578063a9059cbb1461046c578063dd62ed3e1461049c578063f2fde38b146104cc57610173565b806395d89b41146103e257806399c8d55614610400578063a457c2d71461041e57610173565b8063715018a6146103345780637223442d1461033e578063737ea06e1461036e57806378e3079e1461038c5780638187f516146103a85780638da5cb5b146103c457610173565b806323b872dd1161013057806323b872dd1461024c5780632e5bb6ff1461027c578063313ce5671461029857806339509351146102b65780634d237730146102e657806370a082311461030457610173565b806306fdde0314610178578063095e391314610196578063095ea7b3146101b257806316c2be6b146101e257806318160ddd146102125780631dc6104014610230575b600080fd5b6101806104e8565b60405161018d9190611789565b60405180910390f35b6101b060048036038101906101ab919061180e565b61057a565b005b6101cc60048036038101906101c79190611871565b61062c565b6040516101d991906118cc565b60405180910390f35b6101fc60048036038101906101f7919061180e565b61064f565b60405161020991906118cc565b60405180910390f35b61021a61066f565b60405161022791906118f6565b60405180910390f35b61024a6004803603810190610245919061193d565b610679565b005b6102666004803603810190610261919061197d565b6107a1565b60405161027391906118cc565b60405180910390f35b610296600480360381019061029191906119d0565b6107d0565b005b6102a06108e2565b6040516102ad9190611a19565b60405180910390f35b6102d060048036038101906102cb9190611871565b6108eb565b6040516102dd91906118cc565b60405180910390f35b6102ee610922565b6040516102fb9190611a43565b60405180910390f35b61031e6004803603810190610319919061180e565b610948565b60405161032b91906118f6565b60405180910390f35b61033c610990565b005b61035860048036038101906103539190611a5e565b6109a4565b60405161036591906118cc565b60405180910390f35b610376610bdc565b6040516103839190611a43565b60405180910390f35b6103a660048036038101906103a1919061180e565b610c02565b005b6103c260048036038101906103bd919061180e565b610d79565b005b6103cc610dc5565b6040516103d99190611a43565b60405180910390f35b6103ea610def565b6040516103f79190611789565b60405180910390f35b610408610e81565b60405161041591906118f6565b60405180910390f35b61043860048036038101906104339190611871565b610e87565b60405161044591906118cc565b60405180910390f35b610456610efe565b6040516104639190611a43565b60405180910390f35b61048660048036038101906104819190611871565b610f24565b60405161049391906118cc565b60405180910390f35b6104b660048036038101906104b19190611a5e565b610f47565b6040516104c391906118f6565b60405180910390f35b6104e660048036038101906104e1919061180e565b610fce565b005b6060600380546104f790611acd565b80601f016020809104026020016040519081016040528092919081815260200182805461052390611acd565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b610582611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105e8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106376110cf565b90506106448185856110d7565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610681610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806107075750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073d90611b70565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806107ac6110cf565b90506107b98582856112a0565b6107c485858561132c565b60019150509392505050565b6107d8610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061085e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490611b70565b60405180910390fd5b600f8111156108d8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060078190555050565b60006012905090565b6000806108f66110cf565b90506109178185856109088589610f47565b6109129190611bbf565b6110d7565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610998611051565b6109a260006113b3565b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610a4a5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610a895750610a59610dc5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610ac85750610a98610dc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610b235750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b8015610bd45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bd35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c0a610dc5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c905750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690611b70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d35576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d81611051565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dfe90611acd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2a90611acd565b8015610e775780601f10610e4c57610100808354040283529160200191610e77565b820191906000526020600020905b815481529060010190602001808311610e5a57829003601f168201915b5050505050905090565b60075481565b600080610e926110cf565b90506000610ea08286610f47565b905083811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611c65565b60405180910390fd5b610ef282868684036110d7565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f2f6110cf565b9050610f3c81858561132c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd6611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90611cf7565b60405180910390fd5b61104e816113b3565b50565b6110596110cf565b73ffffffffffffffffffffffffffffffffffffffff16611077610dc5565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490611d63565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90611df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90611e87565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129391906118f6565b60405180910390a3505050565b60006112ac8484610f47565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113265781811015611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90611ef3565b60405180910390fd5b61132584848484036110d7565b5b50505050565b61133683836109a4565b156113a257600060646007548361134d9190611f13565b6113579190611f84565b905061136f8484838561136a9190611fb5565b611479565b61139c84600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611479565b506113ae565b6113ad838383611479565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061205b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906120ed565b60405180910390fd5b6115628383836116ef565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df9061217f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d691906118f6565b60405180910390a36116e98484846116f4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611733578082015181840152602081019050611718565b60008484015250505050565b6000601f19601f8301169050919050565b600061175b826116f9565b6117658185611704565b9350611775818560208601611715565b61177e8161173f565b840191505092915050565b600060208201905081810360008301526117a38184611750565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117db826117b0565b9050919050565b6117eb816117d0565b81146117f657600080fd5b50565b600081359050611808816117e2565b92915050565b600060208284031215611824576118236117ab565b5b6000611832848285016117f9565b91505092915050565b6000819050919050565b61184e8161183b565b811461185957600080fd5b50565b60008135905061186b81611845565b92915050565b60008060408385031215611888576118876117ab565b5b6000611896858286016117f9565b92505060206118a78582860161185c565b9150509250929050565b60008115159050919050565b6118c6816118b1565b82525050565b60006020820190506118e160008301846118bd565b92915050565b6118f08161183b565b82525050565b600060208201905061190b60008301846118e7565b92915050565b61191a816118b1565b811461192557600080fd5b50565b60008135905061193781611911565b92915050565b60008060408385031215611954576119536117ab565b5b6000611962858286016117f9565b925050602061197385828601611928565b9150509250929050565b600080600060608486031215611996576119956117ab565b5b60006119a4868287016117f9565b93505060206119b5868287016117f9565b92505060406119c68682870161185c565b9150509250925092565b6000602082840312156119e6576119e56117ab565b5b60006119f48482850161185c565b91505092915050565b600060ff82169050919050565b611a13816119fd565b82525050565b6000602082019050611a2e6000830184611a0a565b92915050565b611a3d816117d0565b82525050565b6000602082019050611a586000830184611a34565b92915050565b60008060408385031215611a7557611a746117ab565b5b6000611a83858286016117f9565b9250506020611a94858286016117f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ae557607f821691505b602082108103611af857611af7611a9e565b5b50919050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b6000611b5a602b83611704565b9150611b6582611afe565b604082019050919050565b60006020820190508181036000830152611b8981611b4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bca8261183b565b9150611bd58361183b565b9250828201905080821115611bed57611bec611b90565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c4f602583611704565b9150611c5a82611bf3565b604082019050919050565b60006020820190508181036000830152611c7e81611c42565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ce1602683611704565b9150611cec82611c85565b604082019050919050565b60006020820190508181036000830152611d1081611cd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d4d602083611704565b9150611d5882611d17565b602082019050919050565b60006020820190508181036000830152611d7c81611d40565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ddf602483611704565b9150611dea82611d83565b604082019050919050565b60006020820190508181036000830152611e0e81611dd2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e71602283611704565b9150611e7c82611e15565b604082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611edd601d83611704565b9150611ee882611ea7565b602082019050919050565b60006020820190508181036000830152611f0c81611ed0565b9050919050565b6000611f1e8261183b565b9150611f298361183b565b9250828202611f378161183b565b91508282048414831517611f4e57611f4d611b90565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f8f8261183b565b9150611f9a8361183b565b925082611faa57611fa9611f55565b5b828204905092915050565b6000611fc08261183b565b9150611fcb8361183b565b9250828203905081811115611fe357611fe2611b90565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612045602583611704565b915061205082611fe9565b604082019050919050565b6000602082019050818103600083015261207481612038565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120d7602383611704565b91506120e28261207b565b604082019050919050565b60006020820190508181036000830152612106816120ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612169602683611704565b91506121748261210d565b604082019050919050565b600060208201905081810360008301526121988161215c565b905091905056fea264697066735822122043a0e6d4f26a328798e059ed35fcd87307e8cbffe0bec9e7e5d1d0fd56631d0c64736f6c63430008110033

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

000000000000000000000000378382b7581c3a3635da72c8d87ed18d999275e3000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b0000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : mintRecipient_ (address): 0x378382b7581c3a3635da72C8d87Ed18d999275e3
Arg [1] : taxRecipient_ (address): 0x442D3Ee253aECE934a09974e6c12Ac110ef89a4B
Arg [2] : taxManager_ (address): 0x442D3Ee253aECE934a09974e6c12Ac110ef89a4B
Arg [3] : tax_ (uint256): 5

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000378382b7581c3a3635da72c8d87ed18d999275e3
Arg [1] : 000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b
Arg [2] : 000000000000000000000000442d3ee253aece934a09974e6c12ac110ef89a4b
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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