ETH Price: $2,507.46 (-1.30%)

Token

BradCoin (BRAD)
 

Overview

Max Total Supply

171,200,000,000 BRAD

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,400,000,000 BRAD

Value
$0.00
0x00d4b9c9d02991c5d9b1b1448f883be82654f28c
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:
BradCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : BradCoin.sol
// SPDX-License-Identifier: MIT
/**
|       \                          |  \ /      \           |  \          
| $$$$$$$\  ______   ______    ____| $$|  $$$$$$\  ______   \$$ _______  
| $$__/ $$ /      \ |      \  /      $$| $$   \$$ /      \ |  \|       \ 
| $$    $$|  $$$$$$\ \$$$$$$\|  $$$$$$$| $$      |  $$$$$$\| $$| $$$$$$$\
| $$$$$$$\| $$   \$$/      $$| $$  | $$| $$   __ | $$  | $$| $$| $$  | $$
| $$__/ $$| $$     |  $$$$$$$| $$__| $$| $$__/  \| $$__/ $$| $$| $$  | $$
| $$    $$| $$      \$$    $$ \$$    $$ \$$    $$ \$$    $$| $$| $$  | $$
 \$$$$$$$  \$$       \$$$$$$$  \$$$$$$$  \$$$$$$   \$$$$$$  \$$ \$$   \$$
 */

pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Uniswap.sol";

contract BradCoin is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    uint256 public constant PRECISION = 10 ** 3;
    uint256 public constant BLOCK_TIME_PER_SEC = 12;

    uint256 public constant MAX_SUPPLY = 1_000_000_000_000 * 10 ** 18;

    uint256 public constant CEX_ALLOCATION = (MAX_SUPPLY * 20) / 100;
    uint256 public constant LP_ALLOCATION = (MAX_SUPPLY * 10) / 100;
    uint256 public constant CLAIM_ALLOCATION =
        MAX_SUPPLY - CEX_ALLOCATION - LP_ALLOCATION;

    uint256 public constant START_CLAIM_AMOUNT =
        (CLAIM_ALLOCATION * 2) / PRECISION;

    uint256 public constant MAX_DECREMENTS = 16;
    uint256 public constant DECAY_DELAY = BLOCK_TIME_PER_SEC * 60 * 15; // ~15min
    uint256 public constant DECAY_FACTOR = 125;
    uint256 public constant FREE_BLOCK_PERIOD = BLOCK_TIME_PER_SEC * 60 * 60; // ~1h
    uint256 public price = 0.05 ether;

    uint256 public startBlock;
    bool public lpCreated;
    address public uniswapV2Pair;

    mapping(address => bool) public minters;
    mapping(address => bool) public bots;

    constructor() ERC20("BradCoin", "BRAD") {
        _mint(owner(), CEX_ALLOCATION);
        _mint(address(this), LP_ALLOCATION);
        startBlock = block.number;
    }

    function print() external payable {
        uint256 total = totalSupply();
        address sender = msg.sender;
        require(!lpCreated, "printer closed");
        require(total < MAX_SUPPLY, "max print supply reached");
        require(!minters[sender], "sender already printed");
        if (block.number >= startBlock + FREE_BLOCK_PERIOD) {
            require(msg.value == price, "wrong eth value sent");
        }
        uint256 amount = _getPrintableAmount();
        uint256 claimAmount = total + amount > MAX_SUPPLY
            ? MAX_SUPPLY - total
            : amount;
        minters[sender] = true;
        _mint(sender, claimAmount);
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function getPrintableAmount() external view returns (uint256) {
        return _getPrintableAmount();
    }

    function _getPrintableAmount() internal view returns (uint256) {
        uint256 totalBlocks = block.number - startBlock + 1;
        uint256 ex = (totalBlocks / DECAY_DELAY) +
            (totalBlocks % DECAY_DELAY > 0 ? 1 : 0) -
            1;
        ex = ex > MAX_DECREMENTS ? MAX_DECREMENTS : ex;

        return
            (START_CLAIM_AMOUNT * ((PRECISION - DECAY_FACTOR) ** ex)) /
            (PRECISION ** ex);
    }

    function setStartBlock(uint256 startBlock_) external onlyOwner {
        startBlock = startBlock_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function createLP() external {
        bool tradingStarted = block.number >=
            startBlock + (DECAY_DELAY * MAX_DECREMENTS);

        require(tradingStarted, "trading not started yet");
        require(!lpCreated, "lp already created");
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), LP_ALLOCATION);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            LP_ALLOCATION,
            0,
            0,
            owner(),
            block.timestamp
        );
        lpCreated = true;
    }

    function addbot(address[] memory bots_) external onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBot(address notbot) external onlyOwner {
        bots[notbot] = false;
    }

    receive() external payable {
        revert("can not receive");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256
    ) internal virtual override {
        require(!bots[from] && !bots[to], "blocked");
    }
}

File 2 of 7 : 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 3 of 7 : 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 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 7 : Uniswap.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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":[],"name":"BLOCK_TIME_PER_SEC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEX_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAIM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECAY_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECAY_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_BLOCK_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LP_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DECREMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addbot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPrintableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"lpCreated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"print","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startBlock_","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec500006007553480156200001c57600080fd5b506040518060400160405280600881526020017f42726164436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42524144000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a1929190620004c6565b508060049080519060200190620000ba929190620004c6565b505050620000dd620000d16200016f60201b60201c565b6200017760201b60201c565b62000127620000f16200023d60201b60201c565b606460146c0c9f2c9cd04674edea400000006200010f9190620006dc565b6200011b9190620006a4565b6200026760201b60201c565b62000162306064600a6c0c9f2c9cd04674edea400000006200014a9190620006dc565b620001569190620006a4565b6200026760201b60201c565b436008819055506200085c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d190620005f7565b60405180910390fd5b620002ee60008383620003d560201b60201c565b806002600082825462000302919062000647565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b5919062000619565b60405180910390a3620003d160008383620004c160201b60201c565b5050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200047a5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620004bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b390620005d5565b60405180910390fd5b505050565b505050565b828054620004d49062000747565b90600052602060002090601f016020900481019282620004f8576000855562000544565b82601f106200051357805160ff191683800117855562000544565b8280016001018555821562000544579182015b828111156200054357825182559160200191906001019062000526565b5b50905062000553919062000557565b5090565b5b808211156200057257600081600090555060010162000558565b5090565b60006200058560078362000636565b915062000592826200080a565b602082019050919050565b6000620005ac601f8362000636565b9150620005b98262000833565b602082019050919050565b620005cf816200073d565b82525050565b60006020820190508181036000830152620005f08162000576565b9050919050565b6000602082019050818103600083015262000612816200059d565b9050919050565b6000602082019050620006306000830184620005c4565b92915050565b600082825260208201905092915050565b600062000654826200073d565b915062000661836200073d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200069957620006986200077d565b5b828201905092915050565b6000620006b1826200073d565b9150620006be836200073d565b925082620006d157620006d0620007ac565b5b828204905092915050565b6000620006e9826200073d565b9150620006f6836200073d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200073257620007316200077d565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200076057607f821691505b60208210811415620007775762000776620007db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f626c6f636b656400000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6137cd806200086c6000396000f3fe60806040526004361061023f5760003560e01c806385c21d2c1161012e578063bfd79284116100ab578063f2fde38b1161006f578063f2fde38b146108b8578063f35e4a6e146108e1578063f46eccc41461090a578063f7f23a0c14610947578063fb9f54dd1461095e5761027f565b8063bfd79284146107bf578063ccfee5d6146107fc578063dd62ed3e14610825578063e08eae5f14610862578063ebda16eb1461088d5761027f565b8063a035b1fe116100f2578063a035b1fe146106c4578063a457c2d7146106ef578063a9059cbb1461072c578063aaf5eb6814610769578063b1868940146107945761027f565b806385c21d2c146105ef5780638da5cb5b1461061a57806391b7f5ed146106455780639540bd301461066e57806395d89b41146106995761027f565b806339509351116101bc57806348cd4cb11161018057806348cd4cb11461051a57806349bd5a5e1461054557806360756d6a1461057057806370a082311461059b578063715018a6146105d85761027f565b8063395093511461043357806340ecb48d146104705780634288ec201461049b57806342966c68146104c657806346ce21f9146104ef5761027f565b806323b872dd1161020357806323b872dd1461034c578063260813d514610389578063273123b7146103b4578063313ce567146103dd57806332cb6b0c146104085761027f565b806306fdde0314610284578063095ea7b3146102af57806313bdfacd146102ec5780631694505e146102f657806318160ddd146103215761027f565b3661027f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027690612ac1565b60405180910390fd5b600080fd5b34801561029057600080fd5b50610299610989565b6040516102a69190612a9f565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d19190612580565b610a1b565b6040516102e39190612a69565b60405180910390f35b6102f4610a3e565b005b34801561030257600080fd5b5061030b610ca3565b6040516103189190612a84565b60405180910390f35b34801561032d57600080fd5b50610336610cc9565b6040516103439190612d41565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612531565b610cd3565b6040516103809190612a69565b60405180910390f35b34801561039557600080fd5b5061039e610d02565b6040516103ab9190612a69565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906124a3565b610d15565b005b3480156103e957600080fd5b506103f2610d78565b6040516103ff9190612d5c565b60405180910390f35b34801561041457600080fd5b5061041d610d81565b60405161042a9190612d41565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612580565b610d92565b6040516104679190612a69565b60405180910390f35b34801561047c57600080fd5b50610485610dc9565b6040516104929190612d41565b60405180910390f35b3480156104a757600080fd5b506104b0610dce565b6040516104bd9190612d41565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906125fd565b610e3f565b005b3480156104fb57600080fd5b50610504610e4c565b6040516105119190612d41565b60405180910390f35b34801561052657600080fd5b5061052f610e5b565b60405161053c9190612d41565b60405180910390f35b34801561055157600080fd5b5061055a610e61565b60405161056791906129c4565b60405180910390f35b34801561057c57600080fd5b50610585610e87565b6040516105929190612d41565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd91906124a3565b610ea4565b6040516105cf9190612d41565b60405180910390f35b3480156105e457600080fd5b506105ed610eec565b005b3480156105fb57600080fd5b50610604610f00565b6040516106119190612d41565b60405180910390f35b34801561062657600080fd5b5061062f610f29565b60405161063c91906129c4565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906125fd565b610f53565b005b34801561067a57600080fd5b50610683610f65565b6040516106909190612d41565b60405180910390f35b3480156106a557600080fd5b506106ae610fef565b6040516106bb9190612a9f565b60405180910390f35b3480156106d057600080fd5b506106d9611081565b6040516106e69190612d41565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612580565b611087565b6040516107239190612a69565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612580565b6110fe565b6040516107609190612a69565b60405180910390f35b34801561077557600080fd5b5061077e611121565b60405161078b9190612d41565b60405180910390f35b3480156107a057600080fd5b506107a9611127565b6040516107b69190612d41565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906124a3565b61112c565b6040516107f39190612a69565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906125bc565b61114c565b005b34801561083157600080fd5b5061084c600480360381019061084791906124f5565b61120f565b6040516108599190612d41565b60405180910390f35b34801561086e57600080fd5b50610877611296565b6040516108849190612d41565b60405180910390f35b34801561089957600080fd5b506108a261129b565b6040516108af9190612d41565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906124a3565b6112c4565b005b3480156108ed57600080fd5b50610908600480360381019061090391906125fd565b611348565b005b34801561091657600080fd5b50610931600480360381019061092c91906124a3565b61135a565b60405161093e9190612a69565b60405180910390f35b34801561095357600080fd5b5061095c61137a565b005b34801561096a57600080fd5b506109736117fc565b6040516109809190612d41565b60405180910390f35b60606003805461099890613128565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613128565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611818565b9050610a33818585611820565b600191505092915050565b6000610a48610cc9565b90506000339050600960009054906101000a900460ff1615610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690612c21565b60405180910390fd5b6c0c9f2c9cd04674edea400000008210610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612c01565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290612be1565b60405180910390fd5b603c80600c610b8a9190612fdc565b610b949190612fdc565b600854610ba19190612de4565b4310610bec576007543414610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290612ce1565b60405180910390fd5b5b6000610bf66119eb565b905060006c0c9f2c9cd04674edea400000008285610c149190612de4565b11610c1f5781610c39565b836c0c9f2c9cd04674edea40000000610c389190613036565b5b90506001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c9d8382611b5f565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610cde611818565b9050610ceb858285611cb6565b610cf6858585611d42565b60019150509392505050565b600960009054906101000a900460ff1681565b610d1d611fba565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b6c0c9f2c9cd04674edea4000000081565b600080610d9d611818565b9050610dbe818585610daf858961120f565b610db99190612de4565b611820565b600191505092915050565b600c81565b6064600a6c0c9f2c9cd04674edea40000000610dea9190612fdc565b610df49190612e3a565b606460146c0c9f2c9cd04674edea40000000610e109190612fdc565b610e1a9190612e3a565b6c0c9f2c9cd04674edea40000000610e329190613036565b610e3c9190613036565b81565b610e493382612038565b50565b6000610e566119eb565b905090565b60085481565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f603c600c610e979190612fdc565b610ea19190612fdc565b81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef4611fba565b610efe6000612206565b565b606460146c0c9f2c9cd04674edea40000000610f1c9190612fdc565b610f269190612e3a565b81565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f5b611fba565b8060078190555050565b6103e860026064600a6c0c9f2c9cd04674edea40000000610f869190612fdc565b610f909190612e3a565b606460146c0c9f2c9cd04674edea40000000610fac9190612fdc565b610fb69190612e3a565b6c0c9f2c9cd04674edea40000000610fce9190613036565b610fd89190613036565b610fe29190612fdc565b610fec9190612e3a565b81565b606060048054610ffe90613128565b80601f016020809104026020016040519081016040528092919081815260200182805461102a90613128565b80156110775780601f1061104c57610100808354040283529160200191611077565b820191906000526020600020905b81548152906001019060200180831161105a57829003601f168201915b5050505050905090565b60075481565b600080611092611818565b905060006110a0828661120f565b9050838110156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612d01565b60405180910390fd5b6110f28286868403611820565b60019250505092915050565b600080611109611818565b9050611116818585611d42565b600191505092915050565b6103e881565b601081565b600b6020528060005260406000206000915054906101000a900460ff1681565b611154611fba565b60005b815181101561120b576001600b600084848151811061119f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112039061318b565b915050611157565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b607d81565b6064600a6c0c9f2c9cd04674edea400000006112b79190612fdc565b6112c19190612e3a565b81565b6112cc611fba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612b41565b60405180910390fd5b61134581612206565b50565b611350611fba565b8060088190555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006010600f603c600c61138e9190612fdc565b6113989190612fdc565b6113a29190612fdc565b6008546113af9190612de4565b4310159050806113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612b21565b60405180910390fd5b600960009054906101000a900460ff1615611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612cc1565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506114eb30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a6c0c9f2c9cd04674edea400000006114dc9190612fdc565b6114e69190612e3a565b611820565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561155357600080fd5b505afa158015611567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158b91906124cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561160f57600080fd5b505afa158015611623573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164791906124cc565b6040518363ffffffff1660e01b81526004016116649291906129df565b602060405180830381600087803b15801561167e57600080fd5b505af1158015611692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b691906124cc565b600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306064600a6c0c9f2c9cd04674edea400000006117529190612fdc565b61175c9190612e3a565b600080611767610f29565b426040518863ffffffff1660e01b815260040161178996959493929190612a08565b6060604051808303818588803b1580156117a257600080fd5b505af11580156117b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117db9190612626565b5050506001600960006101000a81548160ff02191690831515021790555050565b603c80600c61180b9190612fdc565b6118159190612fdc565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790612ca1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790612b61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119de9190612d41565b60405180910390a3505050565b6000806001600854436119fe9190613036565b611a089190612de4565b9050600060016000600f603c600c611a209190612fdc565b611a2a9190612fdc565b84611a3591906131d4565b11611a41576000611a44565b60015b60ff16600f603c600c611a579190612fdc565b611a619190612fdc565b84611a6c9190612e3a565b611a769190612de4565b611a809190613036565b905060108111611a905780611a93565b60105b9050806103e8611aa39190612ebe565b81607d6103e8611ab39190613036565b611abd9190612ebe565b6103e860026064600a6c0c9f2c9cd04674edea40000000611ade9190612fdc565b611ae89190612e3a565b606460146c0c9f2c9cd04674edea40000000611b049190612fdc565b611b0e9190612e3a565b6c0c9f2c9cd04674edea40000000611b269190613036565b611b309190613036565b611b3a9190612fdc565b611b449190612e3a565b611b4e9190612fdc565b611b589190612e3a565b9250505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690612d21565b60405180910390fd5b611bdb600083836122cc565b8060026000828254611bed9190612de4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9e9190612d41565b60405180910390a3611cb2600083836123b4565b5050565b6000611cc2848461120f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d3c5781811015611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590612ba1565b60405180910390fd5b611d3b8484848403611820565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990612c81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990612ae1565b60405180910390fd5b611e2d8383836122cc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90612bc1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fa19190612d41565b60405180910390a3611fb48484846123b4565b50505050565b611fc2611818565b73ffffffffffffffffffffffffffffffffffffffff16611fe0610f29565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90612c41565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f90612c61565b60405180910390fd5b6120b4826000836122cc565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190612b01565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121ed9190612d41565b60405180910390a3612201836000846123b4565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156123705750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690612b81565b60405180910390fd5b505050565b505050565b60006123cc6123c784612d9c565b612d77565b905080838252602082019050828560208602820111156123eb57600080fd5b60005b8581101561241b57816124018882612425565b8452602084019350602083019250506001810190506123ee565b5050509392505050565b60008135905061243481613769565b92915050565b60008151905061244981613769565b92915050565b600082601f83011261246057600080fd5b81356124708482602086016123b9565b91505092915050565b60008135905061248881613780565b92915050565b60008151905061249d81613780565b92915050565b6000602082840312156124b557600080fd5b60006124c384828501612425565b91505092915050565b6000602082840312156124de57600080fd5b60006124ec8482850161243a565b91505092915050565b6000806040838503121561250857600080fd5b600061251685828601612425565b925050602061252785828601612425565b9150509250929050565b60008060006060848603121561254657600080fd5b600061255486828701612425565b935050602061256586828701612425565b925050604061257686828701612479565b9150509250925092565b6000806040838503121561259357600080fd5b60006125a185828601612425565b92505060206125b285828601612479565b9150509250929050565b6000602082840312156125ce57600080fd5b600082013567ffffffffffffffff8111156125e857600080fd5b6125f48482850161244f565b91505092915050565b60006020828403121561260f57600080fd5b600061261d84828501612479565b91505092915050565b60008060006060848603121561263b57600080fd5b60006126498682870161248e565b935050602061265a8682870161248e565b925050604061266b8682870161248e565b9150509250925092565b61267e8161306a565b82525050565b61268d8161307c565b82525050565b61269c816130bf565b82525050565b6126ab816130e3565b82525050565b60006126bc82612dc8565b6126c68185612dd3565b93506126d68185602086016130f5565b6126df816132c1565b840191505092915050565b60006126f7600f83612dd3565b9150612702826132df565b602082019050919050565b600061271a602383612dd3565b915061272582613308565b604082019050919050565b600061273d602283612dd3565b915061274882613357565b604082019050919050565b6000612760601783612dd3565b915061276b826133a6565b602082019050919050565b6000612783602683612dd3565b915061278e826133cf565b604082019050919050565b60006127a6602283612dd3565b91506127b18261341e565b604082019050919050565b60006127c9600783612dd3565b91506127d48261346d565b602082019050919050565b60006127ec601d83612dd3565b91506127f782613496565b602082019050919050565b600061280f602683612dd3565b915061281a826134bf565b604082019050919050565b6000612832601683612dd3565b915061283d8261350e565b602082019050919050565b6000612855601883612dd3565b915061286082613537565b602082019050919050565b6000612878600e83612dd3565b915061288382613560565b602082019050919050565b600061289b602083612dd3565b91506128a682613589565b602082019050919050565b60006128be602183612dd3565b91506128c9826135b2565b604082019050919050565b60006128e1602583612dd3565b91506128ec82613601565b604082019050919050565b6000612904602483612dd3565b915061290f82613650565b604082019050919050565b6000612927601283612dd3565b91506129328261369f565b602082019050919050565b600061294a601483612dd3565b9150612955826136c8565b602082019050919050565b600061296d602583612dd3565b9150612978826136f1565b604082019050919050565b6000612990601f83612dd3565b915061299b82613740565b602082019050919050565b6129af816130a8565b82525050565b6129be816130b2565b82525050565b60006020820190506129d96000830184612675565b92915050565b60006040820190506129f46000830185612675565b612a016020830184612675565b9392505050565b600060c082019050612a1d6000830189612675565b612a2a60208301886129a6565b612a3760408301876126a2565b612a4460608301866126a2565b612a516080830185612675565b612a5e60a08301846129a6565b979650505050505050565b6000602082019050612a7e6000830184612684565b92915050565b6000602082019050612a996000830184612693565b92915050565b60006020820190508181036000830152612ab981846126b1565b905092915050565b60006020820190508181036000830152612ada816126ea565b9050919050565b60006020820190508181036000830152612afa8161270d565b9050919050565b60006020820190508181036000830152612b1a81612730565b9050919050565b60006020820190508181036000830152612b3a81612753565b9050919050565b60006020820190508181036000830152612b5a81612776565b9050919050565b60006020820190508181036000830152612b7a81612799565b9050919050565b60006020820190508181036000830152612b9a816127bc565b9050919050565b60006020820190508181036000830152612bba816127df565b9050919050565b60006020820190508181036000830152612bda81612802565b9050919050565b60006020820190508181036000830152612bfa81612825565b9050919050565b60006020820190508181036000830152612c1a81612848565b9050919050565b60006020820190508181036000830152612c3a8161286b565b9050919050565b60006020820190508181036000830152612c5a8161288e565b9050919050565b60006020820190508181036000830152612c7a816128b1565b9050919050565b60006020820190508181036000830152612c9a816128d4565b9050919050565b60006020820190508181036000830152612cba816128f7565b9050919050565b60006020820190508181036000830152612cda8161291a565b9050919050565b60006020820190508181036000830152612cfa8161293d565b9050919050565b60006020820190508181036000830152612d1a81612960565b9050919050565b60006020820190508181036000830152612d3a81612983565b9050919050565b6000602082019050612d5660008301846129a6565b92915050565b6000602082019050612d7160008301846129b5565b92915050565b6000612d81612d92565b9050612d8d828261315a565b919050565b6000604051905090565b600067ffffffffffffffff821115612db757612db6613292565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000612def826130a8565b9150612dfa836130a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e2f57612e2e613205565b5b828201905092915050565b6000612e45826130a8565b9150612e50836130a8565b925082612e6057612e5f613234565b5b828204905092915050565b6000808291508390505b6001851115612eb557808604811115612e9157612e90613205565b5b6001851615612ea05780820291505b8081029050612eae856132d2565b9450612e75565b94509492505050565b6000612ec9826130a8565b9150612ed4836130a8565b9250612f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612f09565b905092915050565b600082612f195760019050612fd5565b81612f275760009050612fd5565b8160018114612f3d5760028114612f4757612f76565b6001915050612fd5565b60ff841115612f5957612f58613205565b5b8360020a915084821115612f7057612f6f613205565b5b50612fd5565b5060208310610133831016604e8410600b8410161715612fab5782820a905083811115612fa657612fa5613205565b5b612fd5565b612fb88484846001612e6b565b92509050818404811115612fcf57612fce613205565b5b81810290505b9392505050565b6000612fe7826130a8565b9150612ff2836130a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561302b5761302a613205565b5b828202905092915050565b6000613041826130a8565b915061304c836130a8565b92508282101561305f5761305e613205565b5b828203905092915050565b600061307582613088565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006130ca826130d1565b9050919050565b60006130dc82613088565b9050919050565b60006130ee826130a8565b9050919050565b60005b838110156131135780820151818401526020810190506130f8565b83811115613122576000848401525b50505050565b6000600282049050600182168061314057607f821691505b6020821081141561315457613153613263565b5b50919050565b613163826132c1565b810181811067ffffffffffffffff8211171561318257613181613292565b5b80604052505050565b6000613196826130a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c9576131c8613205565b5b600182019050919050565b60006131df826130a8565b91506131ea836130a8565b9250826131fa576131f9613234565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f63616e206e6f7420726563656976650000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206e6f74207374617274656420796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f626c6f636b656400000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f73656e64657220616c7265616479207072696e74656400000000000000000000600082015250565b7f6d6178207072696e7420737570706c7920726561636865640000000000000000600082015250565b7f7072696e74657220636c6f736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6c7020616c726561647920637265617465640000000000000000000000000000600082015250565b7f77726f6e67206574682076616c75652073656e74000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6137728161306a565b811461377d57600080fd5b50565b613789816130a8565b811461379457600080fd5b5056fea2646970667358221220399a6881427026c93e568ea96e2ab37a94fd0713148a139f1252a4af56556cd364736f6c63430008040033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806385c21d2c1161012e578063bfd79284116100ab578063f2fde38b1161006f578063f2fde38b146108b8578063f35e4a6e146108e1578063f46eccc41461090a578063f7f23a0c14610947578063fb9f54dd1461095e5761027f565b8063bfd79284146107bf578063ccfee5d6146107fc578063dd62ed3e14610825578063e08eae5f14610862578063ebda16eb1461088d5761027f565b8063a035b1fe116100f2578063a035b1fe146106c4578063a457c2d7146106ef578063a9059cbb1461072c578063aaf5eb6814610769578063b1868940146107945761027f565b806385c21d2c146105ef5780638da5cb5b1461061a57806391b7f5ed146106455780639540bd301461066e57806395d89b41146106995761027f565b806339509351116101bc57806348cd4cb11161018057806348cd4cb11461051a57806349bd5a5e1461054557806360756d6a1461057057806370a082311461059b578063715018a6146105d85761027f565b8063395093511461043357806340ecb48d146104705780634288ec201461049b57806342966c68146104c657806346ce21f9146104ef5761027f565b806323b872dd1161020357806323b872dd1461034c578063260813d514610389578063273123b7146103b4578063313ce567146103dd57806332cb6b0c146104085761027f565b806306fdde0314610284578063095ea7b3146102af57806313bdfacd146102ec5780631694505e146102f657806318160ddd146103215761027f565b3661027f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027690612ac1565b60405180910390fd5b600080fd5b34801561029057600080fd5b50610299610989565b6040516102a69190612a9f565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d19190612580565b610a1b565b6040516102e39190612a69565b60405180910390f35b6102f4610a3e565b005b34801561030257600080fd5b5061030b610ca3565b6040516103189190612a84565b60405180910390f35b34801561032d57600080fd5b50610336610cc9565b6040516103439190612d41565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612531565b610cd3565b6040516103809190612a69565b60405180910390f35b34801561039557600080fd5b5061039e610d02565b6040516103ab9190612a69565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906124a3565b610d15565b005b3480156103e957600080fd5b506103f2610d78565b6040516103ff9190612d5c565b60405180910390f35b34801561041457600080fd5b5061041d610d81565b60405161042a9190612d41565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612580565b610d92565b6040516104679190612a69565b60405180910390f35b34801561047c57600080fd5b50610485610dc9565b6040516104929190612d41565b60405180910390f35b3480156104a757600080fd5b506104b0610dce565b6040516104bd9190612d41565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906125fd565b610e3f565b005b3480156104fb57600080fd5b50610504610e4c565b6040516105119190612d41565b60405180910390f35b34801561052657600080fd5b5061052f610e5b565b60405161053c9190612d41565b60405180910390f35b34801561055157600080fd5b5061055a610e61565b60405161056791906129c4565b60405180910390f35b34801561057c57600080fd5b50610585610e87565b6040516105929190612d41565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd91906124a3565b610ea4565b6040516105cf9190612d41565b60405180910390f35b3480156105e457600080fd5b506105ed610eec565b005b3480156105fb57600080fd5b50610604610f00565b6040516106119190612d41565b60405180910390f35b34801561062657600080fd5b5061062f610f29565b60405161063c91906129c4565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906125fd565b610f53565b005b34801561067a57600080fd5b50610683610f65565b6040516106909190612d41565b60405180910390f35b3480156106a557600080fd5b506106ae610fef565b6040516106bb9190612a9f565b60405180910390f35b3480156106d057600080fd5b506106d9611081565b6040516106e69190612d41565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612580565b611087565b6040516107239190612a69565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612580565b6110fe565b6040516107609190612a69565b60405180910390f35b34801561077557600080fd5b5061077e611121565b60405161078b9190612d41565b60405180910390f35b3480156107a057600080fd5b506107a9611127565b6040516107b69190612d41565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906124a3565b61112c565b6040516107f39190612a69565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906125bc565b61114c565b005b34801561083157600080fd5b5061084c600480360381019061084791906124f5565b61120f565b6040516108599190612d41565b60405180910390f35b34801561086e57600080fd5b50610877611296565b6040516108849190612d41565b60405180910390f35b34801561089957600080fd5b506108a261129b565b6040516108af9190612d41565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906124a3565b6112c4565b005b3480156108ed57600080fd5b50610908600480360381019061090391906125fd565b611348565b005b34801561091657600080fd5b50610931600480360381019061092c91906124a3565b61135a565b60405161093e9190612a69565b60405180910390f35b34801561095357600080fd5b5061095c61137a565b005b34801561096a57600080fd5b506109736117fc565b6040516109809190612d41565b60405180910390f35b60606003805461099890613128565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613128565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611818565b9050610a33818585611820565b600191505092915050565b6000610a48610cc9565b90506000339050600960009054906101000a900460ff1615610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690612c21565b60405180910390fd5b6c0c9f2c9cd04674edea400000008210610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612c01565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290612be1565b60405180910390fd5b603c80600c610b8a9190612fdc565b610b949190612fdc565b600854610ba19190612de4565b4310610bec576007543414610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290612ce1565b60405180910390fd5b5b6000610bf66119eb565b905060006c0c9f2c9cd04674edea400000008285610c149190612de4565b11610c1f5781610c39565b836c0c9f2c9cd04674edea40000000610c389190613036565b5b90506001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c9d8382611b5f565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610cde611818565b9050610ceb858285611cb6565b610cf6858585611d42565b60019150509392505050565b600960009054906101000a900460ff1681565b610d1d611fba565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b6c0c9f2c9cd04674edea4000000081565b600080610d9d611818565b9050610dbe818585610daf858961120f565b610db99190612de4565b611820565b600191505092915050565b600c81565b6064600a6c0c9f2c9cd04674edea40000000610dea9190612fdc565b610df49190612e3a565b606460146c0c9f2c9cd04674edea40000000610e109190612fdc565b610e1a9190612e3a565b6c0c9f2c9cd04674edea40000000610e329190613036565b610e3c9190613036565b81565b610e493382612038565b50565b6000610e566119eb565b905090565b60085481565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f603c600c610e979190612fdc565b610ea19190612fdc565b81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef4611fba565b610efe6000612206565b565b606460146c0c9f2c9cd04674edea40000000610f1c9190612fdc565b610f269190612e3a565b81565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f5b611fba565b8060078190555050565b6103e860026064600a6c0c9f2c9cd04674edea40000000610f869190612fdc565b610f909190612e3a565b606460146c0c9f2c9cd04674edea40000000610fac9190612fdc565b610fb69190612e3a565b6c0c9f2c9cd04674edea40000000610fce9190613036565b610fd89190613036565b610fe29190612fdc565b610fec9190612e3a565b81565b606060048054610ffe90613128565b80601f016020809104026020016040519081016040528092919081815260200182805461102a90613128565b80156110775780601f1061104c57610100808354040283529160200191611077565b820191906000526020600020905b81548152906001019060200180831161105a57829003601f168201915b5050505050905090565b60075481565b600080611092611818565b905060006110a0828661120f565b9050838110156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612d01565b60405180910390fd5b6110f28286868403611820565b60019250505092915050565b600080611109611818565b9050611116818585611d42565b600191505092915050565b6103e881565b601081565b600b6020528060005260406000206000915054906101000a900460ff1681565b611154611fba565b60005b815181101561120b576001600b600084848151811061119f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112039061318b565b915050611157565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b607d81565b6064600a6c0c9f2c9cd04674edea400000006112b79190612fdc565b6112c19190612e3a565b81565b6112cc611fba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612b41565b60405180910390fd5b61134581612206565b50565b611350611fba565b8060088190555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006010600f603c600c61138e9190612fdc565b6113989190612fdc565b6113a29190612fdc565b6008546113af9190612de4565b4310159050806113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612b21565b60405180910390fd5b600960009054906101000a900460ff1615611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612cc1565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506114eb30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a6c0c9f2c9cd04674edea400000006114dc9190612fdc565b6114e69190612e3a565b611820565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561155357600080fd5b505afa158015611567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158b91906124cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561160f57600080fd5b505afa158015611623573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164791906124cc565b6040518363ffffffff1660e01b81526004016116649291906129df565b602060405180830381600087803b15801561167e57600080fd5b505af1158015611692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b691906124cc565b600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306064600a6c0c9f2c9cd04674edea400000006117529190612fdc565b61175c9190612e3a565b600080611767610f29565b426040518863ffffffff1660e01b815260040161178996959493929190612a08565b6060604051808303818588803b1580156117a257600080fd5b505af11580156117b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117db9190612626565b5050506001600960006101000a81548160ff02191690831515021790555050565b603c80600c61180b9190612fdc565b6118159190612fdc565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790612ca1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790612b61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119de9190612d41565b60405180910390a3505050565b6000806001600854436119fe9190613036565b611a089190612de4565b9050600060016000600f603c600c611a209190612fdc565b611a2a9190612fdc565b84611a3591906131d4565b11611a41576000611a44565b60015b60ff16600f603c600c611a579190612fdc565b611a619190612fdc565b84611a6c9190612e3a565b611a769190612de4565b611a809190613036565b905060108111611a905780611a93565b60105b9050806103e8611aa39190612ebe565b81607d6103e8611ab39190613036565b611abd9190612ebe565b6103e860026064600a6c0c9f2c9cd04674edea40000000611ade9190612fdc565b611ae89190612e3a565b606460146c0c9f2c9cd04674edea40000000611b049190612fdc565b611b0e9190612e3a565b6c0c9f2c9cd04674edea40000000611b269190613036565b611b309190613036565b611b3a9190612fdc565b611b449190612e3a565b611b4e9190612fdc565b611b589190612e3a565b9250505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690612d21565b60405180910390fd5b611bdb600083836122cc565b8060026000828254611bed9190612de4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9e9190612d41565b60405180910390a3611cb2600083836123b4565b5050565b6000611cc2848461120f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d3c5781811015611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590612ba1565b60405180910390fd5b611d3b8484848403611820565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990612c81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990612ae1565b60405180910390fd5b611e2d8383836122cc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90612bc1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fa19190612d41565b60405180910390a3611fb48484846123b4565b50505050565b611fc2611818565b73ffffffffffffffffffffffffffffffffffffffff16611fe0610f29565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90612c41565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f90612c61565b60405180910390fd5b6120b4826000836122cc565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190612b01565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121ed9190612d41565b60405180910390a3612201836000846123b4565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156123705750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690612b81565b60405180910390fd5b505050565b505050565b60006123cc6123c784612d9c565b612d77565b905080838252602082019050828560208602820111156123eb57600080fd5b60005b8581101561241b57816124018882612425565b8452602084019350602083019250506001810190506123ee565b5050509392505050565b60008135905061243481613769565b92915050565b60008151905061244981613769565b92915050565b600082601f83011261246057600080fd5b81356124708482602086016123b9565b91505092915050565b60008135905061248881613780565b92915050565b60008151905061249d81613780565b92915050565b6000602082840312156124b557600080fd5b60006124c384828501612425565b91505092915050565b6000602082840312156124de57600080fd5b60006124ec8482850161243a565b91505092915050565b6000806040838503121561250857600080fd5b600061251685828601612425565b925050602061252785828601612425565b9150509250929050565b60008060006060848603121561254657600080fd5b600061255486828701612425565b935050602061256586828701612425565b925050604061257686828701612479565b9150509250925092565b6000806040838503121561259357600080fd5b60006125a185828601612425565b92505060206125b285828601612479565b9150509250929050565b6000602082840312156125ce57600080fd5b600082013567ffffffffffffffff8111156125e857600080fd5b6125f48482850161244f565b91505092915050565b60006020828403121561260f57600080fd5b600061261d84828501612479565b91505092915050565b60008060006060848603121561263b57600080fd5b60006126498682870161248e565b935050602061265a8682870161248e565b925050604061266b8682870161248e565b9150509250925092565b61267e8161306a565b82525050565b61268d8161307c565b82525050565b61269c816130bf565b82525050565b6126ab816130e3565b82525050565b60006126bc82612dc8565b6126c68185612dd3565b93506126d68185602086016130f5565b6126df816132c1565b840191505092915050565b60006126f7600f83612dd3565b9150612702826132df565b602082019050919050565b600061271a602383612dd3565b915061272582613308565b604082019050919050565b600061273d602283612dd3565b915061274882613357565b604082019050919050565b6000612760601783612dd3565b915061276b826133a6565b602082019050919050565b6000612783602683612dd3565b915061278e826133cf565b604082019050919050565b60006127a6602283612dd3565b91506127b18261341e565b604082019050919050565b60006127c9600783612dd3565b91506127d48261346d565b602082019050919050565b60006127ec601d83612dd3565b91506127f782613496565b602082019050919050565b600061280f602683612dd3565b915061281a826134bf565b604082019050919050565b6000612832601683612dd3565b915061283d8261350e565b602082019050919050565b6000612855601883612dd3565b915061286082613537565b602082019050919050565b6000612878600e83612dd3565b915061288382613560565b602082019050919050565b600061289b602083612dd3565b91506128a682613589565b602082019050919050565b60006128be602183612dd3565b91506128c9826135b2565b604082019050919050565b60006128e1602583612dd3565b91506128ec82613601565b604082019050919050565b6000612904602483612dd3565b915061290f82613650565b604082019050919050565b6000612927601283612dd3565b91506129328261369f565b602082019050919050565b600061294a601483612dd3565b9150612955826136c8565b602082019050919050565b600061296d602583612dd3565b9150612978826136f1565b604082019050919050565b6000612990601f83612dd3565b915061299b82613740565b602082019050919050565b6129af816130a8565b82525050565b6129be816130b2565b82525050565b60006020820190506129d96000830184612675565b92915050565b60006040820190506129f46000830185612675565b612a016020830184612675565b9392505050565b600060c082019050612a1d6000830189612675565b612a2a60208301886129a6565b612a3760408301876126a2565b612a4460608301866126a2565b612a516080830185612675565b612a5e60a08301846129a6565b979650505050505050565b6000602082019050612a7e6000830184612684565b92915050565b6000602082019050612a996000830184612693565b92915050565b60006020820190508181036000830152612ab981846126b1565b905092915050565b60006020820190508181036000830152612ada816126ea565b9050919050565b60006020820190508181036000830152612afa8161270d565b9050919050565b60006020820190508181036000830152612b1a81612730565b9050919050565b60006020820190508181036000830152612b3a81612753565b9050919050565b60006020820190508181036000830152612b5a81612776565b9050919050565b60006020820190508181036000830152612b7a81612799565b9050919050565b60006020820190508181036000830152612b9a816127bc565b9050919050565b60006020820190508181036000830152612bba816127df565b9050919050565b60006020820190508181036000830152612bda81612802565b9050919050565b60006020820190508181036000830152612bfa81612825565b9050919050565b60006020820190508181036000830152612c1a81612848565b9050919050565b60006020820190508181036000830152612c3a8161286b565b9050919050565b60006020820190508181036000830152612c5a8161288e565b9050919050565b60006020820190508181036000830152612c7a816128b1565b9050919050565b60006020820190508181036000830152612c9a816128d4565b9050919050565b60006020820190508181036000830152612cba816128f7565b9050919050565b60006020820190508181036000830152612cda8161291a565b9050919050565b60006020820190508181036000830152612cfa8161293d565b9050919050565b60006020820190508181036000830152612d1a81612960565b9050919050565b60006020820190508181036000830152612d3a81612983565b9050919050565b6000602082019050612d5660008301846129a6565b92915050565b6000602082019050612d7160008301846129b5565b92915050565b6000612d81612d92565b9050612d8d828261315a565b919050565b6000604051905090565b600067ffffffffffffffff821115612db757612db6613292565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000612def826130a8565b9150612dfa836130a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e2f57612e2e613205565b5b828201905092915050565b6000612e45826130a8565b9150612e50836130a8565b925082612e6057612e5f613234565b5b828204905092915050565b6000808291508390505b6001851115612eb557808604811115612e9157612e90613205565b5b6001851615612ea05780820291505b8081029050612eae856132d2565b9450612e75565b94509492505050565b6000612ec9826130a8565b9150612ed4836130a8565b9250612f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612f09565b905092915050565b600082612f195760019050612fd5565b81612f275760009050612fd5565b8160018114612f3d5760028114612f4757612f76565b6001915050612fd5565b60ff841115612f5957612f58613205565b5b8360020a915084821115612f7057612f6f613205565b5b50612fd5565b5060208310610133831016604e8410600b8410161715612fab5782820a905083811115612fa657612fa5613205565b5b612fd5565b612fb88484846001612e6b565b92509050818404811115612fcf57612fce613205565b5b81810290505b9392505050565b6000612fe7826130a8565b9150612ff2836130a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561302b5761302a613205565b5b828202905092915050565b6000613041826130a8565b915061304c836130a8565b92508282101561305f5761305e613205565b5b828203905092915050565b600061307582613088565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006130ca826130d1565b9050919050565b60006130dc82613088565b9050919050565b60006130ee826130a8565b9050919050565b60005b838110156131135780820151818401526020810190506130f8565b83811115613122576000848401525b50505050565b6000600282049050600182168061314057607f821691505b6020821081141561315457613153613263565b5b50919050565b613163826132c1565b810181811067ffffffffffffffff8211171561318257613181613292565b5b80604052505050565b6000613196826130a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c9576131c8613205565b5b600182019050919050565b60006131df826130a8565b91506131ea836130a8565b9250826131fa576131f9613234565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f63616e206e6f7420726563656976650000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206e6f74207374617274656420796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f626c6f636b656400000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f73656e64657220616c7265616479207072696e74656400000000000000000000600082015250565b7f6d6178207072696e7420737570706c7920726561636865640000000000000000600082015250565b7f7072696e74657220636c6f736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6c7020616c726561647920637265617465640000000000000000000000000000600082015250565b7f77726f6e67206574682076616c75652073656e74000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6137728161306a565b811461377d57600080fd5b50565b613789816130a8565b811461379457600080fd5b5056fea2646970667358221220399a6881427026c93e568ea96e2ab37a94fd0713148a139f1252a4af56556cd364736f6c63430008040033

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.