POL Price: $0.686939 (-4.17%)
 

Overview

Max Total Supply

2,119,669,489.186546478527451171 REMN

Holders

1,266

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
156,952.74 REMN

Value
$0.00
0x6ee3286f8a1cfd2329ef39eb58d6c5f13cd4b176
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
RemnantTokenPolygon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : RemnantTokenPolygon.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./extensions/BP.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract RemnantTokenPolygon is ERC20, Ownable, BP {
    // For team, staking, P2E ecosystem, other
    address public constant ADDRESS_ECOSYSTEM = 0x88e50b87F39E5abb4ef94eC3794314f74F31c63a;
    address public constant ADDRESS_BACKERS = 0x44e13ED3Aae3bbB4f3cDe8acaAF4d25036CC270a;
    address public constant ADDRESS_STAKING = 0xc5522C9F6F3c9CD87bF74EDe5424dcF3a4b8b29D;
    address public constant ADDRESS_TEAM = 0x73b4eFF6Af5C7EA220403B009fFf0c0dA2d19C67;
    address public constant ADDRESS_LIQUIDITY = 0x65B903979CD209233a481B29cdD1f030612dE605;
    address public constant ADDRESS_MARKETING = 0xaBe19e6fd481c424b00D3a8aF70C77d7aE55E70d;
    address public constant ADDRESS_TREASURY = 0x4A8Cd013879c4D48C96EAA50dE9Af2969e297586;
    address public constant ADDRESS_DEVELOPMENT = 0x7496e1D91f7Dcad9a4889a9A023736850300fE97;

    address public childChainManagerProxy;
    address deployer;

    constructor(address _childChainManagerProxy) ERC20("Remnant", "REMN") {
        childChainManagerProxy = _childChainManagerProxy;
        deployer = msg.sender;
        // Can't mint here, because minting in child chain smart contract's constructor not allowed
    }

    // Being proxified smart contract, most probably childChainManagerProxy contract's address
    function updateChildChainManager(address newChildChainManagerProxy) external {
        require(newChildChainManagerProxy != address(0), "Bad ChildChainManagerProxy address");
        require(msg.sender == deployer, "You're not allowed");

        childChainManagerProxy = newChildChainManagerProxy;
    }
    
    /**
     * @notice called when token is deposited on root chain
     * @dev Should be callable only by ChildChainManager
     * Should handle deposit by minting the required amount for user
     * Make sure minting is done only by this function
     * @param user user address for whom deposit is being done
     * @param depositData abi encoded amount
     */
    function deposit(address user, bytes calldata depositData) external {
        require(msg.sender == childChainManagerProxy, "You're not allowed to deposit");

        uint256 amount = abi.decode(depositData, (uint256));

        _mint(user, amount);
    }

    /**
     * @notice called when user wants to withdraw tokens back to root chain
     * @dev Should burn user's tokens. This transaction will be verified when exiting on root chain
     * @param amount amount of tokens to withdraw
     */
    function withdraw(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /**
     * @dev Check before token transfer if bot protection is on, to block suspicious transactions
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        // Bot/snipe protection requirements if bp (bot protection) is on, and is not already permanently disabled
        if (bpEnabled) {
            if (!bpPermanentlyDisabled && msg.sender != owner()) { // Save gas, don't check if don't pass bpEnabled
                require(!bpBlacklisted[from] && !bpBlacklisted[to], "BP: Account is blacklisted"); // Must not be blacklisted
                if (bpTradingBlocked) {
                    if (from != bpDistributionAddr) // Token distributor bypasses block
                    {
                        if (to != bpWhitelistedStakingPool && to != bpWhitelistAddr) {
                            revert Blocked(); // If trading is blocked, revert if not sending to the whitelisted address (i.e. Staking pool)
                        }
                    }
                }
                require(tx.gasprice <= bpMaxGas, "BP: Gas setting exceeds allowed limit"); // Must set gas below allowed limit

                // If user is buying (from swap), check that the buy amount is less than the limit (this will not block other transfers unrelated to swap liquidity)
                if (bpSwapPairRouterPool == from) {
                    require(amount <= bpMaxBuyAmount, "BP: Buy exceeds allowed limit"); // Cannot buy more than allowed limit
                    require(bpAddressTimesTransacted[to] < bpAllowedNumberOfTx, "BP: Exceeded number of allowed transactions");
                    if (!bpTradingEnabled) {
                        bpBlacklisted[to] = true; // Blacklist wallet if it tries to trade (i.e. bot automatically trying to snipe liquidity)
                        revert SwapNotEnabledYet(); // Revert with error message
                    } else {
                        bpAddressTimesTransacted[to] += 1; // User has passed transaction conditions, so add to mapping (to limit user to 2 transactions)
                    }
                // If user is selling (from swap), check that the sell amount is less than the limit. The code is mostly repeated to avoid declaring variable and wasting gas.
                } else if (bpSwapPairRouterPool == to) {
                    require(amount <= bpMaxSellAmount, "BP: Sell exceeds limit"); // Cannot sell more than allowed limit
                    require(bpAddressTimesTransacted[from] < bpAllowedNumberOfTx, "BP: Exceeded number of allowed transactions");
                    if (!bpTradingEnabled) {
                        bpBlacklisted[from] = true; // Blacklist wallet if it tries to trade (i.e. bot automatically trying to snipe liquidity)
                        revert SwapNotEnabledYet(); // Revert with error message
                    } else {
                        bpAddressTimesTransacted[from] += 1; // User has passed transaction conditions, so add to mapping (to limit user to 2 transactions)
                    }
                }
            }
        }
        super._beforeTokenTransfer(from, to, amount);
    }

}

File 2 of 7 : BP.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";

error SwapNotEnabledYet();
error Blocked();

contract BP is Ownable {
    
    // For bp (bot protection), to deter liquidity sniping, enabled during first moments of each swap liquidity (ie. Uniswap, Quickswap, etc)
    uint256 public bpAllowedNumberOfTx;     // Max allowed number of buys/sells on swap during bp per address
    uint256 public bpMaxGas;                // Max gwei per trade allowed during bot protection
    uint256 public bpMaxBuyAmount;          // Max number of tokens an address can buy during bot protection
    uint256 public bpMaxSellAmount;         // Max number of tokens an address can sell during bot protection
    bool public bpEnabled;                  // Bot protection, on or off
    bool public bpTradingEnabled;           // Enables trading during bot protection period
    bool public bpPermanentlyDisabled;      // Starts false, but when set to true, is permanently true. Let's public see that it is off forever.
    address public bpSwapPairRouterPool;           // ie. Uniswap V2 ETH-REMN Pool (router) for bot protected buy/sell, add after pool established.
    bool public bpTradingBlocked;            // Token might want to block trading until liquidity is added
    address public bpWhitelistedStakingPool;    // Whitelist staking pool so users can send to it regardless of trading block
    address public bpWhitelistAddr;             // Whitelist an additional address (i.e. Another staking pool)
    address public bpDistributionAddr;          // Distribution address, which bypasses any bot protection trading block
    mapping (address => uint256) public bpAddressTimesTransacted;   // Mapped value counts number of times transacted (2 max per address during bp)
    mapping (address => bool) public bpBlacklisted;                 // If wallet tries to trade after liquidity is added but before owner sets trading on, wallet is blacklisted

    /**
     * @dev Toggles bot protection, blocking suspicious transactions during liquidity events.
     */
    function bpToggleOnOff() external onlyOwner {
        bpEnabled = !bpEnabled;
    }

    /**
     * @dev Sets max gwei allowed in transaction when bot protection is on.
     */
    function bpSetMaxGwei(uint256 gweiAmount) external onlyOwner {
        bpMaxGas = gweiAmount;
    }

    /**
     * @dev Sets max buy value when bot protection is on.
     */
    function bpSetMaxBuyValue(uint256 val) external onlyOwner {
        bpMaxBuyAmount = val;
    }

     /**
     * @dev Sets max sell value when bot protection is on.
     */
    function bpSetMaxSellValue(uint256 val) external onlyOwner {
        bpMaxSellAmount = val;
    }

    /**
     * @dev Sets swap pair pool address (i.e. Uniswap V2 ETH-REMN pool, for bot protection)
     */
    function bpSetSwapPairPool(address addr) external onlyOwner {
        bpSwapPairRouterPool = addr;
    }

    /**
     * @dev Sets staking pool address so that users are not blocked from staking during trading block
     */
    function bpSetWhitelistedStakingPool(address addr) external onlyOwner {
        bpWhitelistedStakingPool = addr;
    }

    /**
     * @dev Sets a whitelist address that users can send to during trading block (i.e. sale event or additional stkaing pool)
     */
    function bpSetWhitelistedAddress(address addr) external onlyOwner {
        bpWhitelistAddr = addr;
    }

    /**
     * @dev Sets the distribution address
     */
    function bpSetDistributionAddress(address addr) external onlyOwner {
        bpDistributionAddr = addr;
    }

    /**
     * @dev Turns off bot protection permanently.
     */
    function bpDisablePermanently() external onlyOwner {
        bpEnabled = false;
        bpPermanentlyDisabled = true;
    }

    function bpAddBlacklist(address addr) external onlyOwner {
        bpBlacklisted[addr] = true;
    }

    function bpRemoveBlacklist(address addr) external onlyOwner {
        bpBlacklisted[addr] = false;
    }

    /**
     * @dev Toggles bot protection trading (requires bp not permanently disabled)
     */
    function bpToggleTrading() external onlyOwner {
        require(!bpPermanentlyDisabled, "Cannot toggle when bot protection is already disabled permanently");
        bpTradingEnabled = !bpTradingEnabled;
    }

    /**
     * @dev Toggles token transfers (all trading), during bp
     */
    function bpToggleTradingBlock() external onlyOwner {
        bpTradingBlocked = !bpTradingBlocked;
    }

}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 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 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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":"_childChainManagerProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Blocked","type":"error"},{"inputs":[],"name":"SwapNotEnabledYet","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":[],"name":"ADDRESS_BACKERS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_DEVELOPMENT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_ECOSYSTEM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_LIQUIDITY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_MARKETING","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_STAKING","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_TEAM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpAddBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bpAddressTimesTransacted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpAllowedNumberOfTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bpBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpDisablePermanently","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpDistributionAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpMaxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpMaxGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpMaxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpPermanentlyDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpRemoveBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpSetDistributionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"bpSetMaxBuyValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gweiAmount","type":"uint256"}],"name":"bpSetMaxGwei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"bpSetMaxSellValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpSetSwapPairPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpSetWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"bpSetWhitelistedStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpSwapPairRouterPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpToggleOnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpToggleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpToggleTradingBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpTradingBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpWhitelistAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpWhitelistedStakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"childChainManagerProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newChildChainManagerProxy","type":"address"}],"name":"updateChildChainManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200401538038062004015833981810160405281019062000037919062000315565b6040518060400160405280600781526020017f52656d6e616e74000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52454d4e000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb9291906200024e565b508060049080519060200190620000d49291906200024e565b505050620000f7620000eb6200018060201b60201c565b6200018860201b60201c565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003ff565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025c906200037b565b90600052602060002090601f016020900481019282620002805760008555620002cc565b82601f106200029b57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cb578251825591602001919060010190620002ae565b5b509050620002db9190620002df565b5090565b5b80821115620002fa576000816000905550600101620002e0565b5090565b6000815190506200030f81620003e5565b92915050565b6000602082840312156200032e576200032d620003e0565b5b60006200033e84828501620002fe565b91505092915050565b600062000354826200035b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200039457607f821691505b60208210811415620003ab57620003aa620003b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003f08162000347565b8114620003fc57600080fd5b50565b613c06806200040f6000396000f3fe608060405234801561001057600080fd5b50600436106103275760003560e01c80638612bbbc116101b8578063b1a0820b11610104578063dd62ed3e116100a2578063dd7585b11161007c578063dd7585b114610910578063f2e3b6401461092e578063f2fde38b1461094c578063f5fa8b821461096857610327565b8063dd62ed3e146108a4578063dd67eca5146108d4578063dd7538a5146108f257610327565b8063bf115e44116100de578063bf115e4414610844578063c7844c481461084e578063cf2c52cb1461087e578063d5c5617d1461089a57610327565b8063b1a0820b146107ee578063b30c084f1461080a578063bd97067e1461082857610327565b80639ce9aa0811610171578063a82224521161014b578063a822245214610766578063a9059cbb14610782578063a9b7fa41146107b2578063ae6a6cb8146107d057610327565b80639ce9aa08146106fe578063a457c2d71461071a578063a53b4a441461074a57610327565b80638612bbbc1461064c5780638b284dd61461066a5780638da5cb5b14610688578063928a1b9c146106a657806395d89b41146106c257806399fe92c5146106e057610327565b806333e4847e1161027757806362e3a4ea1161023057806369e4662e1161020a57806369e4662e146105ea57806370a08231146105f4578063715018a61461062457806385ac8e961461062e57610327565b806362e3a4ea146105a457806362f629e7146105ae578063662264c5146105cc57610327565b806333e4847e146104d257806339509351146105025780633b279f9614610532578063445a67971461055057806351526fb41461056c578063529b23151461058857610327565b80631236edec116102e457806326898da9116102be57806326898da91461045c5780632817cd851461047a5780632e1a7d4d14610498578063313ce567146104b457610327565b80631236edec146103f257806318160ddd1461040e57806323b872dd1461042c57610327565b8063022c478e1461032c57806303702f0d1461034a57806303bfe9481461036857806306fdde0314610386578063095ea7b3146103a45780630c4c2f6f146103d4575b600080fd5b610334610986565b6040516103419190613136565b60405180910390f35b610352610999565b60405161035f9190613413565b60405180910390f35b61037061099f565b60405161037d919061311b565b60405180910390f35b61038e6109c5565b60405161039b9190613151565b60405180910390f35b6103be60048036038101906103b99190612d5a565b610a57565b6040516103cb9190613136565b60405180910390f35b6103dc610a7a565b6040516103e9919061311b565b60405180910390f35b61040c60048036038101906104079190612c3a565b610a92565b005b610416610b69565b6040516104239190613413565b60405180910390f35b61044660048036038101906104419190612ca7565b610b73565b6040516104539190613136565b60405180910390f35b610464610ba2565b6040516104719190613136565b60405180910390f35b610482610bb5565b60405161048f919061311b565b60405180910390f35b6104b260048036038101906104ad9190612d9a565b610bdb565b005b6104bc610be8565b6040516104c9919061342e565b60405180910390f35b6104ec60048036038101906104e79190612c3a565b610bf1565b6040516104f99190613413565b60405180910390f35b61051c60048036038101906105179190612d5a565b610c09565b6040516105299190613136565b60405180910390f35b61053a610c40565b6040516105479190613413565b60405180910390f35b61056a60048036038101906105659190612c3a565b610c46565b005b61058660048036038101906105819190612d9a565b610d8a565b005b6105a2600480360381019061059d9190612c3a565b610e10565b005b6105ac610ed0565b005b6105b6610fc8565b6040516105c3919061311b565b60405180910390f35b6105d4610fee565b6040516105e1919061311b565b60405180910390f35b6105f2611006565b005b61060e60048036038101906106099190612c3a565b6110ae565b60405161061b9190613413565b60405180910390f35b61062c6110f6565b005b61063661117e565b6040516106439190613413565b60405180910390f35b610654611184565b604051610661919061311b565b60405180910390f35b61067261119c565b60405161067f9190613136565b60405180910390f35b6106906111af565b60405161069d919061311b565b60405180910390f35b6106c060048036038101906106bb9190612d9a565b6111d9565b005b6106ca61125f565b6040516106d79190613151565b60405180910390f35b6106e86112f1565b6040516106f59190613136565b60405180910390f35b61071860048036038101906107139190612c3a565b611304565b005b610734600480360381019061072f9190612d5a565b6113db565b6040516107419190613136565b60405180910390f35b610764600480360381019061075f9190612d9a565b611452565b005b610780600480360381019061077b9190612c3a565b6114d8565b005b61079c60048036038101906107979190612d5a565b611598565b6040516107a99190613136565b60405180910390f35b6107ba6115bb565b6040516107c7919061311b565b60405180910390f35b6107d86115d3565b6040516107e5919061311b565b60405180910390f35b61080860048036038101906108039190612c3a565b6115f9565b005b6108126116b9565b60405161081f919061311b565b60405180910390f35b610842600480360381019061083d9190612c3a565b6116d1565b005b61084c611791565b005b61086860048036038101906108639190612c3a565b611845565b6040516108759190613136565b60405180910390f35b61089860048036038101906108939190612cfa565b611865565b005b6108a2611918565b005b6108be60048036038101906108b99190612c67565b6119c0565b6040516108cb9190613413565b60405180910390f35b6108dc611a47565b6040516108e9919061311b565b60405180910390f35b6108fa611a5f565b604051610907919061311b565b60405180910390f35b610918611a85565b604051610925919061311b565b60405180910390f35b610936611a9d565b6040516109439190613413565b60405180910390f35b61096660048036038101906109619190612c3a565b611aa3565b005b610970611b9b565b60405161097d919061311b565b60405180910390f35b600a60029054906101000a900460ff1681565b60075481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546109d490613577565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613577565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b600080610a62611bb3565b9050610a6f818585611bbb565b600191505092915050565b737496e1d91f7dcad9a4889a9a023736850300fe9781565b610a9a611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610ab86111af565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613313565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b600080610b7e611bb3565b9050610b8b858285611d86565b610b96858585611e12565b60019150509392505050565b600a60009054906101000a900460ff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be53382612093565b50565b60006012905090565b600e6020528060005260406000206000915090505481565b600080610c14611bb3565b9050610c35818585610c2685896119c0565b610c309190613465565b611bbb565b600191505092915050565b60085481565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad906131b3565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613233565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d92611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610db06111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613313565b60405180910390fd5b8060088190555050565b610e18611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610e366111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613313565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ed8611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610ef66111af565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613313565b60405180910390fd5b600a60029054906101000a900460ff1615610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906132d3565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b734a8cd013879c4d48c96eaa50de9af2969e29758681565b61100e611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661102c6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613313565b60405180910390fd5b600a60179054906101000a900460ff1615600a60176101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fe611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661111c6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990613313565b60405180910390fd5b61117c600061226a565b565b60065481565b7373b4eff6af5c7ea220403b009fff0c0da2d19c6781565b600a60179054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e1611bb3565b73ffffffffffffffffffffffffffffffffffffffff166111ff6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613313565b60405180910390fd5b8060098190555050565b60606004805461126e90613577565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90613577565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b61130c611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661132a6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790613313565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806113e6611bb3565b905060006113f482866119c0565b905083811015611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906133d3565b60405180910390fd5b6114468286868403611bbb565b60019250505092915050565b61145a611bb3565b73ffffffffffffffffffffffffffffffffffffffff166114786111af565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613313565b60405180910390fd5b8060078190555050565b6114e0611bb3565b73ffffffffffffffffffffffffffffffffffffffff166114fe6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613313565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806115a3611bb3565b90506115b0818585611e12565b600191505092915050565b7365b903979cd209233a481b29cdd1f030612de60581565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611601611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661161f6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613313565b60405180910390fd5b80600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7344e13ed3aae3bbb4f3cde8acaaf4d25036cc270a81565b6116d9611bb3565b73ffffffffffffffffffffffffffffffffffffffff166116f76111af565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490613313565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611799611bb3565b73ffffffffffffffffffffffffffffffffffffffff166117b76111af565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613313565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906131d3565b60405180910390fd5b600082828101906119069190612d9a565b90506119128482612330565b50505050565b611920611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661193e6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613313565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b73c5522c9f6f3c9cd87bf74ede5424dcf3a4b8b29d81565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7388e50b87f39e5abb4ef94ec3794314f74f31c63a81565b60095481565b611aab611bb3565b73ffffffffffffffffffffffffffffffffffffffff16611ac96111af565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613313565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906131f3565b60405180910390fd5b611b988161226a565b50565b73abe19e6fd481c424b00d3a8af70c77d7ae55e70d81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613393565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613213565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d799190613413565b60405180910390a3505050565b6000611d9284846119c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e0c5781811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613273565b60405180910390fd5b611e0b8484848403611bbb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613373565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613173565b60405180910390fd5b611efd838383612490565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613293565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120169190613465565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161207a9190613413565b60405180910390a361208d848484612bb0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90613353565b60405180910390fd5b61210f82600083612490565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613193565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121ec91906134bb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122519190613413565b60405180910390a361226583600084612bb0565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906133f3565b60405180910390fd5b6123ac60008383612490565b80600260008282546123be9190613465565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124139190613465565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124789190613413565b60405180910390a361248c60008383612bb0565b5050565b600a60009054906101000a900460ff1615612ba057600a60029054906101000a900460ff161580156124f557506124c56111af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15612b9f57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561259e5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d4906132b3565b60405180910390fd5b600a60179054906101000a900460ff161561272c57600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461272b57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126f35750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561272a576040517fa5baf15100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6007543a1115612771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612768906132f3565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129895760085481111561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390613253565b60405180910390fd5b600654600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061288f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612886906133b3565b60405180910390fd5b600a60019054906101000a900460ff1661292d576001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040517ff387f38d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297d9190613465565b92505081905550612b9e565b8173ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9d57600954811115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613333565b60405180910390fd5b600654600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9e906133b3565b60405180910390fd5b600a60019054906101000a900460ff16612b45576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040517ff387f38d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b959190613465565b925050819055505b5b5b5b612bab838383612bb5565b505050565b505050565b505050565b600081359050612bc981613ba2565b92915050565b60008083601f840112612be557612be461360c565b5b8235905067ffffffffffffffff811115612c0257612c01613607565b5b602083019150836001820283011115612c1e57612c1d613611565b5b9250929050565b600081359050612c3481613bb9565b92915050565b600060208284031215612c5057612c4f61361b565b5b6000612c5e84828501612bba565b91505092915050565b60008060408385031215612c7e57612c7d61361b565b5b6000612c8c85828601612bba565b9250506020612c9d85828601612bba565b9150509250929050565b600080600060608486031215612cc057612cbf61361b565b5b6000612cce86828701612bba565b9350506020612cdf86828701612bba565b9250506040612cf086828701612c25565b9150509250925092565b600080600060408486031215612d1357612d1261361b565b5b6000612d2186828701612bba565b935050602084013567ffffffffffffffff811115612d4257612d41613616565b5b612d4e86828701612bcf565b92509250509250925092565b60008060408385031215612d7157612d7061361b565b5b6000612d7f85828601612bba565b9250506020612d9085828601612c25565b9150509250929050565b600060208284031215612db057612daf61361b565b5b6000612dbe84828501612c25565b91505092915050565b612dd0816134ef565b82525050565b612ddf81613501565b82525050565b6000612df082613449565b612dfa8185613454565b9350612e0a818560208601613544565b612e1381613620565b840191505092915050565b6000612e2b602383613454565b9150612e3682613631565b604082019050919050565b6000612e4e602283613454565b9150612e5982613680565b604082019050919050565b6000612e71602283613454565b9150612e7c826136cf565b604082019050919050565b6000612e94601d83613454565b9150612e9f8261371e565b602082019050919050565b6000612eb7602683613454565b9150612ec282613747565b604082019050919050565b6000612eda602283613454565b9150612ee582613796565b604082019050919050565b6000612efd601283613454565b9150612f08826137e5565b602082019050919050565b6000612f20601d83613454565b9150612f2b8261380e565b602082019050919050565b6000612f43601d83613454565b9150612f4e82613837565b602082019050919050565b6000612f66602683613454565b9150612f7182613860565b604082019050919050565b6000612f89601a83613454565b9150612f94826138af565b602082019050919050565b6000612fac604183613454565b9150612fb7826138d8565b606082019050919050565b6000612fcf602583613454565b9150612fda8261394d565b604082019050919050565b6000612ff2602083613454565b9150612ffd8261399c565b602082019050919050565b6000613015601683613454565b9150613020826139c5565b602082019050919050565b6000613038602183613454565b9150613043826139ee565b604082019050919050565b600061305b602583613454565b915061306682613a3d565b604082019050919050565b600061307e602483613454565b915061308982613a8c565b604082019050919050565b60006130a1602b83613454565b91506130ac82613adb565b604082019050919050565b60006130c4602583613454565b91506130cf82613b2a565b604082019050919050565b60006130e7601f83613454565b91506130f282613b79565b602082019050919050565b6131068161352d565b82525050565b61311581613537565b82525050565b60006020820190506131306000830184612dc7565b92915050565b600060208201905061314b6000830184612dd6565b92915050565b6000602082019050818103600083015261316b8184612de5565b905092915050565b6000602082019050818103600083015261318c81612e1e565b9050919050565b600060208201905081810360008301526131ac81612e41565b9050919050565b600060208201905081810360008301526131cc81612e64565b9050919050565b600060208201905081810360008301526131ec81612e87565b9050919050565b6000602082019050818103600083015261320c81612eaa565b9050919050565b6000602082019050818103600083015261322c81612ecd565b9050919050565b6000602082019050818103600083015261324c81612ef0565b9050919050565b6000602082019050818103600083015261326c81612f13565b9050919050565b6000602082019050818103600083015261328c81612f36565b9050919050565b600060208201905081810360008301526132ac81612f59565b9050919050565b600060208201905081810360008301526132cc81612f7c565b9050919050565b600060208201905081810360008301526132ec81612f9f565b9050919050565b6000602082019050818103600083015261330c81612fc2565b9050919050565b6000602082019050818103600083015261332c81612fe5565b9050919050565b6000602082019050818103600083015261334c81613008565b9050919050565b6000602082019050818103600083015261336c8161302b565b9050919050565b6000602082019050818103600083015261338c8161304e565b9050919050565b600060208201905081810360008301526133ac81613071565b9050919050565b600060208201905081810360008301526133cc81613094565b9050919050565b600060208201905081810360008301526133ec816130b7565b9050919050565b6000602082019050818103600083015261340c816130da565b9050919050565b600060208201905061342860008301846130fd565b92915050565b6000602082019050613443600083018461310c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006134708261352d565b915061347b8361352d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af6135a9565b5b828201905092915050565b60006134c68261352d565b91506134d18361352d565b9250828210156134e4576134e36135a9565b5b828203905092915050565b60006134fa8261350d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613562578082015181840152602081019050613547565b83811115613571576000848401525b50505050565b6000600282049050600182168061358f57607f821691505b602082108114156135a3576135a26135d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f426164204368696c64436861696e4d616e6167657250726f787920616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f7765640000000000000000000000000000600082015250565b7f42503a20427579206578636565647320616c6c6f776564206c696d6974000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f42503a204163636f756e7420697320626c61636b6c6973746564000000000000600082015250565b7f43616e6e6f7420746f67676c65207768656e20626f742070726f74656374696f60008201527f6e20697320616c72656164792064697361626c6564207065726d616e656e746c60208201527f7900000000000000000000000000000000000000000000000000000000000000604082015250565b7f42503a204761732073657474696e67206578636565647320616c6c6f7765642060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f42503a2053656c6c2065786365656473206c696d697400000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f42503a204578636565646564206e756d626572206f6620616c6c6f776564207460008201527f72616e73616374696f6e73000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613bab816134ef565b8114613bb657600080fd5b50565b613bc28161352d565b8114613bcd57600080fd5b5056fea2646970667358221220f91593a64df81cf64d085575e9c90a63a9d5e29c7a8f1ef3fba22481fc80c6e464736f6c63430008070033000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103275760003560e01c80638612bbbc116101b8578063b1a0820b11610104578063dd62ed3e116100a2578063dd7585b11161007c578063dd7585b114610910578063f2e3b6401461092e578063f2fde38b1461094c578063f5fa8b821461096857610327565b8063dd62ed3e146108a4578063dd67eca5146108d4578063dd7538a5146108f257610327565b8063bf115e44116100de578063bf115e4414610844578063c7844c481461084e578063cf2c52cb1461087e578063d5c5617d1461089a57610327565b8063b1a0820b146107ee578063b30c084f1461080a578063bd97067e1461082857610327565b80639ce9aa0811610171578063a82224521161014b578063a822245214610766578063a9059cbb14610782578063a9b7fa41146107b2578063ae6a6cb8146107d057610327565b80639ce9aa08146106fe578063a457c2d71461071a578063a53b4a441461074a57610327565b80638612bbbc1461064c5780638b284dd61461066a5780638da5cb5b14610688578063928a1b9c146106a657806395d89b41146106c257806399fe92c5146106e057610327565b806333e4847e1161027757806362e3a4ea1161023057806369e4662e1161020a57806369e4662e146105ea57806370a08231146105f4578063715018a61461062457806385ac8e961461062e57610327565b806362e3a4ea146105a457806362f629e7146105ae578063662264c5146105cc57610327565b806333e4847e146104d257806339509351146105025780633b279f9614610532578063445a67971461055057806351526fb41461056c578063529b23151461058857610327565b80631236edec116102e457806326898da9116102be57806326898da91461045c5780632817cd851461047a5780632e1a7d4d14610498578063313ce567146104b457610327565b80631236edec146103f257806318160ddd1461040e57806323b872dd1461042c57610327565b8063022c478e1461032c57806303702f0d1461034a57806303bfe9481461036857806306fdde0314610386578063095ea7b3146103a45780630c4c2f6f146103d4575b600080fd5b610334610986565b6040516103419190613136565b60405180910390f35b610352610999565b60405161035f9190613413565b60405180910390f35b61037061099f565b60405161037d919061311b565b60405180910390f35b61038e6109c5565b60405161039b9190613151565b60405180910390f35b6103be60048036038101906103b99190612d5a565b610a57565b6040516103cb9190613136565b60405180910390f35b6103dc610a7a565b6040516103e9919061311b565b60405180910390f35b61040c60048036038101906104079190612c3a565b610a92565b005b610416610b69565b6040516104239190613413565b60405180910390f35b61044660048036038101906104419190612ca7565b610b73565b6040516104539190613136565b60405180910390f35b610464610ba2565b6040516104719190613136565b60405180910390f35b610482610bb5565b60405161048f919061311b565b60405180910390f35b6104b260048036038101906104ad9190612d9a565b610bdb565b005b6104bc610be8565b6040516104c9919061342e565b60405180910390f35b6104ec60048036038101906104e79190612c3a565b610bf1565b6040516104f99190613413565b60405180910390f35b61051c60048036038101906105179190612d5a565b610c09565b6040516105299190613136565b60405180910390f35b61053a610c40565b6040516105479190613413565b60405180910390f35b61056a60048036038101906105659190612c3a565b610c46565b005b61058660048036038101906105819190612d9a565b610d8a565b005b6105a2600480360381019061059d9190612c3a565b610e10565b005b6105ac610ed0565b005b6105b6610fc8565b6040516105c3919061311b565b60405180910390f35b6105d4610fee565b6040516105e1919061311b565b60405180910390f35b6105f2611006565b005b61060e60048036038101906106099190612c3a565b6110ae565b60405161061b9190613413565b60405180910390f35b61062c6110f6565b005b61063661117e565b6040516106439190613413565b60405180910390f35b610654611184565b604051610661919061311b565b60405180910390f35b61067261119c565b60405161067f9190613136565b60405180910390f35b6106906111af565b60405161069d919061311b565b60405180910390f35b6106c060048036038101906106bb9190612d9a565b6111d9565b005b6106ca61125f565b6040516106d79190613151565b60405180910390f35b6106e86112f1565b6040516106f59190613136565b60405180910390f35b61071860048036038101906107139190612c3a565b611304565b005b610734600480360381019061072f9190612d5a565b6113db565b6040516107419190613136565b60405180910390f35b610764600480360381019061075f9190612d9a565b611452565b005b610780600480360381019061077b9190612c3a565b6114d8565b005b61079c60048036038101906107979190612d5a565b611598565b6040516107a99190613136565b60405180910390f35b6107ba6115bb565b6040516107c7919061311b565b60405180910390f35b6107d86115d3565b6040516107e5919061311b565b60405180910390f35b61080860048036038101906108039190612c3a565b6115f9565b005b6108126116b9565b60405161081f919061311b565b60405180910390f35b610842600480360381019061083d9190612c3a565b6116d1565b005b61084c611791565b005b61086860048036038101906108639190612c3a565b611845565b6040516108759190613136565b60405180910390f35b61089860048036038101906108939190612cfa565b611865565b005b6108a2611918565b005b6108be60048036038101906108b99190612c67565b6119c0565b6040516108cb9190613413565b60405180910390f35b6108dc611a47565b6040516108e9919061311b565b60405180910390f35b6108fa611a5f565b604051610907919061311b565b60405180910390f35b610918611a85565b604051610925919061311b565b60405180910390f35b610936611a9d565b6040516109439190613413565b60405180910390f35b61096660048036038101906109619190612c3a565b611aa3565b005b610970611b9b565b60405161097d919061311b565b60405180910390f35b600a60029054906101000a900460ff1681565b60075481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546109d490613577565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613577565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b600080610a62611bb3565b9050610a6f818585611bbb565b600191505092915050565b737496e1d91f7dcad9a4889a9a023736850300fe9781565b610a9a611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610ab86111af565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613313565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b600080610b7e611bb3565b9050610b8b858285611d86565b610b96858585611e12565b60019150509392505050565b600a60009054906101000a900460ff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be53382612093565b50565b60006012905090565b600e6020528060005260406000206000915090505481565b600080610c14611bb3565b9050610c35818585610c2685896119c0565b610c309190613465565b611bbb565b600191505092915050565b60085481565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad906131b3565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613233565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d92611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610db06111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613313565b60405180910390fd5b8060088190555050565b610e18611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610e366111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613313565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ed8611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610ef66111af565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613313565b60405180910390fd5b600a60029054906101000a900460ff1615610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906132d3565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b734a8cd013879c4d48c96eaa50de9af2969e29758681565b61100e611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661102c6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613313565b60405180910390fd5b600a60179054906101000a900460ff1615600a60176101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fe611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661111c6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990613313565b60405180910390fd5b61117c600061226a565b565b60065481565b7373b4eff6af5c7ea220403b009fff0c0da2d19c6781565b600a60179054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e1611bb3565b73ffffffffffffffffffffffffffffffffffffffff166111ff6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613313565b60405180910390fd5b8060098190555050565b60606004805461126e90613577565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90613577565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b61130c611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661132a6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790613313565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806113e6611bb3565b905060006113f482866119c0565b905083811015611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906133d3565b60405180910390fd5b6114468286868403611bbb565b60019250505092915050565b61145a611bb3565b73ffffffffffffffffffffffffffffffffffffffff166114786111af565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613313565b60405180910390fd5b8060078190555050565b6114e0611bb3565b73ffffffffffffffffffffffffffffffffffffffff166114fe6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613313565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806115a3611bb3565b90506115b0818585611e12565b600191505092915050565b7365b903979cd209233a481b29cdd1f030612de60581565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611601611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661161f6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613313565b60405180910390fd5b80600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7344e13ed3aae3bbb4f3cde8acaaf4d25036cc270a81565b6116d9611bb3565b73ffffffffffffffffffffffffffffffffffffffff166116f76111af565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490613313565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611799611bb3565b73ffffffffffffffffffffffffffffffffffffffff166117b76111af565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613313565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906131d3565b60405180910390fd5b600082828101906119069190612d9a565b90506119128482612330565b50505050565b611920611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661193e6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613313565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b73c5522c9f6f3c9cd87bf74ede5424dcf3a4b8b29d81565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7388e50b87f39e5abb4ef94ec3794314f74f31c63a81565b60095481565b611aab611bb3565b73ffffffffffffffffffffffffffffffffffffffff16611ac96111af565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613313565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906131f3565b60405180910390fd5b611b988161226a565b50565b73abe19e6fd481c424b00d3a8af70c77d7ae55e70d81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613393565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613213565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d799190613413565b60405180910390a3505050565b6000611d9284846119c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e0c5781811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613273565b60405180910390fd5b611e0b8484848403611bbb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613373565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613173565b60405180910390fd5b611efd838383612490565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613293565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120169190613465565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161207a9190613413565b60405180910390a361208d848484612bb0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90613353565b60405180910390fd5b61210f82600083612490565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613193565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121ec91906134bb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122519190613413565b60405180910390a361226583600084612bb0565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906133f3565b60405180910390fd5b6123ac60008383612490565b80600260008282546123be9190613465565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124139190613465565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124789190613413565b60405180910390a361248c60008383612bb0565b5050565b600a60009054906101000a900460ff1615612ba057600a60029054906101000a900460ff161580156124f557506124c56111af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15612b9f57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561259e5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d4906132b3565b60405180910390fd5b600a60179054906101000a900460ff161561272c57600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461272b57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126f35750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561272a576040517fa5baf15100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6007543a1115612771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612768906132f3565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129895760085481111561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390613253565b60405180910390fd5b600654600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061288f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612886906133b3565b60405180910390fd5b600a60019054906101000a900460ff1661292d576001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040517ff387f38d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297d9190613465565b92505081905550612b9e565b8173ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9d57600954811115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613333565b60405180910390fd5b600654600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9e906133b3565b60405180910390fd5b600a60019054906101000a900460ff16612b45576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040517ff387f38d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b959190613465565b925050819055505b5b5b5b612bab838383612bb5565b505050565b505050565b505050565b600081359050612bc981613ba2565b92915050565b60008083601f840112612be557612be461360c565b5b8235905067ffffffffffffffff811115612c0257612c01613607565b5b602083019150836001820283011115612c1e57612c1d613611565b5b9250929050565b600081359050612c3481613bb9565b92915050565b600060208284031215612c5057612c4f61361b565b5b6000612c5e84828501612bba565b91505092915050565b60008060408385031215612c7e57612c7d61361b565b5b6000612c8c85828601612bba565b9250506020612c9d85828601612bba565b9150509250929050565b600080600060608486031215612cc057612cbf61361b565b5b6000612cce86828701612bba565b9350506020612cdf86828701612bba565b9250506040612cf086828701612c25565b9150509250925092565b600080600060408486031215612d1357612d1261361b565b5b6000612d2186828701612bba565b935050602084013567ffffffffffffffff811115612d4257612d41613616565b5b612d4e86828701612bcf565b92509250509250925092565b60008060408385031215612d7157612d7061361b565b5b6000612d7f85828601612bba565b9250506020612d9085828601612c25565b9150509250929050565b600060208284031215612db057612daf61361b565b5b6000612dbe84828501612c25565b91505092915050565b612dd0816134ef565b82525050565b612ddf81613501565b82525050565b6000612df082613449565b612dfa8185613454565b9350612e0a818560208601613544565b612e1381613620565b840191505092915050565b6000612e2b602383613454565b9150612e3682613631565b604082019050919050565b6000612e4e602283613454565b9150612e5982613680565b604082019050919050565b6000612e71602283613454565b9150612e7c826136cf565b604082019050919050565b6000612e94601d83613454565b9150612e9f8261371e565b602082019050919050565b6000612eb7602683613454565b9150612ec282613747565b604082019050919050565b6000612eda602283613454565b9150612ee582613796565b604082019050919050565b6000612efd601283613454565b9150612f08826137e5565b602082019050919050565b6000612f20601d83613454565b9150612f2b8261380e565b602082019050919050565b6000612f43601d83613454565b9150612f4e82613837565b602082019050919050565b6000612f66602683613454565b9150612f7182613860565b604082019050919050565b6000612f89601a83613454565b9150612f94826138af565b602082019050919050565b6000612fac604183613454565b9150612fb7826138d8565b606082019050919050565b6000612fcf602583613454565b9150612fda8261394d565b604082019050919050565b6000612ff2602083613454565b9150612ffd8261399c565b602082019050919050565b6000613015601683613454565b9150613020826139c5565b602082019050919050565b6000613038602183613454565b9150613043826139ee565b604082019050919050565b600061305b602583613454565b915061306682613a3d565b604082019050919050565b600061307e602483613454565b915061308982613a8c565b604082019050919050565b60006130a1602b83613454565b91506130ac82613adb565b604082019050919050565b60006130c4602583613454565b91506130cf82613b2a565b604082019050919050565b60006130e7601f83613454565b91506130f282613b79565b602082019050919050565b6131068161352d565b82525050565b61311581613537565b82525050565b60006020820190506131306000830184612dc7565b92915050565b600060208201905061314b6000830184612dd6565b92915050565b6000602082019050818103600083015261316b8184612de5565b905092915050565b6000602082019050818103600083015261318c81612e1e565b9050919050565b600060208201905081810360008301526131ac81612e41565b9050919050565b600060208201905081810360008301526131cc81612e64565b9050919050565b600060208201905081810360008301526131ec81612e87565b9050919050565b6000602082019050818103600083015261320c81612eaa565b9050919050565b6000602082019050818103600083015261322c81612ecd565b9050919050565b6000602082019050818103600083015261324c81612ef0565b9050919050565b6000602082019050818103600083015261326c81612f13565b9050919050565b6000602082019050818103600083015261328c81612f36565b9050919050565b600060208201905081810360008301526132ac81612f59565b9050919050565b600060208201905081810360008301526132cc81612f7c565b9050919050565b600060208201905081810360008301526132ec81612f9f565b9050919050565b6000602082019050818103600083015261330c81612fc2565b9050919050565b6000602082019050818103600083015261332c81612fe5565b9050919050565b6000602082019050818103600083015261334c81613008565b9050919050565b6000602082019050818103600083015261336c8161302b565b9050919050565b6000602082019050818103600083015261338c8161304e565b9050919050565b600060208201905081810360008301526133ac81613071565b9050919050565b600060208201905081810360008301526133cc81613094565b9050919050565b600060208201905081810360008301526133ec816130b7565b9050919050565b6000602082019050818103600083015261340c816130da565b9050919050565b600060208201905061342860008301846130fd565b92915050565b6000602082019050613443600083018461310c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006134708261352d565b915061347b8361352d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af6135a9565b5b828201905092915050565b60006134c68261352d565b91506134d18361352d565b9250828210156134e4576134e36135a9565b5b828203905092915050565b60006134fa8261350d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613562578082015181840152602081019050613547565b83811115613571576000848401525b50505050565b6000600282049050600182168061358f57607f821691505b602082108114156135a3576135a26135d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f426164204368696c64436861696e4d616e6167657250726f787920616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f7765640000000000000000000000000000600082015250565b7f42503a20427579206578636565647320616c6c6f776564206c696d6974000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f42503a204163636f756e7420697320626c61636b6c6973746564000000000000600082015250565b7f43616e6e6f7420746f67676c65207768656e20626f742070726f74656374696f60008201527f6e20697320616c72656164792064697361626c6564207065726d616e656e746c60208201527f7900000000000000000000000000000000000000000000000000000000000000604082015250565b7f42503a204761732073657474696e67206578636565647320616c6c6f7765642060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f42503a2053656c6c2065786365656473206c696d697400000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f42503a204578636565646564206e756d626572206f6620616c6c6f776564207460008201527f72616e73616374696f6e73000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613bab816134ef565b8114613bb657600080fd5b50565b613bc28161352d565b8114613bcd57600080fd5b5056fea2646970667358221220f91593a64df81cf64d085575e9c90a63a9d5e29c7a8f1ef3fba22481fc80c6e464736f6c63430008070033

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

000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa

-----Decoded View---------------
Arg [0] : _childChainManagerProxy (address): 0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa

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


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.