ETH Price: $2,868.26 (-10.44%)
Gas: 13 Gwei

Token

Stone (0NE)
 

Overview

Max Total Supply

977,213,217,863,326.794721719019058588 0NE

Holders

749 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-6.94%)

Onchain Market Cap

$201,646.72

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,161,345,709,976.444129503456199699 0NE

Value
$239.64 ( ~0.0835488404976377 Eth) [0.1188%]
0x9e0b1749f6f41ff0e463f92516fd52aa53b31628
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Civfund is a fully decentralized hedge fund platform.

Market

Volume (24H):$169.61
Market Capitalization:$0.00
Circulating Supply:0.00 0NE
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Stone

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-24
*/

// SPDX-License-Identifier: UNLICENSED
// Sources flattened with hardhat v2.9.2 https://hardhat.org

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


pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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


pragma solidity ^0.7.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


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


pragma solidity ^0.7.0;

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

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

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

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

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

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

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

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


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


pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


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


pragma solidity ^0.7.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}


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


pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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


pragma solidity ^0.7.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


pragma solidity ^0.7.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @uniswap/v3-core/contracts/libraries/[email protected]

pragma solidity >=0.4.0 <0.8.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then use the Chinese Remainder Theorem to reconstruct
        // the 512 bit result. The result is stored in two 256
        // variables such that product = prod1 * 2**256 + prod0
        uint256 prod0; // Least significant 256 bits of the product
        uint256 prod1; // Most significant 256 bits of the product
        assembly {
            let mm := mulmod(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

        ///////////////////////////////////////////////
        // 512 by 256 division.
        ///////////////////////////////////////////////

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        prod0 |= prod1 * twos;

        // Invert denominator mod 2**256
        // Now that denominator is an odd number, it has an inverse
        // modulo 2**256 such that denominator * inv = 1 mod 2**256.
        // Compute the inverse by starting with a seed that is correct
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use Newton-Raphson iteration to improve the precision.
        // Thanks to Hensel's lifting lemma, this also works in modular
        // arithmetic, doubling the correct bits in each step.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // inverse mod 2**256

        // Because the division is now exact we can divide by multiplying
        // with the modular inverse of denominator. This will give us the
        // correct result modulo 2**256. Since the precoditions guarantee
        // that the outcome is less than 2**256, this is the final result.
        // We don't need to compute the high bits of the result and prod1
        // is no longer required.
        result = prod0 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}


// File @uniswap/v3-core/contracts/libraries/[email protected]

pragma solidity >=0.7.0;

/// @title Optimized overflow and underflow safe math operations
/// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost
library LowGasSafeMath {
    /// @notice Returns x + y, reverts if sum overflows uint256
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x);
    }

    /// @notice Returns x - y, reverts if underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x);
    }

    /// @notice Returns x * y, reverts if overflows
    /// @param x The multiplicand
    /// @param y The multiplier
    /// @return z The product of x and y
    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(x == 0 || (z = x * y) / x == y);
    }

    /// @notice Returns x + y, reverts if overflows or underflows
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x + y) >= x == (y >= 0));
    }

    /// @notice Returns x - y, reverts if overflows or underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x - y) <= x == (y >= 0));
    }
}


// File contracts/Stone.sol

pragma solidity ^0.7.6;






/**
 * @title Stone ERC-20 token Contract
 */

contract Stone is Ownable, ERC20, Pausable {
    using LowGasSafeMath for uint256;
    using FullMath for uint256;
    using SafeERC20 for IERC20;

    /// @notice Event emitted when tax rate changes
    event taxChanged(uint256 _taxRate);

    /// @notice Event emitted when bot tax rate changes
    event botTaxChanged(uint256 _botTaxRate);

    /// @notice Event emitted when add or remove size free account
    event sizeFreeChanged(address _sizeFreeAccount);

    /// @notice Event emitted when add or remove tax free account
    event taxFreeChanged(address _taxFreeAccount);

    /// @notice Event emitted when add or remove blacklistWallet
    event blacklistWalletChanged(address _blacklistWalletAccount);

    /// @notice Event emitted when add or remove botWallet
    event botWalletChanged(address _botWalletAccount);

    /// @notice Event emitted when burn address changes
    event burnAddressChanged(address _newBurnAddress);

    /// @notice Event emitted when transfer stone token with fee
    event transferWithTax(
        address _sender,
        address _recipient,
        uint256 amount,
        uint256 _burnAmount
    );

    address public burnWallet = 0xd26Cc7C8D96F6Ca5291758d266447f6879A66E16;
    uint256 internal constant maxSupply = 10**33;
    mapping(address => bool) public taxFree;
    mapping(address => bool) public sizeFree;
    mapping(address => bool) public blacklistWallet;
    mapping(address => bool) public botWallet;
    uint256 public taxRate = 9999; // basis points, 10000 is 100%; start high for anti-sniping
    uint256 public botTaxRate = 900; // 9% bot tax

    /**
     * @dev Constructor
     */
    constructor() ERC20("Stone", "0NE") {
        _mint(_msgSender(), 2 * 10**32);
        taxFree[_msgSender()] = true;
        sizeFree[_msgSender()] = true;
    }

    /**
     * @dev External function to set tax Rate
     * @param _taxRate New tax Rate in basis points
     */
    function setTaxRate(uint256 _taxRate) external onlyOwner {
        require(_taxRate >= 0, "TaxRate above zero");
        require(_taxRate <= 10000, "TaxRate below max");

        taxRate = _taxRate;
        emit taxChanged(_taxRate);
    }

    /**
     * @dev External function to set bot tax Rate
     * @param _botTaxRate New tax Rate in basis points
     */
    function setBotRate(uint256 _botTaxRate) external onlyOwner {
        require(_botTaxRate >= 0, "TaxRate above zero");
        require(_botTaxRate <= 10000, "TaxRate below max");

        botTaxRate = _botTaxRate;
        emit botTaxChanged(_botTaxRate);
    }

    /**
     * @dev Add or remove tax free accounts
     * @param _account target address to set or remove from the tax free account list
     */
    function setTaxFree(address _account) external onlyOwner {
        if (taxFree[_account]) {
            delete taxFree[_account];
        } else {
            taxFree[_account] = true;
        }

        emit taxFreeChanged(_account);
    }

    /**
     * @dev Add or remove size free accounts
     * @param _account target address to set or remove from the size free account list
     */
    function setSizeFree(address _account) external onlyOwner {
        if (sizeFree[_account]) {
            delete sizeFree[_account];
        } else {
            sizeFree[_account] = true;
        }

        emit sizeFreeChanged(_account);
    }

    /**
     * @dev Add or remove blacklist wallet accounts
     * @param _account target address to set or remove from the blacklist account list
     */
    function setBlacklistWallet(address _account) external onlyOwner {
        if (blacklistWallet[_account]) {
            delete blacklistWallet[_account];
        } else {
            blacklistWallet[_account] = true;
        }

        emit blacklistWalletChanged(_account);
    }

    /**
     * @dev Add or remove bot wallet accounts
     * @param _account target address to set or remove from the bot account list
     */
    function setBotWallet(address _account) external onlyOwner {
        if (botWallet[_account]) {
            delete botWallet[_account];
        } else {
            botWallet[_account] = true;
        }

        emit botWalletChanged(_account);
    }

    /**
     * @dev Custom transfer function
     * @param sender Sender address
     * @param recipient Recipient address
     * @param amount Amount to transfer
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override whenNotPaused {
        require(balanceOf(sender) >= amount, "Not enough tokens");

        //black listed wallets are not welcome, sorry!
        require(
            !blacklistWallet[sender] && !blacklistWallet[recipient],
            "Not welcome!"
        );

        if (!sizeFree[recipient]) {
            require(
                balanceOf(recipient).add(amount) <= 3 * 10**31,
                "Transfer exceeds max wallet"
            ); //3% max
        }

        //bots pay higher tax, sorry!
        uint256 _taxApplied = (botWallet[sender] || botWallet[recipient])
            ? botTaxRate
            : taxRate;

        //Divide by 20000 for the 50-50% split
        uint256 _burnAmount = (taxFree[sender] || taxFree[recipient])
            ? 0
            : FullMath.mulDiv(amount, _taxApplied, 20000);

        if (_burnAmount > 0) {
            _burn(sender, _burnAmount); //burn Stone
            ERC20._transfer(sender, burnWallet, _burnAmount); //burn Civ to dedicated wallet
        }

        ERC20._transfer(sender, recipient, amount - (_burnAmount.mul(2))); //then transfer

        emit transferWithTax(sender, recipient, amount, _burnAmount);
    }

    /**
     * @dev Set burn address
     * @param _burnAddress New burn address
     */
    function setBurnAddress(address _burnAddress) external onlyOwner {
        burnWallet = _burnAddress;
        emit burnAddressChanged(burnWallet);
    }

    /**
     * @dev Mint new stone tokens
     * @param count Amount to mint
     */
    function mintToken(uint256 count) external onlyOwner {
        require(totalSupply() + count <= maxSupply, "Mint above maxSupply");
        _mint(_msgSender(), count);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    /* Just in case anyone sends tokens by accident to this contract */

    /// @notice Transfers ETH to the recipient address
    /// @dev Fails with `STE`
    /// @param to The destination of the transfer
    /// @param value The value to be transferred
    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, "STE");
    }

    function withdrawETH() external payable onlyOwner {
        safeTransferETH(_msgSender(), address(this).balance);
    }

    function withdrawERC20(IERC20 _tokenContract) external onlyOwner {
        _tokenContract.safeTransfer(
            _msgSender(),
            _tokenContract.balanceOf(address(this))
        );
    }

    /**
     * @dev allow the contract to receive ETH
     * without payable fallback and receive, it would fail
     */
    fallback() external payable {}

    receive() external payable {}
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blacklistWalletAccount","type":"address"}],"name":"blacklistWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_botTaxRate","type":"uint256"}],"name":"botTaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_botWalletAccount","type":"address"}],"name":"botWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newBurnAddress","type":"address"}],"name":"burnAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sizeFreeAccount","type":"address"}],"name":"sizeFreeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"taxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxFreeAccount","type":"address"}],"name":"taxFreeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"transferWithTax","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"blacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"botWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_botTaxRate","type":"uint256"}],"name":"setBotRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_burnAddress","type":"address"}],"name":"setBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setSizeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sizeFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_tokenContract","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805462010000600160b01b03191675d26cc7c8d96f6ca5291758d266447f6879a66e16000017905561270f600b55610384600c553480156200004757600080fd5b506040518060400160405280600581526020016453746f6e6560d81b81525060405180604001604052806003815260200162304e4560e81b815250600062000094620001bc60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000f39060049060208501906200033a565b508051620001099060059060208401906200033a565b50506006805461ff001960ff1990911660121716905550620001436200012e620001bc565b6d09dc5ada82b70b59df0200000000620001c0565b60016007600062000153620001bc565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556001906008906200018e620001bc565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620003e6565b3390565b6001600160a01b0382166200021c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200022a60008383620002d3565b6200024681600354620002d860201b620018881790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200027b91839062001888620002d8821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000333576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003725760008555620003bd565b82601f106200038d57805160ff1916838001178555620003bd565b82800160010185558215620003bd579182015b82811115620003bd578251825591602001919060010190620003a0565b50620003cb929150620003cf565b5090565b5b80821115620003cb5760008155600101620003d0565b61296680620003f66000396000f3fe60806040526004361061021d5760003560e01c8063715018a61161011d578063a9059cbb116100b0578063e086e5ec1161007f578063f2fde38b11610064578063f2fde38b146107a2578063f4f3b200146107d5578063f5dc097a1461080857610224565b8063e086e5ec14610767578063f2b9aa111461076f57610224565b8063a9059cbb1461069f578063c634d032146106d8578063c6d69a3014610702578063dd62ed3e1461072c57610224565b806395d89b41116100ec57806395d89b41146106095780639cbc1ad61461061e5780639fe7336414610651578063a457c2d71461066657610224565b8063715018a6146105b5578063771a3a1d146105ca5780638456cb59146105df5780638da5cb5b146105f457610224565b806339509351116101b05780635c975abb1161017f5780636e70a391116101645780636e70a391146105255780636fb3793f1461054f57806370a082311461058257610224565b80635c975abb146104dd57806362441bf6146104f257610224565b806339509351146104295780633f4ba83a146104625780634b0e72161461047757806356454494146104aa57610224565b806311813007116101ec578063118130071461036157806318160ddd1461039457806323b872dd146103bb578063313ce567146103fe57610224565b806304dc3c7f14610226578063062287491461026d57806306fdde031461029e578063095ea7b31461032857610224565b3661022457005b005b34801561023257600080fd5b506102596004803603602081101561024957600080fd5b50356001600160a01b031661083b565b604080519115158252519081900360200190f35b34801561027957600080fd5b50610282610850565b604080516001600160a01b039092168252519081900360200190f35b3480156102aa57600080fd5b506102b3610865565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ed5781810151838201526020016102d5565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b506102596004803603604081101561034b57600080fd5b506001600160a01b0381351690602001356108fb565b34801561036d57600080fd5b506102246004803603602081101561038457600080fd5b50356001600160a01b0316610919565b3480156103a057600080fd5b506103a9610a36565b60408051918252519081900360200190f35b3480156103c757600080fd5b50610259600480360360608110156103de57600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b34801561040a57600080fd5b50610413610ac4565b6040805160ff9092168252519081900360200190f35b34801561043557600080fd5b506102596004803603604081101561044c57600080fd5b506001600160a01b038135169060200135610acd565b34801561046e57600080fd5b50610224610b1b565b34801561048357600080fd5b506102246004803603602081101561049a57600080fd5b50356001600160a01b0316610b99565b3480156104b657600080fd5b50610224600480360360208110156104cd57600080fd5b50356001600160a01b0316610c89565b3480156104e957600080fd5b50610259610da5565b3480156104fe57600080fd5b506102596004803603602081101561051557600080fd5b50356001600160a01b0316610db3565b34801561053157600080fd5b506102246004803603602081101561054857600080fd5b5035610dc8565b34801561055b57600080fd5b506102246004803603602081101561057257600080fd5b50356001600160a01b0316610ece565b34801561058e57600080fd5b506103a9600480360360208110156105a557600080fd5b50356001600160a01b0316610feb565b3480156105c157600080fd5b50610224611006565b3480156105d657600080fd5b506103a96110dc565b3480156105eb57600080fd5b506102246110e2565b34801561060057600080fd5b5061028261115e565b34801561061557600080fd5b506102b361116d565b34801561062a57600080fd5b506102596004803603602081101561064157600080fd5b50356001600160a01b03166111ce565b34801561065d57600080fd5b506103a96111e3565b34801561067257600080fd5b506102596004803603604081101561068957600080fd5b506001600160a01b0381351690602001356111e9565b3480156106ab57600080fd5b50610259600480360360408110156106c257600080fd5b506001600160a01b038135169060200135611251565b3480156106e457600080fd5b50610224600480360360208110156106fb57600080fd5b5035611265565b34801561070e57600080fd5b506102246004803603602081101561072557600080fd5b5035611359565b34801561073857600080fd5b506103a96004803603604081101561074f57600080fd5b506001600160a01b038135811691602001351661145f565b61022461148a565b34801561077b57600080fd5b506102596004803603602081101561079257600080fd5b50356001600160a01b031661150f565b3480156107ae57600080fd5b50610224600480360360208110156107c557600080fd5b50356001600160a01b0316611524565b3480156107e157600080fd5b50610224600480360360208110156107f857600080fd5b50356001600160a01b0316611650565b34801561081457600080fd5b506102246004803603602081101561082b57600080fd5b50356001600160a01b031661176b565b60086020526000908152604090205460ff1681565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b600061090f6109086118e2565b84846118e6565b5060015b92915050565b6109216118e2565b6001600160a01b031661093261115e565b6001600160a01b03161461098d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16156109d3576001600160a01b0381166000908152600960205260409020805460ff191690556109f7565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610a498484846119d2565b610ab984610a556118e2565b610ab485604051806060016040528060288152602001612850602891396001600160a01b038a16600090815260026020526040812090610a936118e2565b6001600160a01b031681526020810191909152604001600020549190611cfb565b6118e6565b5060015b9392505050565b60065460ff1690565b600061090f610ada6118e2565b84610ab48560026000610aeb6118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611888565b610b236118e2565b6001600160a01b0316610b3461115e565b6001600160a01b031614610b8f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b97611d92565b565b610ba16118e2565b6001600160a01b0316610bb261115e565b6001600160a01b031614610c0d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b03808416620100009081027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b610c916118e2565b6001600160a01b0316610ca261115e565b6001600160a01b031614610cfd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610d43576001600160a01b0381166000908152600760205260409020805460ff19169055610d67565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b60096020526000908152604090205460ff1681565b610dd06118e2565b6001600160a01b0316610de161115e565b6001600160a01b031614610e3c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612710811115610e93576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600c8190556040805182815290517f7c8d3de91e8bac701f976dd5900640956f37d4f26799f84a7817dacddaec5b779181900360200190a150565b610ed66118e2565b6001600160a01b0316610ee761115e565b6001600160a01b031614610f42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615610f88576001600160a01b0381166000908152600860205260409020805460ff19169055610fac565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f654748d37c6a091d2a3b5a78cc1ff361ebad61ff28bbee1add5af032ba0ddf2b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b61100e6118e2565b6001600160a01b031661101f61115e565b6001600160a01b03161461107a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600b5481565b6110ea6118e2565b6001600160a01b03166110fb61115e565b6001600160a01b031614611156576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b97611e3c565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f15780601f106108c6576101008083540402835291602001916108f1565b600a6020526000908152604090205460ff1681565b600c5481565b600061090f6111f66118e2565b84610ab48560405180606001604052806025815260200161290c60259139600260006112206118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611cfb565b600061090f61125e6118e2565b84846119d2565b61126d6118e2565b6001600160a01b031661127e61115e565b6001600160a01b0316146112d9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6d314dc6448d9338c15b0a00000000816112f1610a36565b011115611345576040805162461bcd60e51b815260206004820152601460248201527f4d696e742061626f7665206d6178537570706c79000000000000000000000000604482015290519081900360640190fd5b6113566113506118e2565b82611ece565b50565b6113616118e2565b6001600160a01b031661137261115e565b6001600160a01b0316146113cd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612710811115611424576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600b8190556040805182815290517f9ae027aa81ddce6169039395a048d6f9e2ad4dc0eeaeeac580527f08f35e6f8e9181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6114926118e2565b6001600160a01b03166114a361115e565b6001600160a01b0316146114fe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b976115096118e2565b47611fc0565b60076020526000908152604090205460ff1681565b61152c6118e2565b6001600160a01b031661153d61115e565b6001600160a01b031614611598576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115dd5760405162461bcd60e51b81526004018080602001828103825260268152602001806127bc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6116586118e2565b6001600160a01b031661166961115e565b6001600160a01b0316146116c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6113566116cf6118e2565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50516001600160a01b03841691906120ce565b6117736118e2565b6001600160a01b031661178461115e565b6001600160a01b0316146117df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611825576001600160a01b0381166000908152600a60205260409020805460ff19169055611849565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517fcfd3a75fb583511b8400cdde6a27635dbf2b8cca8dd51e017bd97a751b4bea5b9181900360200190a150565b600082820183811015610abd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661192b5760405162461bcd60e51b81526004018080602001828103825260248152602001806128be6024913960400191505060405180910390fd5b6001600160a01b0382166119705760405162461bcd60e51b81526004018080602001828103825260228152602001806127e26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6119da610da5565b15611a2c576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b80611a3684610feb565b1015611a89576040805162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff16158015611acb57506001600160a01b03821660009081526009602052604090205460ff16155b611b1c576040805162461bcd60e51b815260206004820152600c60248201527f4e6f742077656c636f6d65210000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090205460ff16611bb1576d017aa73a606841b3e17380000000611b5e82611b5885610feb565b9061214e565b1115611bb1576040805162461bcd60e51b815260206004820152601b60248201527f5472616e736665722065786365656473206d61782077616c6c65740000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604081205460ff1680611bf057506001600160a01b0383166000908152600a602052604090205460ff165b611bfc57600b54611c00565b600c545b6001600160a01b0385166000908152600760205260408120549192509060ff1680611c4357506001600160a01b03841660009081526007602052604090205460ff165b611c5957611c548383614e2061215e565b611c5c565b60005b90508015611c8c57611c6e858261220d565b600654611c8c9086906201000090046001600160a01b031683612309565b611ca38585611c9c846002612466565b8603612309565b604080516001600160a01b038088168252861660208201528082018590526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a15050505050565b60008184841115611d8a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d4f578181015183820152602001611d37565b50505050905090810190601f168015611d7c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611d9a610da5565b611deb576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611e1f6118e2565b604080516001600160a01b039092168252519081900360200190a1565b611e44610da5565b15611e96576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e1f6118e2565b6001600160a01b038216611f29576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611f35600083836120c9565b600354611f429082611888565b6003556001600160a01b038216600090815260016020526040902054611f689082611888565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061200c5780518252601f199092019160209182019101611fed565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461206e576040519150601f19603f3d011682016040523d82523d6000602084013e612073565b606091505b50509050806120c9576040805162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526120c990849061248a565b8082018281101561091357600080fd5b6000808060001985870986860292508281109083900303905080612194576000841161218957600080fd5b508290049050610abd565b8084116121a057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b0382166122525760405162461bcd60e51b81526004018080602001828103825260218152602001806128786021913960400191505060405180910390fd5b61225e826000836120c9565b61229b8160405180606001604052806022815260200161279a602291396001600160a01b0385166000908152600160205260409020549190611cfb565b6001600160a01b0383166000908152600160205260409020556003546122c1908261253b565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03831661234e5760405162461bcd60e51b81526004018080602001828103825260258152602001806128996025913960400191505060405180910390fd5b6001600160a01b0382166123935760405162461bcd60e51b81526004018080602001828103825260238152602001806127776023913960400191505060405180910390fd5b61239e8383836120c9565b6123db81604051806060016040528060268152602001612804602691396001600160a01b0386166000908152600160205260409020549190611cfb565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461240a9082611888565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008215806124815750508181028183828161247e57fe5b04145b61091357600080fd5b60006124df826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125989092919063ffffffff16565b8051909150156120c9578080602001905160208110156124fe57600080fd5b50516120c95760405162461bcd60e51b815260040180806020018281038252602a8152602001806128e2602a913960400191505060405180910390fd5b600082821115612592576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60606125a784846000856125af565b949350505050565b6060824710156125f05760405162461bcd60e51b815260040180806020018281038252602681526020018061282a6026913960400191505060405180910390fd5b6125f98561270a565b61264a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126885780518252601f199092019160209182019101612669565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b50915091506126ff828286612710565b979650505050505050565b3b151590565b6060831561271f575081610abd565b82511561272f5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611d4f578181015183820152602001611d3756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094d6ffa3fc97074119d99fb0343be9fbc8322de1067e8abbc8e817c34876e2c164736f6c63430007060033

Deployed Bytecode

0x60806040526004361061021d5760003560e01c8063715018a61161011d578063a9059cbb116100b0578063e086e5ec1161007f578063f2fde38b11610064578063f2fde38b146107a2578063f4f3b200146107d5578063f5dc097a1461080857610224565b8063e086e5ec14610767578063f2b9aa111461076f57610224565b8063a9059cbb1461069f578063c634d032146106d8578063c6d69a3014610702578063dd62ed3e1461072c57610224565b806395d89b41116100ec57806395d89b41146106095780639cbc1ad61461061e5780639fe7336414610651578063a457c2d71461066657610224565b8063715018a6146105b5578063771a3a1d146105ca5780638456cb59146105df5780638da5cb5b146105f457610224565b806339509351116101b05780635c975abb1161017f5780636e70a391116101645780636e70a391146105255780636fb3793f1461054f57806370a082311461058257610224565b80635c975abb146104dd57806362441bf6146104f257610224565b806339509351146104295780633f4ba83a146104625780634b0e72161461047757806356454494146104aa57610224565b806311813007116101ec578063118130071461036157806318160ddd1461039457806323b872dd146103bb578063313ce567146103fe57610224565b806304dc3c7f14610226578063062287491461026d57806306fdde031461029e578063095ea7b31461032857610224565b3661022457005b005b34801561023257600080fd5b506102596004803603602081101561024957600080fd5b50356001600160a01b031661083b565b604080519115158252519081900360200190f35b34801561027957600080fd5b50610282610850565b604080516001600160a01b039092168252519081900360200190f35b3480156102aa57600080fd5b506102b3610865565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ed5781810151838201526020016102d5565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b506102596004803603604081101561034b57600080fd5b506001600160a01b0381351690602001356108fb565b34801561036d57600080fd5b506102246004803603602081101561038457600080fd5b50356001600160a01b0316610919565b3480156103a057600080fd5b506103a9610a36565b60408051918252519081900360200190f35b3480156103c757600080fd5b50610259600480360360608110156103de57600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b34801561040a57600080fd5b50610413610ac4565b6040805160ff9092168252519081900360200190f35b34801561043557600080fd5b506102596004803603604081101561044c57600080fd5b506001600160a01b038135169060200135610acd565b34801561046e57600080fd5b50610224610b1b565b34801561048357600080fd5b506102246004803603602081101561049a57600080fd5b50356001600160a01b0316610b99565b3480156104b657600080fd5b50610224600480360360208110156104cd57600080fd5b50356001600160a01b0316610c89565b3480156104e957600080fd5b50610259610da5565b3480156104fe57600080fd5b506102596004803603602081101561051557600080fd5b50356001600160a01b0316610db3565b34801561053157600080fd5b506102246004803603602081101561054857600080fd5b5035610dc8565b34801561055b57600080fd5b506102246004803603602081101561057257600080fd5b50356001600160a01b0316610ece565b34801561058e57600080fd5b506103a9600480360360208110156105a557600080fd5b50356001600160a01b0316610feb565b3480156105c157600080fd5b50610224611006565b3480156105d657600080fd5b506103a96110dc565b3480156105eb57600080fd5b506102246110e2565b34801561060057600080fd5b5061028261115e565b34801561061557600080fd5b506102b361116d565b34801561062a57600080fd5b506102596004803603602081101561064157600080fd5b50356001600160a01b03166111ce565b34801561065d57600080fd5b506103a96111e3565b34801561067257600080fd5b506102596004803603604081101561068957600080fd5b506001600160a01b0381351690602001356111e9565b3480156106ab57600080fd5b50610259600480360360408110156106c257600080fd5b506001600160a01b038135169060200135611251565b3480156106e457600080fd5b50610224600480360360208110156106fb57600080fd5b5035611265565b34801561070e57600080fd5b506102246004803603602081101561072557600080fd5b5035611359565b34801561073857600080fd5b506103a96004803603604081101561074f57600080fd5b506001600160a01b038135811691602001351661145f565b61022461148a565b34801561077b57600080fd5b506102596004803603602081101561079257600080fd5b50356001600160a01b031661150f565b3480156107ae57600080fd5b50610224600480360360208110156107c557600080fd5b50356001600160a01b0316611524565b3480156107e157600080fd5b50610224600480360360208110156107f857600080fd5b50356001600160a01b0316611650565b34801561081457600080fd5b506102246004803603602081101561082b57600080fd5b50356001600160a01b031661176b565b60086020526000908152604090205460ff1681565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b600061090f6109086118e2565b84846118e6565b5060015b92915050565b6109216118e2565b6001600160a01b031661093261115e565b6001600160a01b03161461098d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16156109d3576001600160a01b0381166000908152600960205260409020805460ff191690556109f7565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610a498484846119d2565b610ab984610a556118e2565b610ab485604051806060016040528060288152602001612850602891396001600160a01b038a16600090815260026020526040812090610a936118e2565b6001600160a01b031681526020810191909152604001600020549190611cfb565b6118e6565b5060015b9392505050565b60065460ff1690565b600061090f610ada6118e2565b84610ab48560026000610aeb6118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611888565b610b236118e2565b6001600160a01b0316610b3461115e565b6001600160a01b031614610b8f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b97611d92565b565b610ba16118e2565b6001600160a01b0316610bb261115e565b6001600160a01b031614610c0d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b03808416620100009081027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b610c916118e2565b6001600160a01b0316610ca261115e565b6001600160a01b031614610cfd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610d43576001600160a01b0381166000908152600760205260409020805460ff19169055610d67565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b60096020526000908152604090205460ff1681565b610dd06118e2565b6001600160a01b0316610de161115e565b6001600160a01b031614610e3c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612710811115610e93576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600c8190556040805182815290517f7c8d3de91e8bac701f976dd5900640956f37d4f26799f84a7817dacddaec5b779181900360200190a150565b610ed66118e2565b6001600160a01b0316610ee761115e565b6001600160a01b031614610f42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615610f88576001600160a01b0381166000908152600860205260409020805460ff19169055610fac565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f654748d37c6a091d2a3b5a78cc1ff361ebad61ff28bbee1add5af032ba0ddf2b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b61100e6118e2565b6001600160a01b031661101f61115e565b6001600160a01b03161461107a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600b5481565b6110ea6118e2565b6001600160a01b03166110fb61115e565b6001600160a01b031614611156576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b97611e3c565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f15780601f106108c6576101008083540402835291602001916108f1565b600a6020526000908152604090205460ff1681565b600c5481565b600061090f6111f66118e2565b84610ab48560405180606001604052806025815260200161290c60259139600260006112206118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611cfb565b600061090f61125e6118e2565b84846119d2565b61126d6118e2565b6001600160a01b031661127e61115e565b6001600160a01b0316146112d9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6d314dc6448d9338c15b0a00000000816112f1610a36565b011115611345576040805162461bcd60e51b815260206004820152601460248201527f4d696e742061626f7665206d6178537570706c79000000000000000000000000604482015290519081900360640190fd5b6113566113506118e2565b82611ece565b50565b6113616118e2565b6001600160a01b031661137261115e565b6001600160a01b0316146113cd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612710811115611424576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600b8190556040805182815290517f9ae027aa81ddce6169039395a048d6f9e2ad4dc0eeaeeac580527f08f35e6f8e9181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6114926118e2565b6001600160a01b03166114a361115e565b6001600160a01b0316146114fe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b976115096118e2565b47611fc0565b60076020526000908152604090205460ff1681565b61152c6118e2565b6001600160a01b031661153d61115e565b6001600160a01b031614611598576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115dd5760405162461bcd60e51b81526004018080602001828103825260268152602001806127bc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6116586118e2565b6001600160a01b031661166961115e565b6001600160a01b0316146116c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6113566116cf6118e2565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50516001600160a01b03841691906120ce565b6117736118e2565b6001600160a01b031661178461115e565b6001600160a01b0316146117df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611825576001600160a01b0381166000908152600a60205260409020805460ff19169055611849565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517fcfd3a75fb583511b8400cdde6a27635dbf2b8cca8dd51e017bd97a751b4bea5b9181900360200190a150565b600082820183811015610abd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661192b5760405162461bcd60e51b81526004018080602001828103825260248152602001806128be6024913960400191505060405180910390fd5b6001600160a01b0382166119705760405162461bcd60e51b81526004018080602001828103825260228152602001806127e26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6119da610da5565b15611a2c576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b80611a3684610feb565b1015611a89576040805162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff16158015611acb57506001600160a01b03821660009081526009602052604090205460ff16155b611b1c576040805162461bcd60e51b815260206004820152600c60248201527f4e6f742077656c636f6d65210000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090205460ff16611bb1576d017aa73a606841b3e17380000000611b5e82611b5885610feb565b9061214e565b1115611bb1576040805162461bcd60e51b815260206004820152601b60248201527f5472616e736665722065786365656473206d61782077616c6c65740000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604081205460ff1680611bf057506001600160a01b0383166000908152600a602052604090205460ff165b611bfc57600b54611c00565b600c545b6001600160a01b0385166000908152600760205260408120549192509060ff1680611c4357506001600160a01b03841660009081526007602052604090205460ff165b611c5957611c548383614e2061215e565b611c5c565b60005b90508015611c8c57611c6e858261220d565b600654611c8c9086906201000090046001600160a01b031683612309565b611ca38585611c9c846002612466565b8603612309565b604080516001600160a01b038088168252861660208201528082018590526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a15050505050565b60008184841115611d8a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d4f578181015183820152602001611d37565b50505050905090810190601f168015611d7c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611d9a610da5565b611deb576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611e1f6118e2565b604080516001600160a01b039092168252519081900360200190a1565b611e44610da5565b15611e96576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e1f6118e2565b6001600160a01b038216611f29576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611f35600083836120c9565b600354611f429082611888565b6003556001600160a01b038216600090815260016020526040902054611f689082611888565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061200c5780518252601f199092019160209182019101611fed565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461206e576040519150601f19603f3d011682016040523d82523d6000602084013e612073565b606091505b50509050806120c9576040805162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526120c990849061248a565b8082018281101561091357600080fd5b6000808060001985870986860292508281109083900303905080612194576000841161218957600080fd5b508290049050610abd565b8084116121a057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b0382166122525760405162461bcd60e51b81526004018080602001828103825260218152602001806128786021913960400191505060405180910390fd5b61225e826000836120c9565b61229b8160405180606001604052806022815260200161279a602291396001600160a01b0385166000908152600160205260409020549190611cfb565b6001600160a01b0383166000908152600160205260409020556003546122c1908261253b565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03831661234e5760405162461bcd60e51b81526004018080602001828103825260258152602001806128996025913960400191505060405180910390fd5b6001600160a01b0382166123935760405162461bcd60e51b81526004018080602001828103825260238152602001806127776023913960400191505060405180910390fd5b61239e8383836120c9565b6123db81604051806060016040528060268152602001612804602691396001600160a01b0386166000908152600160205260409020549190611cfb565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461240a9082611888565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008215806124815750508181028183828161247e57fe5b04145b61091357600080fd5b60006124df826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125989092919063ffffffff16565b8051909150156120c9578080602001905160208110156124fe57600080fd5b50516120c95760405162461bcd60e51b815260040180806020018281038252602a8152602001806128e2602a913960400191505060405180910390fd5b600082821115612592576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60606125a784846000856125af565b949350505050565b6060824710156125f05760405162461bcd60e51b815260040180806020018281038252602681526020018061282a6026913960400191505060405180910390fd5b6125f98561270a565b61264a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126885780518252601f199092019160209182019101612669565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b50915091506126ff828286612710565b979650505050505050565b3b151590565b6060831561271f575081610abd565b82511561272f5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611d4f578181015183820152602001611d3756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094d6ffa3fc97074119d99fb0343be9fbc8322de1067e8abbc8e817c34876e2c164736f6c63430007060033

Deployed Bytecode Sourcemap

45987:7497:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47347:40;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47347:40:0;-1:-1:-1;;;;;47347:40:0;;:::i;:::-;;;;;;;;;;;;;;;;;;47173:70;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47173:70:0;;;;;;;;;;;;;;15876:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18022:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18022:169:0;;;;;;;;:::i;49610:288::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49610:288:0;-1:-1:-1;;;;;49610:288:0;;:::i;16975:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18673:321;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18673:321:0;;;;;;;;;;;;;;;;;:::i;16819:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19403:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19403:218:0;;;;;;;;:::i;52435:67::-;;;;;;;;;;;;;:::i;51928:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51928:155:0;-1:-1:-1;;;;;51928:155:0;;:::i;48782:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48782:248:0;-1:-1:-1;;;;;48782:248:0;;:::i;37618:86::-;;;;;;;;;;;;;:::i;47394:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47394:47:0;-1:-1:-1;;;;;47394:47:0;;:::i;48358:266::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48358:266:0;;:::i;49190:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49190:253:0;-1:-1:-1;;;;;49190:253:0;;:::i;17146:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17146:127:0;-1:-1:-1;;;;;17146:127:0;;:::i;2867:148::-;;;;;;;;;;;;;:::i;47496:29::-;;;;;;;;;;;;;:::i;52364:63::-;;;;;;;;;;;;;:::i;2216:87::-;;;;;;;;;;;;;:::i;16086:95::-;;;;;;;;;;;;;:::i;47448:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47448:41:0;-1:-1:-1;;;;;47448:41:0;;:::i;47592:31::-;;;;;;;;;;;;;:::i;20124:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20124:269:0;;;;;;;;:::i;17486:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17486:175:0;;;;;;;;:::i;52180:176::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52180:176:0;;:::i;47980:245::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47980:245:0;;:::i;17724:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17724:151:0;;;;;;;;;;:::i;52949:121::-;;;:::i;47301:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47301:39:0;-1:-1:-1;;;;;47301:39:0;;:::i;3170:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3170:244:0;-1:-1:-1;;;;;3170:244:0;;:::i;53078:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53078:203:0;-1:-1:-1;;;;;53078:203:0;;:::i;50053:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50053:258:0;-1:-1:-1;;;;;50053:258:0;;:::i;47347:40::-;;;;;;;;;;;;;;;:::o;47173:70::-;;;;;;-1:-1:-1;;;;;47173:70:0;;:::o;15876:91::-;15954:5;15947:12;;;;;;;;-1:-1:-1;;15947:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15921:13;;15947:12;;15954:5;;15947:12;;15954:5;15947:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15876:91;:::o;18022:169::-;18105:4;18122:39;18131:12;:10;:12::i;:::-;18145:7;18154:6;18122:8;:39::i;:::-;-1:-1:-1;18179:4:0;18022:169;;;;;:::o;49610:288::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49690:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;;::::1;;49686:155;;;-1:-1:-1::0;;;;;49739:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;49732:32;;-1:-1:-1;;49732:32:0::1;::::0;;49686:155:::1;;;-1:-1:-1::0;;;;;49797:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;:32;;-1:-1:-1;;49797:32:0::1;49825:4;49797:32;::::0;;49686:155:::1;49858:32;::::0;;-1:-1:-1;;;;;49858:32:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49610:288:::0;:::o;16975:108::-;17063:12;;16975:108;:::o;18673:321::-;18779:4;18796:36;18806:6;18814:9;18825:6;18796:9;:36::i;:::-;18843:121;18852:6;18860:12;:10;:12::i;:::-;18874:89;18912:6;18874:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18874:19:0;;;;;;:11;:19;;;;;;18894:12;:10;:12::i;:::-;-1:-1:-1;;;;;18874:33:0;;;;;;;;;;;;-1:-1:-1;18874:33:0;;;:89;:37;:89::i;:::-;18843:8;:121::i;:::-;-1:-1:-1;18982:4:0;18673:321;;;;;;:::o;16819:91::-;16893:9;;;;16819:91;:::o;19403:218::-;19491:4;19508:83;19517:12;:10;:12::i;:::-;19531:7;19540:50;19579:10;19540:11;:25;19552:12;:10;:12::i;:::-;-1:-1:-1;;;;;19540:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19540:25:0;;;:34;;;;;;;;;;;:38;:50::i;52435:67::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52484:10:::1;:8;:10::i;:::-;52435:67::o:0;51928:155::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52004:10:::1;:25:::0;;-1:-1:-1;;;;;52004:25:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;52045:30:::1;::::0;;52064:10;;;::::1;;52045:30:::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;51928:155:::0;:::o;48782:248::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48854:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;::::1;;48850:131;;;-1:-1:-1::0;;;;;48895:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;48888:24;;-1:-1:-1;;48888:24:0::1;::::0;;48850:131:::1;;;-1:-1:-1::0;;;;;48945:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;:24;;-1:-1:-1;;48945:24:0::1;48965:4;48945:24;::::0;;48850:131:::1;48998:24;::::0;;-1:-1:-1;;;;;48998:24:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;48782:248:::0;:::o;37618:86::-;37689:7;;;;;;;;37618:86::o;47394:47::-;;;;;;;;;;;;;;;:::o;48358:266::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48510:5:::1;48495:11;:20;;48487:50;;;::::0;;-1:-1:-1;;;48487:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48550:10;:24:::0;;;48590:26:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48358:266:::0;:::o;49190:253::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49263:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;;::::1;;49259:134;;;-1:-1:-1::0;;;;;49305:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;49298:25;;-1:-1:-1;;49298:25:0::1;::::0;;49259:134:::1;;;-1:-1:-1::0;;;;;49356:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;49356:25:0::1;49377:4;49356:25;::::0;;49259:134:::1;49410:25;::::0;;-1:-1:-1;;;;;49410:25:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49190:253:::0;:::o;17146:127::-;-1:-1:-1;;;;;17247:18:0;17220:7;17247:18;;;:9;:18;;;;;;;17146:127::o;2867:148::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2974:1:::1;2958:6:::0;;2937:40:::1;::::0;-1:-1:-1;;;;;2958:6:0;;::::1;::::0;2937:40:::1;::::0;2974:1;;2937:40:::1;3005:1;2988:19:::0;;;::::1;::::0;;2867:148::o;47496:29::-;;;;:::o;52364:63::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52411:8:::1;:6;:8::i;2216:87::-:0;2262:7;2289:6;-1:-1:-1;;;;;2289:6:0;2216:87;:::o;16086:95::-;16166:7;16159:14;;;;;;;;-1:-1:-1;;16159:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16133:13;;16159:14;;16166:7;;16159:14;;16166:7;16159:14;;;;;;;;;;;;;;;;;;;;;;;;47448:41;;;;;;;;;;;;;;;:::o;47592:31::-;;;;:::o;20124:269::-;20217:4;20234:129;20243:12;:10;:12::i;:::-;20257:7;20266:96;20305:15;20266:96;;;;;;;;;;;;;;;;;:11;:25;20278:12;:10;:12::i;:::-;-1:-1:-1;;;;;20266:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20266:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17486:175::-;17572:4;17589:42;17599:12;:10;:12::i;:::-;17613:9;17624:6;17589:9;:42::i;52180:176::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47288:6:::1;52268:5;52252:13;:11;:13::i;:::-;:21;:34;;52244:67;;;::::0;;-1:-1:-1;;;52244:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52322:26;52328:12;:10;:12::i;:::-;52342:5;52322;:26::i;:::-;52180:176:::0;:::o;47980:245::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48123:5:::1;48111:8;:17;;48103:47;;;::::0;;-1:-1:-1;;;48103:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48163:7;:18:::0;;;48197:20:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47980:245:::0;:::o;17724:151::-;-1:-1:-1;;;;;17840:18:0;;;17813:7;17840:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17724:151::o;52949:121::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53010:52:::1;53026:12;:10;:12::i;:::-;53040:21;53010:15;:52::i;47301:39::-:0;;;;;;;;;;;;;;;:::o;3170:244::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3259:22:0;::::1;3251:73;;;;-1:-1:-1::0;;;3251:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3361:6;::::0;;3340:38:::1;::::0;-1:-1:-1;;;;;3340:38:0;;::::1;::::0;3361:6;::::1;::::0;3340:38:::1;::::0;::::1;3389:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;3389:17:0;;;::::1;::::0;;;::::1;::::0;;3170:244::o;53078:203::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53154:119:::1;53196:12;:10;:12::i;:::-;53223:39;::::0;;;;;53256:4:::1;53223:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;53223:24:0;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53223:39:0;-1:-1:-1;;;;;53154:27:0;::::1;::::0;:119;:27:::1;:119::i;50053:258::-:0;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50127:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;::::1;;50123:137;;;-1:-1:-1::0;;;;;50170:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;50163:26;;-1:-1:-1;;50163:26:0::1;::::0;;50123:137:::1;;;-1:-1:-1::0;;;;;50222:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;50222:26:0::1;50244:4;50222:26;::::0;;50123:137:::1;50277:26;::::0;;-1:-1:-1;;;;;50277:26:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;50053:258:::0;:::o;9043:179::-;9101:7;9133:5;;;9157:6;;;;9149:46;;;;;-1:-1:-1;;;9149:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;753:106;841:10;753:106;:::o;23271:346::-;-1:-1:-1;;;;;23373:19:0;;23365:68;;;;-1:-1:-1;;;23365:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23452:21:0;;23444:68;;;;-1:-1:-1;;;23444:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23525:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23577:32;;;;;;;;;;;;;;;;;23271:346;;;:::o;50496:1331::-;37944:8;:6;:8::i;:::-;37943:9;37935:38;;;;;-1:-1:-1;;;37935:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50672:6:::1;50651:17;50661:6;50651:9;:17::i;:::-;:27;;50643:57;;;::::0;;-1:-1:-1;;;50643:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;50792:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;::::1;;50791:24;:55:::0;::::1;;;-1:-1:-1::0;;;;;;50820:26:0;::::1;;::::0;;;:15:::1;:26;::::0;;;;;::::1;;50819:27;50791:55;50769:117;;;::::0;;-1:-1:-1;;;50769:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;50904:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;;::::1;;50899:197;;51002:10;50966:32;50991:6;50966:20;50976:9;50966;:20::i;:::-;:24:::0;::::1;:32::i;:::-;:46;;50940:135;;;::::0;;-1:-1:-1;;;50940:135:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51170:17:0;::::1;51147:19;51170:17:::0;;;:9:::1;:17;::::0;;;;;::::1;;::::0;:41:::1;;-1:-1:-1::0;;;;;;51191:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;::::1;;51170:41;51169:92;;51254:7;;51169:92;;;51228:10;;51169:92;-1:-1:-1::0;;;;;51345:15:0;::::1;51322:19;51345:15:::0;;;:7:::1;:15;::::0;;;;;51147:114;;-1:-1:-1;51322:19:0;51345:15:::1;;::::0;:37:::1;;-1:-1:-1::0;;;;;;51364:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;::::1;;51345:37;51344:115;;51416:43;51432:6;51440:11;51453:5;51416:15;:43::i;:::-;51344:115;;;51399:1;51344:115;51322:137:::0;-1:-1:-1;51476:15:0;;51472:181:::1;;51508:26;51514:6;51522:11;51508:5;:26::i;:::-;51586:10;::::0;51562:48:::1;::::0;51578:6;;51586:10;;::::1;-1:-1:-1::0;;;;;51586:10:0::1;51598:11:::0;51562:15:::1;:48::i;:::-;51665:65;51681:6:::0;51689:9;51710:18:::1;:11:::0;51726:1:::1;51710:15;:18::i;:::-;51700:6;:29;51665:15;:65::i;:::-;51764:55;::::0;;-1:-1:-1;;;;;51764:55:0;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37984:1;;50496:1331:::0;;;:::o;11870:166::-;11956:7;11992:12;11984:6;;;;11976:29;;;;-1:-1:-1;;;11976:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12023:5:0;;;11870:166::o;38677:120::-;38221:8;:6;:8::i;:::-;38213:41;;;;;-1:-1:-1;;;38213:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38736:7:::1;:15:::0;;-1:-1:-1;;38736:15:0::1;::::0;;38767:22:::1;38776:12;:10;:12::i;:::-;38767:22;::::0;;-1:-1:-1;;;;;38767:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;38677:120::o:0;38418:118::-;37944:8;:6;:8::i;:::-;37943:9;37935:38;;;;;-1:-1:-1;;;37935:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38478:7:::1;:14:::0;;-1:-1:-1;;38478:14:0::1;;;::::0;;38508:20:::1;38515:12;:10;:12::i;21704:378::-:0;-1:-1:-1;;;;;21788:21:0;;21780:65;;;;;-1:-1:-1;;;21780:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21858:49;21887:1;21891:7;21900:6;21858:20;:49::i;:::-;21935:12;;:24;;21952:6;21935:16;:24::i;:::-;21920:12;:39;-1:-1:-1;;;;;21991:18:0;;;;;;:9;:18;;;;;;:30;;22014:6;21991:22;:30::i;:::-;-1:-1:-1;;;;;21970:18:0;;;;;;:9;:18;;;;;;;;:51;;;;22037:37;;;;;;;21970:18;;;;22037:37;;;;;;;;;;21704:378;;:::o;52773:168::-;52886:12;;;52846;52886;;;;;;;;;-1:-1:-1;;;;;52864:7:0;;;52879:5;;52864:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52864:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52845:54;;;52918:7;52910:23;;;;;-1:-1:-1;;;52910:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52773:168;;;:::o;33460:177::-;33570:58;;;-1:-1:-1;;;;;33570:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33593:23;33570:58;;;33543:86;;33563:5;;33543:19;:86::i;44567:113::-;44660:5;;;44655:16;;;;44647:25;;;;;39603:3868;39719:14;;;-1:-1:-1;;40235:1:0;40232;40225:20;40268:9;;;;-1:-1:-1;40320:13:0;;;40304:14;;;;40300:34;;-1:-1:-1;40420:10:0;40416:185;;40469:1;40455:11;:15;40447:24;;;;;;-1:-1:-1;40524:23:0;;;;-1:-1:-1;40576:13:0;;40416:185;40732:5;40718:11;:19;40710:28;;;;;;41023:17;41101:11;41098:1;41095;41088:25;41464:12;41479;;;:26;;41602:22;;;;;42425:1;42406;:15;;42405:21;;42656:17;;;42652:21;;42645:28;42715:17;;;42711:21;;42704:28;42775:17;;;42771:21;;42764:28;42835:17;;;42831:21;;42824:28;42895:17;;;42891:21;;42884:28;42956:17;;;42952:21;;;42945:28;41985:12;;;;41981:23;;;42006:1;41977:31;41234:20;;;41223:32;;;42038:12;;;;41278:21;;;;41735:16;;;;42029:21;;;;43428:11;;;;;-1:-1:-1;;39603:3868:0;;;;;:::o;22415:418::-;-1:-1:-1;;;;;22499:21:0;;22491:67;;;;-1:-1:-1;;;22491:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22571:49;22592:7;22609:1;22613:6;22571:20;:49::i;:::-;22654:68;22677:6;22654:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22654:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;22633:18:0;;;;;;:9;:18;;;;;:89;22748:12;;:24;;22765:6;22748:16;:24::i;:::-;22733:12;:39;22788:37;;;;;;;;22814:1;;-1:-1:-1;;;;;22788:37:0;;;;;;;;;;;;22415:418;;:::o;20883:539::-;-1:-1:-1;;;;;20989:20:0;;20981:70;;;;-1:-1:-1;;;20981:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21070:23:0;;21062:71;;;;-1:-1:-1;;;21062:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21146:47;21167:6;21175:9;21186:6;21146:20;:47::i;:::-;21226:71;21248:6;21226:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21226:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21206:17:0;;;;;;;:9;:17;;;;;;:91;;;;21331:20;;;;;;;:32;;21356:6;21331:24;:32::i;:::-;-1:-1:-1;;;;;21308:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;21379:35;;;;;;;21308:20;;21379:35;;;;;;;;;;;;;20883:539;;;:::o;45134:127::-;45192:9;45222:6;;;:30;;-1:-1:-1;;45237:5:0;;;45251:1;45246;45237:5;45246:1;45232:15;;;;;:20;45222:30;45214:39;;;;;35765:761;36189:23;36215:69;36243:4;36215:69;;;;;;;;;;;;;;;;;36223:5;-1:-1:-1;;;;;36215:27:0;;;:69;;;;;:::i;:::-;36299:17;;36189:95;;-1:-1:-1;36299:21:0;36295:224;;36441:10;36430:30;;;;;;;;;;;;;;;-1:-1:-1;36430:30:0;36422:85;;;;-1:-1:-1;;;36422:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9505:158;9563:7;9596:1;9591;:6;;9583:49;;;;;-1:-1:-1;;;9583:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9650:5:0;;;9505:158::o;28448:195::-;28551:12;28583:52;28605:6;28613:4;28619:1;28622:12;28583:21;:52::i;:::-;28576:59;28448:195;-1:-1:-1;;;;28448:195:0:o;29500:530::-;29627:12;29685:5;29660:21;:30;;29652:81;;;;-1:-1:-1;;;29652:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29752:18;29763:6;29752:10;:18::i;:::-;29744:60;;;;;-1:-1:-1;;;29744:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29878:12;29892:23;29919:6;-1:-1:-1;;;;;29919:11:0;29939:5;29947:4;29919:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29919:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29877:75;;;;29970:52;29988:7;29997:10;30009:12;29970:17;:52::i;:::-;29963:59;29500:530;-1:-1:-1;;;;;;;29500:530:0:o;25530:422::-;25897:20;25936:8;;;25530:422::o;32040:742::-;32155:12;32184:7;32180:595;;;-1:-1:-1;32215:10:0;32208:17;;32180:595;32329:17;;:21;32325:439;;32592:10;32586:17;32653:15;32640:10;32636:2;32632:19;32625:44;32540:148;32728:20;;-1:-1:-1;;;32728:20:0;;;;;;;;;;;;;;;;;32735:12;;32728:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://94d6ffa3fc97074119d99fb0343be9fbc8322de1067e8abbc8e817c34876e2c1
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.