ETH Price: $2,418.10 (-1.23%)

Token

Trans Pepe (TRANSPEPE)
 

Overview

Max Total Supply

1,000,000,000 TRANSPEPE

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,394,241.823768985025188054 TRANSPEPE

Value
$0.00
0x7821a54588516ef87def938c3bd6826f4e9d6170
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TransPepe

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Trans Pepe.sol
/*⠀⠀⠀⠀⠀

   Trans Pepe leverages the power of meme to a greater cause.

   Supporting transgender rights: Embrace diversity, promote inclusivity, and respect individual identities.
   Together, we stand with the Pepe Trans community, fostering acceptance and equality for all.

   Website: https://transpepe.com/
   Telegram: https://t.me/TransPepeETH
   Twitter: https://twitter.com/TransPepeETH

*/
pragma solidity 0.8.17;
 
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
 
interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}
 
contract TransPepe is ERC20, Ownable{
 
    IRouter public router;
    address public pair;
 
    bool private swapping;
    bool public swapEnabled;
    bool public initialized;
 
    mapping (address => bool) public noFees;
    mapping (address => bool) public isBot;
 
    uint256 public swapThreshold = 10000 * 10**18;
    uint256 public maxTxAmount = 20000000 * 10**18;
 
    address public marketingWallet = 0xaE9c353044f235Fcf239425132f619a25C4b3639;
    address public devWallet = 0xaE9c353044f235Fcf239425132f619a25C4b3639;
 
    struct Taxes {
        uint128 marketing;
        uint128 dev;
    }
 
    Taxes public taxes = Taxes(1,2);
 
    modifier inSwap() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }
 
    constructor() ERC20("Trans Pepe", "TRANSPEPE") {
        _mint(msg.sender, 1e9 * 10 ** 18);
        noFees[msg.sender] = true;
 
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory())
            .createPair(address(this), _router.WETH());
 
        router = _router;
        pair = _pair;
 
        noFees[address(this)] = true;
        noFees[marketingWallet] = true;
        noFees[devWallet] = true;
    }
 
    function init(address _pair) external onlyOwner{
        require(!initialized,"Already initialized");
        pair = _pair;
 
        swapEnabled = true;
        initialized = true;
    }
 
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
 
        if(!noFees[sender] && !noFees[recipient] && !swapping){
            require(initialized, "Not initialized");
            require(!isBot[sender] && !isBot[recipient], "Bye Bye Bot");
            if(recipient == pair) require(amount <= maxTxAmount, "Exceeding maxTxAmount");
        }
 
        uint256 fee;
 
        if (swapping || noFees[sender] || noFees[recipient] || (sender != pair && recipient != pair)) fee = 0;
 
        else fee = amount * (taxes.dev + taxes.marketing) / 100;
 
        if (swapEnabled && !swapping && sender != pair && fee > 0) translateFees();
 
        super._transfer(sender, recipient, amount - fee);
        if(fee > 0) super._transfer(sender, address(this) ,fee);
 
    }
 
    function translateFees() private inSwap {
        if (balanceOf(address(this)) >= swapThreshold) {
 
            swapTokensForETH(swapThreshold);
 
            uint256 totalBalance = address(this).balance;
            uint256 totalTax = taxes.marketing + taxes.dev;
 
            uint256 marketingAmt = totalBalance * taxes.marketing / totalTax;
            if(marketingAmt > 0){
                (bool success, ) = payable(marketingWallet).call{value: marketingAmt}("");
                require(success, "Error sending eth");
            }
 
            uint256 devAmt = totalBalance * taxes.dev / totalTax;
            if(devAmt > 0){
                (bool success, ) = payable(devWallet).call{value: devAmt}("");
                require(success, "Error sending eth");
            }
        }
    }
 
    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
 
        _approve(address(this), address(router), tokenAmount);
 
        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
 
    }
 
    function setSwapEnabled(bool state) external onlyOwner {
        swapEnabled = state;
    }
 
    function setSwapThreshold(uint256 new_amount) external onlyOwner {
        swapThreshold = new_amount * 10**18;
    }
 
    function setMaxTxAmount(uint256 amount) external onlyOwner{
         maxTxAmount = amount;
}
 
    function setTaxes(uint128 _dev, uint128 _marketing) external onlyOwner{
        taxes = Taxes(_marketing, _dev);
    }
 
    function updateMarketingWallet(address newWallet) external onlyOwner{
        marketingWallet = newWallet;
    }
 
    function removeLimits() external onlyOwner{
        maxTxAmount = totalSupply();
    }
 
    function updateDevWallet(address newWallet) external onlyOwner{
        devWallet = newWallet;
    }
 
    function updatePair(address _pair) external onlyOwner{
        pair = _pair;
    }
 
    function updateNoFees(address _address, bool state) external onlyOwner {
        noFees[_address] = state;
    }
 
    function setBot(address[] calldata bots, bool status) external onlyOwner{
        uint256 size = bots.length;
        for(uint256 i; i < size;){
            isBot[bots[i]] = status;
            unchecked{ ++i; }
        }
    }
 
    function rescueTokens(address tokenAddress, uint256 amount) external onlyOwner{
        IERC20(tokenAddress).transfer(owner(), amount);
    }
 
    function rescueETH(uint256 weiAmount) external onlyOwner{
        (bool success, ) = payable(owner()).call{value: weiAmount}("");
        require(success, "Error sending eth");
    }
 
    // fallbacks
    receive() external payable {}
 
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_dev","type":"uint128"},{"internalType":"uint128","name":"_marketing","type":"uint128"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint128","name":"marketing","type":"uint128"},{"internalType":"uint128","name":"dev","type":"uint128"}],"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":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateNoFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269021e19e0c9bab2400000600a556a108b2a2c28029094000000600b5573ae9c353044f235fcf239425132f619a25c4b3639600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ae9c353044f235fcf239425132f619a25c4b3639600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806040016040528060016fffffffffffffffffffffffffffffffff16815260200160026fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050503480156200019557600080fd5b506040518060400160405280600a81526020017f5472616e732050657065000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f5452414e53504550450000000000000000000000000000000000000000000000815250816003908162000213919062000ad5565b50806004908162000225919062000ad5565b505050620002486200023c6200061660201b60201c565b6200061e60201b60201c565b62000266336b033b2e3c9fd0803ce8000000620006e460201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034b919062000c26565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d9919062000c26565b6040518363ffffffff1660e01b8152600401620003f892919062000c69565b6020604051808303816000875af115801562000418573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043e919062000c26565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000db1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000756576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074d9062000cf7565b60405180910390fd5b6200076a600083836200085160201b60201c565b80600260008282546200077e919062000d48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000831919062000d94565b60405180910390a36200084d600083836200085660201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008dd57607f821691505b602082108103620008f357620008f262000895565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200095d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200091e565b6200096986836200091e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009b6620009b0620009aa8462000981565b6200098b565b62000981565b9050919050565b6000819050919050565b620009d28362000995565b620009ea620009e182620009bd565b8484546200092b565b825550505050565b600090565b62000a01620009f2565b62000a0e818484620009c7565b505050565b5b8181101562000a365762000a2a600082620009f7565b60018101905062000a14565b5050565b601f82111562000a855762000a4f81620008f9565b62000a5a846200090e565b8101602085101562000a6a578190505b62000a8262000a79856200090e565b83018262000a13565b50505b505050565b600082821c905092915050565b600062000aaa6000198460080262000a8a565b1980831691505092915050565b600062000ac5838362000a97565b9150826002028217905092915050565b62000ae0826200085b565b67ffffffffffffffff81111562000afc5762000afb62000866565b5b62000b088254620008c4565b62000b1582828562000a3a565b600060209050601f83116001811462000b4d576000841562000b38578287015190505b62000b44858262000ab7565b86555062000bb4565b601f19841662000b5d86620008f9565b60005b8281101562000b875784890151825560018201915060208501945060208101905062000b60565b8683101562000ba7578489015162000ba3601f89168262000a97565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bee8262000bc1565b9050919050565b62000c008162000be1565b811462000c0c57600080fd5b50565b60008151905062000c208162000bf5565b92915050565b60006020828403121562000c3f5762000c3e62000bbc565b5b600062000c4f8482850162000c0f565b91505092915050565b62000c638162000be1565b82525050565b600060408201905062000c80600083018562000c58565b62000c8f602083018462000c58565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cdf601f8362000c96565b915062000cec8262000ca7565b602082019050919050565b6000602082019050818103600083015262000d128162000cd0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d558262000981565b915062000d628362000981565b925082820190508082111562000d7d5762000d7c62000d19565b5b92915050565b62000d8e8162000981565b82525050565b600060208201905062000dab600083018462000d83565b92915050565b6136b78062000dc16000396000f3fe6080604052600436106102295760003560e01c8063728f8eea11610123578063a457c2d7116100ab578063e01af92c1161006f578063e01af92c14610829578063ec28438a14610852578063f2fde38b1461087b578063f887ea40146108a4578063fe073891146108cf57610230565b8063a457c2d71461071e578063a8aa1b311461075b578063a9059cbb14610786578063aacebbe3146107c3578063dd62ed3e146107ec57610230565b80638da5cb5b116100f25780638da5cb5b1461064b5780638ea5220f1461067657806395d89b41146106a15780639d0014b1146106cc5780639e252f00146106f557610230565b8063728f8eea146105b2578063751039fc146105de57806375f0a874146105f55780638c0b5e221461062057610230565b80631b56bbf9116101b15780633bbac579116101755780633bbac579146104cd578063573761981461050a5780636ddd17131461053357806370a082311461055e578063715018a61461059b57610230565b80631b56bbf9146103d657806323b872dd146103ff578063313ce5671461043c578063395093511461046757806339efcf9e146104a457610230565b8063158ef93e116101f8578063158ef93e146102f1578063174351e61461031c57806318160ddd146103595780631816467f1461038457806319ab453c146103ad57610230565b80630445b6671461023557806304fb2ebe1461026057806306fdde0314610289578063095ea7b3146102b457610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b60405161025791906124bf565b60405180910390f35b34801561026c57600080fd5b506102876004803603810190610282919061252c565b6108fe565b005b34801561029557600080fd5b5061029e6109c6565b6040516102ab91906125fc565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906126a8565b610a58565b6040516102e89190612703565b60405180910390f35b3480156102fd57600080fd5b50610306610a7b565b6040516103139190612703565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061271e565b610a8e565b6040516103509190612703565b60405180910390f35b34801561036557600080fd5b5061036e610aae565b60405161037b91906124bf565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a6919061271e565b610ab8565b005b3480156103b957600080fd5b506103d460048036038101906103cf919061271e565b610b04565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061271e565b610bd6565b005b34801561040b57600080fd5b506104266004803603810190610421919061274b565b610c22565b6040516104339190612703565b60405180910390f35b34801561044857600080fd5b50610451610c51565b60405161045e91906127ba565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906126a8565b610c5a565b60405161049b9190612703565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612866565b610c91565b005b3480156104d957600080fd5b506104f460048036038101906104ef919061271e565b610d3c565b6040516105019190612703565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906126a8565b610d5c565b005b34801561053f57600080fd5b50610548610dee565b6040516105559190612703565b60405180910390f35b34801561056a57600080fd5b506105856004803603810190610580919061271e565b610e01565b60405161059291906124bf565b60405180910390f35b3480156105a757600080fd5b506105b0610e49565b005b3480156105be57600080fd5b506105c7610e5d565b6040516105d59291906128d5565b60405180910390f35b3480156105ea57600080fd5b506105f3610ea7565b005b34801561060157600080fd5b5061060a610ebf565b604051610617919061290d565b60405180910390f35b34801561062c57600080fd5b50610635610ee5565b60405161064291906124bf565b60405180910390f35b34801561065757600080fd5b50610660610eeb565b60405161066d919061290d565b60405180910390f35b34801561068257600080fd5b5061068b610f15565b604051610698919061290d565b60405180910390f35b3480156106ad57600080fd5b506106b6610f3b565b6040516106c391906125fc565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612928565b610fcd565b005b34801561070157600080fd5b5061071c60048036038101906107179190612928565b610ff2565b005b34801561072a57600080fd5b50610745600480360381019061074091906126a8565b6110b1565b6040516107529190612703565b60405180910390f35b34801561076757600080fd5b50610770611128565b60405161077d919061290d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906126a8565b61114e565b6040516107ba9190612703565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061271e565b611171565b005b3480156107f857600080fd5b50610813600480360381019061080e9190612955565b6111bd565b60405161082091906124bf565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612995565b611244565b005b34801561085e57600080fd5b5061087960048036038101906108749190612928565b611269565b005b34801561088757600080fd5b506108a2600480360381019061089d919061271e565b61127b565b005b3480156108b057600080fd5b506108b96112fe565b6040516108c69190612a21565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612a3c565b611324565b005b600a5481565b610906611387565b6040518060400160405280826fffffffffffffffffffffffffffffffff168152602001836fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055509050505050565b6060600380546109d590612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190612aab565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b600080610a63611405565b9050610a7081858561140d565b600191505092915050565b600760169054906101000a900460ff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610ac0611387565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b0c611387565b600760169054906101000a900460ff1615610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390612b28565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff02191690831515021790555050565b610bde611387565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c2d611405565b9050610c3a8582856115d6565b610c45858585611662565b60019150509392505050565b60006012905090565b600080610c65611405565b9050610c86818585610c7785896111bd565b610c819190612b77565b61140d565b600191505092915050565b610c99611387565b600083839050905060005b81811015610d35578260096000878785818110610cc457610cc3612bab565b5b9050602002016020810190610cd9919061271e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610ca4565b5050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d64611387565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d88610eeb565b836040518363ffffffff1660e01b8152600401610da6929190612bda565b6020604051808303816000875af1158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190612c18565b505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e51611387565b610e5b6000611bf8565b565b600e8060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16905082565b610eaf611387565b610eb7610aae565b600b81905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f4a90612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612aab565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b610fd5611387565b670de0b6b3a764000081610fe99190612c45565b600a8190555050565b610ffa611387565b6000611004610eeb565b73ffffffffffffffffffffffffffffffffffffffff168260405161102790612cb8565b60006040518083038185875af1925050503d8060008114611064576040519150601f19603f3d011682016040523d82523d6000602084013e611069565b606091505b50509050806110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612d19565b60405180910390fd5b5050565b6000806110bc611405565b905060006110ca82866111bd565b90508381101561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612dab565b60405180910390fd5b61111c828686840361140d565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611159611405565b9050611166818585611662565b600191505092915050565b611179611387565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61124c611387565b80600760156101000a81548160ff02191690831515021790555050565b611271611387565b80600b8190555050565b611283611387565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990612e3d565b60405180910390fd5b6112fb81611bf8565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132c611387565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61138f611405565b73ffffffffffffffffffffffffffffffffffffffff166113ad610eeb565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90612ea9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612fcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c991906124bf565b60405180910390a3505050565b60006115e284846111bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461165c578181101561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613039565b60405180910390fd5b61165b848484840361140d565b5b50505050565b600081116116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c906130cb565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117495750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117625750600760149054906101000a900460ff16155b1561193557600760169054906101000a900460ff166117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613137565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561185a5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906131a3565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193457600b54811115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9061320f565b60405180910390fd5b5b5b6000600760149054906101000a900460ff168061199b5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119ef5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611aa25750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611aa15750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611ab05760009050611b2a565b6064600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16611b00919061322f565b6fffffffffffffffffffffffffffffffff1683611b1d9190612c45565b611b2791906132a2565b90505b600760159054906101000a900460ff168015611b535750600760149054906101000a900460ff16155b8015611bad5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611bb95750600081115b15611bc757611bc6611cbe565b5b611bdd84848385611bd891906132d3565b611fe3565b6000811115611bf257611bf1843083611fe3565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611fe1576001600760146101000a81548160ff021916908315150217905550600a54611cf930610e01565b10611fc557611d09600a54612259565b60004790506000600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16611d5e919061322f565b6fffffffffffffffffffffffffffffffff169050600081600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1684611db49190612c45565b611dbe91906132a2565b90506000811115611e99576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e1190612cb8565b60006040518083038185875af1925050503d8060008114611e4e576040519150601f19603f3d011682016040523d82523d6000602084013e611e53565b606091505b5050905080611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90612d19565b60405180910390fd5b505b600082600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685611edb9190612c45565b611ee591906132a2565b90506000811115611fc0576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611f3890612cb8565b60006040518083038185875af1925050503d8060008114611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b5050905080611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590612d19565b60405180910390fd5b505b505050505b6000600760146101000a81548160ff0219169083151502179055505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990613379565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061340b565b60405180910390fd5b6120cc83838361249c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061349d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161224091906124bf565b60405180910390a36122538484846124a1565b50505050565b6000600267ffffffffffffffff811115612276576122756134bd565b5b6040519080825280602002602001820160405280156122a45781602001602082028036833780820191505090505b50905030816000815181106122bc576122bb612bab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612363573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123879190613501565b8160018151811061239b5761239a612bab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061240230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461140d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612466959493929190613627565b600060405180830381600087803b15801561248057600080fd5b505af1158015612494573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000819050919050565b6124b9816124a6565b82525050565b60006020820190506124d460008301846124b0565b92915050565b600080fd5b600080fd5b60006fffffffffffffffffffffffffffffffff82169050919050565b612509816124e4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b60008060408385031215612543576125426124da565b5b600061255185828601612517565b925050602061256285828601612517565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b60008484015250505050565b6000601f19601f8301169050919050565b60006125ce8261256c565b6125d88185612577565b93506125e8818560208601612588565b6125f1816125b2565b840191505092915050565b6000602082019050818103600083015261261681846125c3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126498261261e565b9050919050565b6126598161263e565b811461266457600080fd5b50565b60008135905061267681612650565b92915050565b612685816124a6565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b600080604083850312156126bf576126be6124da565b5b60006126cd85828601612667565b92505060206126de85828601612693565b9150509250929050565b60008115159050919050565b6126fd816126e8565b82525050565b600060208201905061271860008301846126f4565b92915050565b600060208284031215612734576127336124da565b5b600061274284828501612667565b91505092915050565b600080600060608486031215612764576127636124da565b5b600061277286828701612667565b935050602061278386828701612667565b925050604061279486828701612693565b9150509250925092565b600060ff82169050919050565b6127b48161279e565b82525050565b60006020820190506127cf60008301846127ab565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127fa576127f96127d5565b5b8235905067ffffffffffffffff811115612817576128166127da565b5b602083019150836020820283011115612833576128326127df565b5b9250929050565b612843816126e8565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b60008060006040848603121561287f5761287e6124da565b5b600084013567ffffffffffffffff81111561289d5761289c6124df565b5b6128a9868287016127e4565b935093505060206128bc86828701612851565b9150509250925092565b6128cf816124e4565b82525050565b60006040820190506128ea60008301856128c6565b6128f760208301846128c6565b9392505050565b6129078161263e565b82525050565b600060208201905061292260008301846128fe565b92915050565b60006020828403121561293e5761293d6124da565b5b600061294c84828501612693565b91505092915050565b6000806040838503121561296c5761296b6124da565b5b600061297a85828601612667565b925050602061298b85828601612667565b9150509250929050565b6000602082840312156129ab576129aa6124da565b5b60006129b984828501612851565b91505092915050565b6000819050919050565b60006129e76129e26129dd8461261e565b6129c2565b61261e565b9050919050565b60006129f9826129cc565b9050919050565b6000612a0b826129ee565b9050919050565b612a1b81612a00565b82525050565b6000602082019050612a366000830184612a12565b92915050565b60008060408385031215612a5357612a526124da565b5b6000612a6185828601612667565b9250506020612a7285828601612851565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac357607f821691505b602082108103612ad657612ad5612a7c565b5b50919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b6000612b12601383612577565b9150612b1d82612adc565b602082019050919050565b60006020820190508181036000830152612b4181612b05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b82826124a6565b9150612b8d836124a6565b9250828201905080821115612ba557612ba4612b48565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612bef60008301856128fe565b612bfc60208301846124b0565b9392505050565b600081519050612c128161283a565b92915050565b600060208284031215612c2e57612c2d6124da565b5b6000612c3c84828501612c03565b91505092915050565b6000612c50826124a6565b9150612c5b836124a6565b9250828202612c69816124a6565b91508282048414831517612c8057612c7f612b48565b5b5092915050565b600081905092915050565b50565b6000612ca2600083612c87565b9150612cad82612c92565b600082019050919050565b6000612cc382612c95565b9150819050919050565b7f4572726f722073656e64696e6720657468000000000000000000000000000000600082015250565b6000612d03601183612577565b9150612d0e82612ccd565b602082019050919050565b60006020820190508181036000830152612d3281612cf6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d95602583612577565b9150612da082612d39565b604082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e27602683612577565b9150612e3282612dcb565b604082019050919050565b60006020820190508181036000830152612e5681612e1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e93602083612577565b9150612e9e82612e5d565b602082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f25602483612577565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb7602283612577565b9150612fc282612f5b565b604082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613023601d83612577565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006130b5602983612577565b91506130c082613059565b604082019050919050565b600060208201905081810360008301526130e4816130a8565b9050919050565b7f4e6f7420696e697469616c697a65640000000000000000000000000000000000600082015250565b6000613121600f83612577565b915061312c826130eb565b602082019050919050565b6000602082019050818103600083015261315081613114565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b600061318d600b83612577565b915061319882613157565b602082019050919050565b600060208201905081810360008301526131bc81613180565b9050919050565b7f457863656564696e67206d61785478416d6f756e740000000000000000000000600082015250565b60006131f9601583612577565b9150613204826131c3565b602082019050919050565b60006020820190508181036000830152613228816131ec565b9050919050565b600061323a826124e4565b9150613245836124e4565b925082820190506fffffffffffffffffffffffffffffffff81111561326d5761326c612b48565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ad826124a6565b91506132b8836124a6565b9250826132c8576132c7613273565b5b828204905092915050565b60006132de826124a6565b91506132e9836124a6565b925082820390508181111561330157613300612b48565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613363602583612577565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133f5602383612577565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613487602683612577565b91506134928261342b565b604082019050919050565b600060208201905081810360008301526134b68161347a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506134fb81612650565b92915050565b600060208284031215613517576135166124da565b5b6000613525848285016134ec565b91505092915050565b6000819050919050565b600061355361354e6135498461352e565b6129c2565b6124a6565b9050919050565b61356381613538565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61359e8161263e565b82525050565b60006135b08383613595565b60208301905092915050565b6000602082019050919050565b60006135d482613569565b6135de8185613574565b93506135e983613585565b8060005b8381101561361a57815161360188826135a4565b975061360c836135bc565b9250506001810190506135ed565b5085935050505092915050565b600060a08201905061363c60008301886124b0565b613649602083018761355a565b818103604083015261365b81866135c9565b905061366a60608301856128fe565b61367760808301846124b0565b969550505050505056fea2646970667358221220d1f031b5174d14c17496e94184359fc66f8fe41ac213491d69e485c357e762b264736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063728f8eea11610123578063a457c2d7116100ab578063e01af92c1161006f578063e01af92c14610829578063ec28438a14610852578063f2fde38b1461087b578063f887ea40146108a4578063fe073891146108cf57610230565b8063a457c2d71461071e578063a8aa1b311461075b578063a9059cbb14610786578063aacebbe3146107c3578063dd62ed3e146107ec57610230565b80638da5cb5b116100f25780638da5cb5b1461064b5780638ea5220f1461067657806395d89b41146106a15780639d0014b1146106cc5780639e252f00146106f557610230565b8063728f8eea146105b2578063751039fc146105de57806375f0a874146105f55780638c0b5e221461062057610230565b80631b56bbf9116101b15780633bbac579116101755780633bbac579146104cd578063573761981461050a5780636ddd17131461053357806370a082311461055e578063715018a61461059b57610230565b80631b56bbf9146103d657806323b872dd146103ff578063313ce5671461043c578063395093511461046757806339efcf9e146104a457610230565b8063158ef93e116101f8578063158ef93e146102f1578063174351e61461031c57806318160ddd146103595780631816467f1461038457806319ab453c146103ad57610230565b80630445b6671461023557806304fb2ebe1461026057806306fdde0314610289578063095ea7b3146102b457610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b60405161025791906124bf565b60405180910390f35b34801561026c57600080fd5b506102876004803603810190610282919061252c565b6108fe565b005b34801561029557600080fd5b5061029e6109c6565b6040516102ab91906125fc565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906126a8565b610a58565b6040516102e89190612703565b60405180910390f35b3480156102fd57600080fd5b50610306610a7b565b6040516103139190612703565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061271e565b610a8e565b6040516103509190612703565b60405180910390f35b34801561036557600080fd5b5061036e610aae565b60405161037b91906124bf565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a6919061271e565b610ab8565b005b3480156103b957600080fd5b506103d460048036038101906103cf919061271e565b610b04565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061271e565b610bd6565b005b34801561040b57600080fd5b506104266004803603810190610421919061274b565b610c22565b6040516104339190612703565b60405180910390f35b34801561044857600080fd5b50610451610c51565b60405161045e91906127ba565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906126a8565b610c5a565b60405161049b9190612703565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612866565b610c91565b005b3480156104d957600080fd5b506104f460048036038101906104ef919061271e565b610d3c565b6040516105019190612703565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906126a8565b610d5c565b005b34801561053f57600080fd5b50610548610dee565b6040516105559190612703565b60405180910390f35b34801561056a57600080fd5b506105856004803603810190610580919061271e565b610e01565b60405161059291906124bf565b60405180910390f35b3480156105a757600080fd5b506105b0610e49565b005b3480156105be57600080fd5b506105c7610e5d565b6040516105d59291906128d5565b60405180910390f35b3480156105ea57600080fd5b506105f3610ea7565b005b34801561060157600080fd5b5061060a610ebf565b604051610617919061290d565b60405180910390f35b34801561062c57600080fd5b50610635610ee5565b60405161064291906124bf565b60405180910390f35b34801561065757600080fd5b50610660610eeb565b60405161066d919061290d565b60405180910390f35b34801561068257600080fd5b5061068b610f15565b604051610698919061290d565b60405180910390f35b3480156106ad57600080fd5b506106b6610f3b565b6040516106c391906125fc565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612928565b610fcd565b005b34801561070157600080fd5b5061071c60048036038101906107179190612928565b610ff2565b005b34801561072a57600080fd5b50610745600480360381019061074091906126a8565b6110b1565b6040516107529190612703565b60405180910390f35b34801561076757600080fd5b50610770611128565b60405161077d919061290d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906126a8565b61114e565b6040516107ba9190612703565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061271e565b611171565b005b3480156107f857600080fd5b50610813600480360381019061080e9190612955565b6111bd565b60405161082091906124bf565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612995565b611244565b005b34801561085e57600080fd5b5061087960048036038101906108749190612928565b611269565b005b34801561088757600080fd5b506108a2600480360381019061089d919061271e565b61127b565b005b3480156108b057600080fd5b506108b96112fe565b6040516108c69190612a21565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612a3c565b611324565b005b600a5481565b610906611387565b6040518060400160405280826fffffffffffffffffffffffffffffffff168152602001836fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055509050505050565b6060600380546109d590612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190612aab565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b600080610a63611405565b9050610a7081858561140d565b600191505092915050565b600760169054906101000a900460ff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610ac0611387565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b0c611387565b600760169054906101000a900460ff1615610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390612b28565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff02191690831515021790555050565b610bde611387565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c2d611405565b9050610c3a8582856115d6565b610c45858585611662565b60019150509392505050565b60006012905090565b600080610c65611405565b9050610c86818585610c7785896111bd565b610c819190612b77565b61140d565b600191505092915050565b610c99611387565b600083839050905060005b81811015610d35578260096000878785818110610cc457610cc3612bab565b5b9050602002016020810190610cd9919061271e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610ca4565b5050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d64611387565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d88610eeb565b836040518363ffffffff1660e01b8152600401610da6929190612bda565b6020604051808303816000875af1158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190612c18565b505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e51611387565b610e5b6000611bf8565b565b600e8060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16905082565b610eaf611387565b610eb7610aae565b600b81905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f4a90612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612aab565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b610fd5611387565b670de0b6b3a764000081610fe99190612c45565b600a8190555050565b610ffa611387565b6000611004610eeb565b73ffffffffffffffffffffffffffffffffffffffff168260405161102790612cb8565b60006040518083038185875af1925050503d8060008114611064576040519150601f19603f3d011682016040523d82523d6000602084013e611069565b606091505b50509050806110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612d19565b60405180910390fd5b5050565b6000806110bc611405565b905060006110ca82866111bd565b90508381101561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612dab565b60405180910390fd5b61111c828686840361140d565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611159611405565b9050611166818585611662565b600191505092915050565b611179611387565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61124c611387565b80600760156101000a81548160ff02191690831515021790555050565b611271611387565b80600b8190555050565b611283611387565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990612e3d565b60405180910390fd5b6112fb81611bf8565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132c611387565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61138f611405565b73ffffffffffffffffffffffffffffffffffffffff166113ad610eeb565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90612ea9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612fcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c991906124bf565b60405180910390a3505050565b60006115e284846111bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461165c578181101561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613039565b60405180910390fd5b61165b848484840361140d565b5b50505050565b600081116116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c906130cb565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117495750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117625750600760149054906101000a900460ff16155b1561193557600760169054906101000a900460ff166117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613137565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561185a5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906131a3565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193457600b54811115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9061320f565b60405180910390fd5b5b5b6000600760149054906101000a900460ff168061199b5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119ef5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611aa25750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611aa15750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611ab05760009050611b2a565b6064600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16611b00919061322f565b6fffffffffffffffffffffffffffffffff1683611b1d9190612c45565b611b2791906132a2565b90505b600760159054906101000a900460ff168015611b535750600760149054906101000a900460ff16155b8015611bad5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611bb95750600081115b15611bc757611bc6611cbe565b5b611bdd84848385611bd891906132d3565b611fe3565b6000811115611bf257611bf1843083611fe3565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611fe1576001600760146101000a81548160ff021916908315150217905550600a54611cf930610e01565b10611fc557611d09600a54612259565b60004790506000600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16611d5e919061322f565b6fffffffffffffffffffffffffffffffff169050600081600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1684611db49190612c45565b611dbe91906132a2565b90506000811115611e99576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e1190612cb8565b60006040518083038185875af1925050503d8060008114611e4e576040519150601f19603f3d011682016040523d82523d6000602084013e611e53565b606091505b5050905080611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90612d19565b60405180910390fd5b505b600082600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685611edb9190612c45565b611ee591906132a2565b90506000811115611fc0576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611f3890612cb8565b60006040518083038185875af1925050503d8060008114611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b5050905080611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590612d19565b60405180910390fd5b505b505050505b6000600760146101000a81548160ff0219169083151502179055505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990613379565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061340b565b60405180910390fd5b6120cc83838361249c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061349d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161224091906124bf565b60405180910390a36122538484846124a1565b50505050565b6000600267ffffffffffffffff811115612276576122756134bd565b5b6040519080825280602002602001820160405280156122a45781602001602082028036833780820191505090505b50905030816000815181106122bc576122bb612bab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612363573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123879190613501565b8160018151811061239b5761239a612bab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061240230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461140d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612466959493929190613627565b600060405180830381600087803b15801561248057600080fd5b505af1158015612494573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000819050919050565b6124b9816124a6565b82525050565b60006020820190506124d460008301846124b0565b92915050565b600080fd5b600080fd5b60006fffffffffffffffffffffffffffffffff82169050919050565b612509816124e4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b60008060408385031215612543576125426124da565b5b600061255185828601612517565b925050602061256285828601612517565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b60008484015250505050565b6000601f19601f8301169050919050565b60006125ce8261256c565b6125d88185612577565b93506125e8818560208601612588565b6125f1816125b2565b840191505092915050565b6000602082019050818103600083015261261681846125c3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126498261261e565b9050919050565b6126598161263e565b811461266457600080fd5b50565b60008135905061267681612650565b92915050565b612685816124a6565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b600080604083850312156126bf576126be6124da565b5b60006126cd85828601612667565b92505060206126de85828601612693565b9150509250929050565b60008115159050919050565b6126fd816126e8565b82525050565b600060208201905061271860008301846126f4565b92915050565b600060208284031215612734576127336124da565b5b600061274284828501612667565b91505092915050565b600080600060608486031215612764576127636124da565b5b600061277286828701612667565b935050602061278386828701612667565b925050604061279486828701612693565b9150509250925092565b600060ff82169050919050565b6127b48161279e565b82525050565b60006020820190506127cf60008301846127ab565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127fa576127f96127d5565b5b8235905067ffffffffffffffff811115612817576128166127da565b5b602083019150836020820283011115612833576128326127df565b5b9250929050565b612843816126e8565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b60008060006040848603121561287f5761287e6124da565b5b600084013567ffffffffffffffff81111561289d5761289c6124df565b5b6128a9868287016127e4565b935093505060206128bc86828701612851565b9150509250925092565b6128cf816124e4565b82525050565b60006040820190506128ea60008301856128c6565b6128f760208301846128c6565b9392505050565b6129078161263e565b82525050565b600060208201905061292260008301846128fe565b92915050565b60006020828403121561293e5761293d6124da565b5b600061294c84828501612693565b91505092915050565b6000806040838503121561296c5761296b6124da565b5b600061297a85828601612667565b925050602061298b85828601612667565b9150509250929050565b6000602082840312156129ab576129aa6124da565b5b60006129b984828501612851565b91505092915050565b6000819050919050565b60006129e76129e26129dd8461261e565b6129c2565b61261e565b9050919050565b60006129f9826129cc565b9050919050565b6000612a0b826129ee565b9050919050565b612a1b81612a00565b82525050565b6000602082019050612a366000830184612a12565b92915050565b60008060408385031215612a5357612a526124da565b5b6000612a6185828601612667565b9250506020612a7285828601612851565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac357607f821691505b602082108103612ad657612ad5612a7c565b5b50919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b6000612b12601383612577565b9150612b1d82612adc565b602082019050919050565b60006020820190508181036000830152612b4181612b05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b82826124a6565b9150612b8d836124a6565b9250828201905080821115612ba557612ba4612b48565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612bef60008301856128fe565b612bfc60208301846124b0565b9392505050565b600081519050612c128161283a565b92915050565b600060208284031215612c2e57612c2d6124da565b5b6000612c3c84828501612c03565b91505092915050565b6000612c50826124a6565b9150612c5b836124a6565b9250828202612c69816124a6565b91508282048414831517612c8057612c7f612b48565b5b5092915050565b600081905092915050565b50565b6000612ca2600083612c87565b9150612cad82612c92565b600082019050919050565b6000612cc382612c95565b9150819050919050565b7f4572726f722073656e64696e6720657468000000000000000000000000000000600082015250565b6000612d03601183612577565b9150612d0e82612ccd565b602082019050919050565b60006020820190508181036000830152612d3281612cf6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d95602583612577565b9150612da082612d39565b604082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e27602683612577565b9150612e3282612dcb565b604082019050919050565b60006020820190508181036000830152612e5681612e1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e93602083612577565b9150612e9e82612e5d565b602082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f25602483612577565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb7602283612577565b9150612fc282612f5b565b604082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613023601d83612577565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006130b5602983612577565b91506130c082613059565b604082019050919050565b600060208201905081810360008301526130e4816130a8565b9050919050565b7f4e6f7420696e697469616c697a65640000000000000000000000000000000000600082015250565b6000613121600f83612577565b915061312c826130eb565b602082019050919050565b6000602082019050818103600083015261315081613114565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b600061318d600b83612577565b915061319882613157565b602082019050919050565b600060208201905081810360008301526131bc81613180565b9050919050565b7f457863656564696e67206d61785478416d6f756e740000000000000000000000600082015250565b60006131f9601583612577565b9150613204826131c3565b602082019050919050565b60006020820190508181036000830152613228816131ec565b9050919050565b600061323a826124e4565b9150613245836124e4565b925082820190506fffffffffffffffffffffffffffffffff81111561326d5761326c612b48565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ad826124a6565b91506132b8836124a6565b9250826132c8576132c7613273565b5b828204905092915050565b60006132de826124a6565b91506132e9836124a6565b925082820390508181111561330157613300612b48565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613363602583612577565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133f5602383612577565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613487602683612577565b91506134928261342b565b604082019050919050565b600060208201905081810360008301526134b68161347a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506134fb81612650565b92915050565b600060208284031215613517576135166124da565b5b6000613525848285016134ec565b91505092915050565b6000819050919050565b600061355361354e6135498461352e565b6129c2565b6124a6565b9050919050565b61356381613538565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61359e8161263e565b82525050565b60006135b08383613595565b60208301905092915050565b6000602082019050919050565b60006135d482613569565b6135de8185613574565b93506135e983613585565b8060005b8381101561361a57815161360188826135a4565b975061360c836135bc565b9250506001810190506135ed565b5085935050505092915050565b600060a08201905061363c60008301886124b0565b613649602083018761355a565b818103604083015261365b81866135c9565b905061366a60608301856128fe565b61367760808301846124b0565b969550505050505056fea2646970667358221220d1f031b5174d14c17496e94184359fc66f8fe41ac213491d69e485c357e762b264736f6c63430008110033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.