ETH Price: $3,350.96 (+0.13%)
 

Overview

Max Total Supply

1,000,000,000 Charity

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,810,708.587952640595537768 Charity

Value
$0.00
0x8B72461BD9Cbd5b48864899AB9a19467923C9735
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Charity

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-07
*/

// SPDX-License-Identifier: MIT

// Twitter: https://x.com/EtherCharity_
// Telegram: https://t.me/EtherCharity
// Website: https://ether.charity/

// Ether Charity is a community coin created by several philanthropists. 
// 2 percent of the 4/4 tax goes directly to vitalik.eth. 
// The rest will go to charities decided by the community. 
// Our goal is to encourage the Crypto community to participate in charity.
/*

███████ ████████ ██   ██ ███████ ██████       ██████ ██   ██  █████  ██████  ██ ████████ ██    ██ 
██         ██    ██   ██ ██      ██   ██     ██      ██   ██ ██   ██ ██   ██ ██    ██     ██  ██  
█████      ██    ███████ █████   ██████      ██      ███████ ███████ ██████  ██    ██      ████   
██         ██    ██   ██ ██      ██   ██     ██      ██   ██ ██   ██ ██   ██ ██    ██       ██    
███████    ██    ██   ██ ███████ ██   ██      ██████ ██   ██ ██   ██ ██   ██ ██    ██       ██    
                                                                                  
 */



pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.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);
}


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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



// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.19;

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

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


pragma solidity ^0.8.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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.19;


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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity ^0.8.26;
contract Charity is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    uint256 public totalCharity = 0;

    bool private swapping;

    address public treasuryWallet;
    address public vitalikWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;

    uint256 public tokensForTreasury;


    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapRouter(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event treasuryWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Ether Charity", "Charity") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

        excludeFromMaxTransaction(address(_uniswapRouter), true);
        uniswapRouter = _uniswapRouter;

        uint256 _buyTreasuryFee = 4;
        uint256 _sellTreasuryFee = 4;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; 
        maxWallet = 20_000_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyTreasuryFee = _buyTreasuryFee;
        buyTotalFees = buyTreasuryFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellTotalFees = sellTreasuryFee;

        treasuryWallet = address(0x182e7e70E6A66B7eE14DaE3c66B6fd4ece67DcDd);
        vitalikWallet = address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);

        _mint(tx.origin, (totalSupply / 10) * 9);
        _mint(vitalikWallet, (totalSupply / 10));
    }

    receive() external payable {}

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory())
            .createPair(address(this), uniswapRouter.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyTotalFees = buyTreasuryFee;
    }

    function updateSellFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellTotalFees = sellTreasuryFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTreasuryWallet(address newWallet) external onlyOwner {
        emit treasuryWalletUpdated(newWallet, treasuryWallet);
        treasuryWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

        _approve(address(this), address(uniswapRouter), tokenAmount);

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapRouter), tokenAmount);

        // add the liquidity
        uniswapRouter.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTreasury;
        bool success;
        bool success2;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }


        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        tokensForTreasury = 0;
        totalCharity += ethBalance;

        (success, ) = address(treasuryWallet).call{value: ethBalance / 2}("");
        (success2, ) = address(vitalikWallet).call{value: ethBalance / 2}("");
    }

    function withdrawETH(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vitalikWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040525f600755600d805463ffffffff19166001179055348015610023575f80fd5b506040518060400160405280600d81526020016c4574686572204368617269747960981b815250604051806040016040528060078152602001664368617269747960c81b815250816003908161007991906104dd565b50600461008682826104dd565b505050610098326101f960201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b881600161024a565b6001600160a01b0381166080526a108b2a2c28029094000000600a819055600c556004806b033b2e3c9fd0803ce80000006127106100f78260056105ab565b61010191906105c8565b600b556010839055600f839055601282905560118290556008805474182e7e70e6a66b7ee14dae3c66b6fd4ece67dcdd00610100600160a81b0319909116179055600980546001600160a01b03191673d8da6bf26964af9d7eed9e03e53415d37aa9604517905561018461017d6005546001600160a01b031690565b60016102c0565b61018f3060016102c0565b6101ab6101a46005546001600160a01b031690565b600161024a565b6101b630600161024a565b6101d5326101c5600a846105c8565b6101d09060096105ab565b610365565b6009546101f0906001600160a01b03166101d0600a846105c8565b505050506105fa565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146102965760405162461bcd60e51b815260206004820181905260248201525f8051602061312e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146103075760405162461bcd60e51b815260206004820181905260248201525f8051602061312e833981519152604482015260640161028d565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166103bb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161028d565b8060025f8282546103cc91906105e7565b90915550506001600160a01b0382165f90815260208190526040812080548392906103f89084906105e7565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061046e57607f821691505b60208210810361048c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561044157805f5260205f20601f840160051c810160208510156104b75750805b601f840160051c820191505b818110156104d6575f81556001016104c3565b5050505050565b81516001600160401b038111156104f6576104f6610446565b61050a81610504845461045a565b84610492565b6020601f82116001811461053c575f83156105255750848201515b5f19600385901b1c1916600184901b1784556104d6565b5f84815260208120601f198516915b8281101561056b578785015182556020948501946001909201910161054b565b508482101561058857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105c2576105c2610597565b92915050565b5f826105e257634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156105c2576105c2610597565b608051612af96106355f395f818161065a015281816111f1015281816112800152818161266201528181612719015261276e0152612af95ff3fe60806040526004361061033d575f3560e01c806375e3661e116101b2578063c18bc195116100f2578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610956578063f8b45b0514610975578063f9f92be414610903578063fe575a871461098a575f80fd5b8063e19b282314610903578063e2f4560514610922578063eba4c33314610937575f80fd5b8063d257b34f116100cd578063d257b34f14610876578063d608b3b214610895578063d85ba063146108aa578063dd62ed3e146108bf575f80fd5b8063c18bc1951461082d578063c8c8ebe41461084c578063cc2ffe7c14610861575f80fd5b80639a7a23d61161015d578063a9059cbb11610138578063a9059cbb146107a3578063b62496f5146107c2578063bbc0c742146107f0578063c02466681461080e575f80fd5b80639a7a23d6146107515780639e78fb4f14610770578063a457c2d714610784575f80fd5b80638da5cb5b1161018d5780638da5cb5b14610701578063924de9b71461071e57806395d89b411461073d575f80fd5b806375e3661e146106af578063809d458d146106ce5780638a8c523c146106ed575f80fd5b80635c068a8c1161027d5780636ddd17131161022857806371fc46881161020357806371fc46881461062a578063735de9f714610649578063751039fc1461067c5780637571336a14610690575f80fd5b80636ddd1713146105c357806370a08231146105e2578063715018a614610616575f80fd5b80636a486a8e116102585780636a486a8e1461057a5780636a964e6b1461058f5780636b2fb124146105ae575f80fd5b80635c068a8c146105325780635f18936114610547578063690d83201461055b575f80fd5b8063313ce567116102e85780634626402b116102c35780634626402b1461048757806349bd5a5e146104c35780634a62bb65146104e25780634fbee193146104fb575f80fd5b8063313ce5671461042d57806339509351146104485780633dc599ff14610467575f80fd5b806318160ddd1161031857806318160ddd146103cf578063203e727e146103ed57806323b872dd1461040e575f80fd5b806306fdde0314610348578063095ea7b31461037257806310d5de53146103a1575f80fd5b3661034457005b5f80fd5b348015610353575f80fd5b5061035c6109c1565b60405161036991906127e7565b60405180910390f35b34801561037d575f80fd5b5061039161038c366004612830565b610a51565b6040519015158152602001610369565b3480156103ac575f80fd5b506103916103bb36600461285a565b60156020525f908152604090205460ff1681565b3480156103da575f80fd5b506002545b604051908152602001610369565b3480156103f8575f80fd5b5061040c610407366004612875565b610a67565b005b348015610419575f80fd5b5061039161042836600461288c565b610b74565b348015610438575f80fd5b5060405160128152602001610369565b348015610453575f80fd5b50610391610462366004612830565b610c31565b348015610472575f80fd5b50600d54610391906301000000900460ff1681565b348015610492575f80fd5b506008546104ab9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610369565b3480156104ce575f80fd5b506006546104ab906001600160a01b031681565b3480156104ed575f80fd5b50600d546103919060ff1681565b348015610506575f80fd5b5061039161051536600461285a565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561053d575f80fd5b506103df60105481565b348015610552575f80fd5b5061040c610c6c565b348015610566575f80fd5b5061040c61057536600461285a565b610cc8565b348015610585575f80fd5b506103df60115481565b34801561059a575f80fd5b506009546104ab906001600160a01b031681565b3480156105b9575f80fd5b506103df60125481565b3480156105ce575f80fd5b50600d546103919062010000900460ff1681565b3480156105ed575f80fd5b506103df6105fc36600461285a565b6001600160a01b03165f9081526020819052604090205490565b348015610621575f80fd5b5061040c610d6e565b348015610635575f80fd5b5061040c610644366004612875565b610dc0565b348015610654575f80fd5b506104ab7f000000000000000000000000000000000000000000000000000000000000000081565b348015610687575f80fd5b50610391610e11565b34801561069b575f80fd5b5061040c6106aa3660046128d9565b610e6a565b3480156106ba575f80fd5b5061040c6106c936600461285a565b610edb565b3480156106d9575f80fd5b5061040c6106e836600461285a565b610f42565b3480156106f8575f80fd5b5061040c611007565b34801561070c575f80fd5b506005546001600160a01b03166104ab565b348015610729575f80fd5b5061040c61073836600461290c565b611061565b348015610748575f80fd5b5061035c6110c4565b34801561075c575f80fd5b5061040c61076b3660046128d9565b6110d3565b34801561077b575f80fd5b5061040c6111a8565b34801561078f575f80fd5b5061039161079e366004612830565b6113d2565b3480156107ae575f80fd5b506103916107bd366004612830565b611482565b3480156107cd575f80fd5b506103916107dc36600461285a565b60166020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600d5461039190610100900460ff1681565b348015610819575f80fd5b5061040c6108283660046128d9565b61148e565b348015610838575f80fd5b5061040c610847366004612875565b611533565b348015610857575f80fd5b506103df600a5481565b34801561086c575f80fd5b506103df60135481565b348015610881575f80fd5b50610391610890366004612875565b61163a565b3480156108a0575f80fd5b506103df60075481565b3480156108b5575f80fd5b506103df600f5481565b3480156108ca575f80fd5b506103df6108d9366004612925565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561090e575f80fd5b5061040c61091d36600461285a565b611691565b34801561092d575f80fd5b506103df600b5481565b348015610942575f80fd5b5061040c610951366004612875565b611828565b348015610961575f80fd5b5061040c61097036600461285a565b611879565b348015610980575f80fd5b506103df600c5481565b348015610995575f80fd5b506103916109a436600461285a565b6001600160a01b03165f908152600e602052604090205460ff1690565b6060600380546109d09061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc9061295c565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f610a5d338484611948565b5060015b92915050565b6005546001600160a01b03163314610ab35760405162461bcd60e51b815260206004820181905260248201525f80516020612aa483398151915260448201526064015b60405180910390fd5b670de0b6b3a76400006103e8610ac860025490565b610ad39060056129a8565b610add91906129bf565b610ae791906129bf565b811015610b5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610aaa565b610b6e81670de0b6b3a76400006129a8565b600a5550565b5f610b80848484611a9f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610c195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610aaa565b610c268533858403611948565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a5d918590610c679086906129de565b611948565b6005546001600160a01b03163314610cb35760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d805463ff00000019166301000000179055565b6005546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610d58576040519150601f19603f3d011682016040523d82523d5f602084013e610d5d565b606091505b5050905080610d6a575f80fd5b5050565b6005546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b610dbe5f612215565b565b6005546001600160a01b03163314610e075760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6010819055600f55565b6005545f906001600160a01b03163314610e5a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b50600d805460ff19169055600190565b6005546001600160a01b03163314610eb15760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f225760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03165f908152600e60205260409020805460ff19169055565b6005546001600160a01b03163314610f895760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6008546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600880546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6005546001600160a01b0316331461104e5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d805462ffff00191662010100179055565b6005546001600160a01b031633146110a85760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d8054911515620100000262ff000019909216919091179055565b6060600480546109d09061295c565b6005546001600160a01b0316331461111a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6006546001600160a01b039081169083160361119e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610aaa565b610d6a8282612273565b6005546001600160a01b031633146111ef5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061126f91906129f1565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fe91906129f1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061138491906129f1565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039290921691821790556113bb906001610e6a565b600654610dbe906001600160a01b03166001612273565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561146b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6114783385858403611948565b5060019392505050565b5f610a5d338484611a9f565b6005546001600160a01b031633146114d55760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461157a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b670de0b6b3a76400006103e861158f60025490565b61159a90600a6129a8565b6115a491906129bf565b6115ae91906129bf565b8110156116225760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b61163481670de0b6b3a76400006129a8565b600c5550565b6005545f906001600160a01b031633146116835760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b50600b81905560015b919050565b6005546001600160a01b031633146116d85760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d546301000000900460ff16156117585760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6006546001600160a01b0382811691161480159061179357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6118055760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b03165f908152600e60205260409020805460ff19166001179055565b6005546001600160a01b0316331461186f5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6012819055601155565b6005546001600160a01b031633146118c05760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03811661193c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aaa565b61194581612215565b50565b6001600160a01b0383166119c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b035760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610aaa565b6001600160a01b038216611b655760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610aaa565b6001600160a01b0383165f908152600e602052604090205460ff1615611bcd5760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610aaa565b6001600160a01b0382165f908152600e602052604090205460ff1615611c355760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610aaa565b805f03611c4c57611c4783835f6122c6565b505050565b600d5460ff1615611fc5576005546001600160a01b03848116911614801590611c8357506005546001600160a01b03838116911614155b8015611c9757506001600160a01b03821615155b8015611ca6575060085460ff16155b15611fc557600d54610100900460ff16611d43576001600160a01b0383165f9081526014602052604090205460ff1680611cf757506001600160a01b0382165f9081526014602052604090205460ff165b611d435760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610aaa565b6001600160a01b0383165f9081526016602052604090205460ff168015611d8257506001600160a01b0382165f9081526015602052604090205460ff16155b15611e7757600a54811115611dff5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610aaa565b600c546001600160a01b0383165f90815260208190526040902054611e2490836129de565b1115611e725760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610aaa565b611fc5565b6001600160a01b0382165f9081526016602052604090205460ff168015611eb657506001600160a01b0383165f9081526015602052604090205460ff16155b15611f3357600a54811115611e725760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610aaa565b6001600160a01b0382165f9081526015602052604090205460ff16611fc557600c546001600160a01b0383165f90815260208190526040902054611f7790836129de565b1115611fc55760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610aaa565b305f90815260208190526040902054600b5481108015908190611ff05750600d5462010000900460ff165b8015611fff575060085460ff16155b801561202357506001600160a01b0385165f9081526016602052604090205460ff16155b801561204757506001600160a01b0385165f9081526014602052604090205460ff16155b801561206b57506001600160a01b0384165f9081526014602052604090205460ff16155b15612090576008805460ff191660011790556120856124aa565b6008805460ff191690555b6008546001600160a01b0386165f9081526014602052604090205460ff918216159116806120d557506001600160a01b0385165f9081526014602052604090205460ff165b156120dd57505f5b5f8115612201576001600160a01b0386165f9081526016602052604090205460ff16801561210c57505f601154115b1561216957612131606461212b601154886125f090919063ffffffff16565b90612602565b90506011546012548261214491906129a8565b61214e91906129bf565b60135f82825461215e91906129de565b909155506121e39050565b6001600160a01b0387165f9081526016602052604090205460ff16801561219157505f600f54115b156121e3576121b0606461212b600f54886125f090919063ffffffff16565b9050600f54601054826121c391906129a8565b6121cd91906129bf565b60135f8282546121dd91906129de565b90915550505b80156121f4576121f48730836122c6565b6121fe8186612a0c565b94505b61220c8787876122c6565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661232a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610aaa565b6001600160a01b03821661238c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610aaa565b6001600160a01b0383165f908152602081905260409020548181101561241a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906124509084906129de565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161249c91815260200190565b60405180910390a350505050565b305f908152602081905260408120546013549091808315806124ca575082155b156124d55750505050565b600b546124e39060146129a8565b8411156124fb57600b546124f89060146129a8565b93505b83476125068261260d565b5f61251147836127dc565b90505f6013819055508060075f82825461252b91906129de565b909155505060085461010090046001600160a01b031661254c6002836129bf565b6040515f81818185875af1925050503d805f8114612585576040519150601f19603f3d011682016040523d82523d5f602084013e61258a565b606091505b50506009549095506001600160a01b03166125a66002836129bf565b6040515f81818185875af1925050503d805f81146125df576040519150601f19603f3d011682016040523d82523d5f602084013e6125e4565b606091505b50505050505050505050565b5f6125fb82846129a8565b9392505050565b5f6125fb82846129bf565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061264057612640612a1f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e091906129f1565b816001815181106126f3576126f3612a1f565b60200260200101906001600160a01b031690816001600160a01b03168152505061273e307f000000000000000000000000000000000000000000000000000000000000000084611948565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906127ab9085905f90869030904290600401612a33565b5f604051808303815f87803b1580156127c2575f80fd5b505af11580156127d4573d5f803e3d5ffd5b505050505050565b5f6125fb8284612a0c565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611945575f80fd5b5f8060408385031215612841575f80fd5b823561284c8161281c565b946020939093013593505050565b5f6020828403121561286a575f80fd5b81356125fb8161281c565b5f60208284031215612885575f80fd5b5035919050565b5f805f6060848603121561289e575f80fd5b83356128a98161281c565b925060208401356128b98161281c565b929592945050506040919091013590565b8035801515811461168c575f80fd5b5f80604083850312156128ea575f80fd5b82356128f58161281c565b9150612903602084016128ca565b90509250929050565b5f6020828403121561291c575f80fd5b6125fb826128ca565b5f8060408385031215612936575f80fd5b82356129418161281c565b915060208301356129518161281c565b809150509250929050565b600181811c9082168061297057607f821691505b60208210810361298e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a6157610a61612994565b5f826129d957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a6157610a61612994565b5f60208284031215612a01575f80fd5b81516125fb8161281c565b81810381811115610a6157610a61612994565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015612a835783516001600160a01b0316835260209384019390920191600101612a5c565b50506001600160a01b03959095166060840152505060800152939250505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122090a2c68ba1636b0e3af6641a94e72a6c7023124d35f1f3d34d21500f8d0890d864736f6c634300081a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061033d575f3560e01c806375e3661e116101b2578063c18bc195116100f2578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610956578063f8b45b0514610975578063f9f92be414610903578063fe575a871461098a575f80fd5b8063e19b282314610903578063e2f4560514610922578063eba4c33314610937575f80fd5b8063d257b34f116100cd578063d257b34f14610876578063d608b3b214610895578063d85ba063146108aa578063dd62ed3e146108bf575f80fd5b8063c18bc1951461082d578063c8c8ebe41461084c578063cc2ffe7c14610861575f80fd5b80639a7a23d61161015d578063a9059cbb11610138578063a9059cbb146107a3578063b62496f5146107c2578063bbc0c742146107f0578063c02466681461080e575f80fd5b80639a7a23d6146107515780639e78fb4f14610770578063a457c2d714610784575f80fd5b80638da5cb5b1161018d5780638da5cb5b14610701578063924de9b71461071e57806395d89b411461073d575f80fd5b806375e3661e146106af578063809d458d146106ce5780638a8c523c146106ed575f80fd5b80635c068a8c1161027d5780636ddd17131161022857806371fc46881161020357806371fc46881461062a578063735de9f714610649578063751039fc1461067c5780637571336a14610690575f80fd5b80636ddd1713146105c357806370a08231146105e2578063715018a614610616575f80fd5b80636a486a8e116102585780636a486a8e1461057a5780636a964e6b1461058f5780636b2fb124146105ae575f80fd5b80635c068a8c146105325780635f18936114610547578063690d83201461055b575f80fd5b8063313ce567116102e85780634626402b116102c35780634626402b1461048757806349bd5a5e146104c35780634a62bb65146104e25780634fbee193146104fb575f80fd5b8063313ce5671461042d57806339509351146104485780633dc599ff14610467575f80fd5b806318160ddd1161031857806318160ddd146103cf578063203e727e146103ed57806323b872dd1461040e575f80fd5b806306fdde0314610348578063095ea7b31461037257806310d5de53146103a1575f80fd5b3661034457005b5f80fd5b348015610353575f80fd5b5061035c6109c1565b60405161036991906127e7565b60405180910390f35b34801561037d575f80fd5b5061039161038c366004612830565b610a51565b6040519015158152602001610369565b3480156103ac575f80fd5b506103916103bb36600461285a565b60156020525f908152604090205460ff1681565b3480156103da575f80fd5b506002545b604051908152602001610369565b3480156103f8575f80fd5b5061040c610407366004612875565b610a67565b005b348015610419575f80fd5b5061039161042836600461288c565b610b74565b348015610438575f80fd5b5060405160128152602001610369565b348015610453575f80fd5b50610391610462366004612830565b610c31565b348015610472575f80fd5b50600d54610391906301000000900460ff1681565b348015610492575f80fd5b506008546104ab9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610369565b3480156104ce575f80fd5b506006546104ab906001600160a01b031681565b3480156104ed575f80fd5b50600d546103919060ff1681565b348015610506575f80fd5b5061039161051536600461285a565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561053d575f80fd5b506103df60105481565b348015610552575f80fd5b5061040c610c6c565b348015610566575f80fd5b5061040c61057536600461285a565b610cc8565b348015610585575f80fd5b506103df60115481565b34801561059a575f80fd5b506009546104ab906001600160a01b031681565b3480156105b9575f80fd5b506103df60125481565b3480156105ce575f80fd5b50600d546103919062010000900460ff1681565b3480156105ed575f80fd5b506103df6105fc36600461285a565b6001600160a01b03165f9081526020819052604090205490565b348015610621575f80fd5b5061040c610d6e565b348015610635575f80fd5b5061040c610644366004612875565b610dc0565b348015610654575f80fd5b506104ab7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610687575f80fd5b50610391610e11565b34801561069b575f80fd5b5061040c6106aa3660046128d9565b610e6a565b3480156106ba575f80fd5b5061040c6106c936600461285a565b610edb565b3480156106d9575f80fd5b5061040c6106e836600461285a565b610f42565b3480156106f8575f80fd5b5061040c611007565b34801561070c575f80fd5b506005546001600160a01b03166104ab565b348015610729575f80fd5b5061040c61073836600461290c565b611061565b348015610748575f80fd5b5061035c6110c4565b34801561075c575f80fd5b5061040c61076b3660046128d9565b6110d3565b34801561077b575f80fd5b5061040c6111a8565b34801561078f575f80fd5b5061039161079e366004612830565b6113d2565b3480156107ae575f80fd5b506103916107bd366004612830565b611482565b3480156107cd575f80fd5b506103916107dc36600461285a565b60166020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600d5461039190610100900460ff1681565b348015610819575f80fd5b5061040c6108283660046128d9565b61148e565b348015610838575f80fd5b5061040c610847366004612875565b611533565b348015610857575f80fd5b506103df600a5481565b34801561086c575f80fd5b506103df60135481565b348015610881575f80fd5b50610391610890366004612875565b61163a565b3480156108a0575f80fd5b506103df60075481565b3480156108b5575f80fd5b506103df600f5481565b3480156108ca575f80fd5b506103df6108d9366004612925565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561090e575f80fd5b5061040c61091d36600461285a565b611691565b34801561092d575f80fd5b506103df600b5481565b348015610942575f80fd5b5061040c610951366004612875565b611828565b348015610961575f80fd5b5061040c61097036600461285a565b611879565b348015610980575f80fd5b506103df600c5481565b348015610995575f80fd5b506103916109a436600461285a565b6001600160a01b03165f908152600e602052604090205460ff1690565b6060600380546109d09061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc9061295c565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f610a5d338484611948565b5060015b92915050565b6005546001600160a01b03163314610ab35760405162461bcd60e51b815260206004820181905260248201525f80516020612aa483398151915260448201526064015b60405180910390fd5b670de0b6b3a76400006103e8610ac860025490565b610ad39060056129a8565b610add91906129bf565b610ae791906129bf565b811015610b5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610aaa565b610b6e81670de0b6b3a76400006129a8565b600a5550565b5f610b80848484611a9f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610c195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610aaa565b610c268533858403611948565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a5d918590610c679086906129de565b611948565b6005546001600160a01b03163314610cb35760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d805463ff00000019166301000000179055565b6005546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610d58576040519150601f19603f3d011682016040523d82523d5f602084013e610d5d565b606091505b5050905080610d6a575f80fd5b5050565b6005546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b610dbe5f612215565b565b6005546001600160a01b03163314610e075760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6010819055600f55565b6005545f906001600160a01b03163314610e5a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b50600d805460ff19169055600190565b6005546001600160a01b03163314610eb15760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f225760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03165f908152600e60205260409020805460ff19169055565b6005546001600160a01b03163314610f895760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6008546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600880546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6005546001600160a01b0316331461104e5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d805462ffff00191662010100179055565b6005546001600160a01b031633146110a85760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d8054911515620100000262ff000019909216919091179055565b6060600480546109d09061295c565b6005546001600160a01b0316331461111a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6006546001600160a01b039081169083160361119e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610aaa565b610d6a8282612273565b6005546001600160a01b031633146111ef5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061126f91906129f1565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fe91906129f1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061138491906129f1565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039290921691821790556113bb906001610e6a565b600654610dbe906001600160a01b03166001612273565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561146b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6114783385858403611948565b5060019392505050565b5f610a5d338484611a9f565b6005546001600160a01b031633146114d55760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461157a5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b670de0b6b3a76400006103e861158f60025490565b61159a90600a6129a8565b6115a491906129bf565b6115ae91906129bf565b8110156116225760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b61163481670de0b6b3a76400006129a8565b600c5550565b6005545f906001600160a01b031633146116835760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b50600b81905560015b919050565b6005546001600160a01b031633146116d85760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b600d546301000000900460ff16156117585760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6006546001600160a01b0382811691161480159061179357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6118055760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b03165f908152600e60205260409020805460ff19166001179055565b6005546001600160a01b0316331461186f5760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6012819055601155565b6005546001600160a01b031633146118c05760405162461bcd60e51b815260206004820181905260248201525f80516020612aa48339815191526044820152606401610aaa565b6001600160a01b03811661193c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aaa565b61194581612215565b50565b6001600160a01b0383166119c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b035760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610aaa565b6001600160a01b038216611b655760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610aaa565b6001600160a01b0383165f908152600e602052604090205460ff1615611bcd5760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610aaa565b6001600160a01b0382165f908152600e602052604090205460ff1615611c355760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610aaa565b805f03611c4c57611c4783835f6122c6565b505050565b600d5460ff1615611fc5576005546001600160a01b03848116911614801590611c8357506005546001600160a01b03838116911614155b8015611c9757506001600160a01b03821615155b8015611ca6575060085460ff16155b15611fc557600d54610100900460ff16611d43576001600160a01b0383165f9081526014602052604090205460ff1680611cf757506001600160a01b0382165f9081526014602052604090205460ff165b611d435760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610aaa565b6001600160a01b0383165f9081526016602052604090205460ff168015611d8257506001600160a01b0382165f9081526015602052604090205460ff16155b15611e7757600a54811115611dff5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610aaa565b600c546001600160a01b0383165f90815260208190526040902054611e2490836129de565b1115611e725760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610aaa565b611fc5565b6001600160a01b0382165f9081526016602052604090205460ff168015611eb657506001600160a01b0383165f9081526015602052604090205460ff16155b15611f3357600a54811115611e725760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610aaa565b6001600160a01b0382165f9081526015602052604090205460ff16611fc557600c546001600160a01b0383165f90815260208190526040902054611f7790836129de565b1115611fc55760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610aaa565b305f90815260208190526040902054600b5481108015908190611ff05750600d5462010000900460ff165b8015611fff575060085460ff16155b801561202357506001600160a01b0385165f9081526016602052604090205460ff16155b801561204757506001600160a01b0385165f9081526014602052604090205460ff16155b801561206b57506001600160a01b0384165f9081526014602052604090205460ff16155b15612090576008805460ff191660011790556120856124aa565b6008805460ff191690555b6008546001600160a01b0386165f9081526014602052604090205460ff918216159116806120d557506001600160a01b0385165f9081526014602052604090205460ff165b156120dd57505f5b5f8115612201576001600160a01b0386165f9081526016602052604090205460ff16801561210c57505f601154115b1561216957612131606461212b601154886125f090919063ffffffff16565b90612602565b90506011546012548261214491906129a8565b61214e91906129bf565b60135f82825461215e91906129de565b909155506121e39050565b6001600160a01b0387165f9081526016602052604090205460ff16801561219157505f600f54115b156121e3576121b0606461212b600f54886125f090919063ffffffff16565b9050600f54601054826121c391906129a8565b6121cd91906129bf565b60135f8282546121dd91906129de565b90915550505b80156121f4576121f48730836122c6565b6121fe8186612a0c565b94505b61220c8787876122c6565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661232a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610aaa565b6001600160a01b03821661238c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610aaa565b6001600160a01b0383165f908152602081905260409020548181101561241a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610aaa565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906124509084906129de565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161249c91815260200190565b60405180910390a350505050565b305f908152602081905260408120546013549091808315806124ca575082155b156124d55750505050565b600b546124e39060146129a8565b8411156124fb57600b546124f89060146129a8565b93505b83476125068261260d565b5f61251147836127dc565b90505f6013819055508060075f82825461252b91906129de565b909155505060085461010090046001600160a01b031661254c6002836129bf565b6040515f81818185875af1925050503d805f8114612585576040519150601f19603f3d011682016040523d82523d5f602084013e61258a565b606091505b50506009549095506001600160a01b03166125a66002836129bf565b6040515f81818185875af1925050503d805f81146125df576040519150601f19603f3d011682016040523d82523d5f602084013e6125e4565b606091505b50505050505050505050565b5f6125fb82846129a8565b9392505050565b5f6125fb82846129bf565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061264057612640612a1f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e091906129f1565b816001815181106126f3576126f3612a1f565b60200260200101906001600160a01b031690816001600160a01b03168152505061273e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611948565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906127ab9085905f90869030904290600401612a33565b5f604051808303815f87803b1580156127c2575f80fd5b505af11580156127d4573d5f803e3d5ffd5b505050505050565b5f6125fb8284612a0c565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611945575f80fd5b5f8060408385031215612841575f80fd5b823561284c8161281c565b946020939093013593505050565b5f6020828403121561286a575f80fd5b81356125fb8161281c565b5f60208284031215612885575f80fd5b5035919050565b5f805f6060848603121561289e575f80fd5b83356128a98161281c565b925060208401356128b98161281c565b929592945050506040919091013590565b8035801515811461168c575f80fd5b5f80604083850312156128ea575f80fd5b82356128f58161281c565b9150612903602084016128ca565b90509250929050565b5f6020828403121561291c575f80fd5b6125fb826128ca565b5f8060408385031215612936575f80fd5b82356129418161281c565b915060208301356129518161281c565b809150509250929050565b600181811c9082168061297057607f821691505b60208210810361298e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a6157610a61612994565b5f826129d957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a6157610a61612994565b5f60208284031215612a01575f80fd5b81516125fb8161281c565b81810381811115610a6157610a61612994565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015612a835783516001600160a01b0316835260209384019390920191600101612a5c565b50506001600160a01b03959095166060840152505060800152939250505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122090a2c68ba1636b0e3af6641a94e72a6c7023124d35f1f3d34d21500f8d0890d864736f6c634300081a0033

Deployed Bytecode Sourcemap

29300:13262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16827:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18994:169;;;;;;;;;;-1:-1:-1;18994:169:0;;;;;:::i;:::-;;:::i;:::-;;;1133:14:1;;1126:22;1108:41;;1096:2;1081:18;18994:169:0;968:187:1;30296:63:0;;;;;;;;;;-1:-1:-1;30296:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17947:108;;;;;;;;;;-1:-1:-1;18035:12:0;;17947:108;;;1558:25:1;;;1546:2;1531:18;17947:108:0;1412:177:1;32964:275:0;;;;;;;;;;-1:-1:-1;32964:275:0;;;;;:::i;:::-;;:::i;:::-;;19645:492;;;;;;;;;;-1:-1:-1;19645:492:0;;;;;:::i;:::-;;:::i;17789:93::-;;;;;;;;;;-1:-1:-1;17789:93:0;;17872:2;2480:36:1;;2468:2;2453:18;17789:93:0;2338:184:1;20546:215:0;;;;;;;;;;-1:-1:-1;20546:215:0;;;;;:::i;:::-;;:::i;29848:38::-;;;;;;;;;;-1:-1:-1;29848:38:0;;;;;;;;;;;29540:29;;;;;;;;;;-1:-1:-1;29540:29:0;;;;;;;-1:-1:-1;;;;;29540:29:0;;;;;;-1:-1:-1;;;;;2691:55:1;;;2673:74;;2661:2;2646:18;29540:29:0;2527:226:1;29433:28:0;;;;;;;;;;-1:-1:-1;29433:28:0;;;;-1:-1:-1;;;;;29433:28:0;;;29728:33;;;;;;;;;;-1:-1:-1;29728:33:0;;;;;;;;35122:126;;;;;;;;;;-1:-1:-1;35122:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35212:28:0;35188:4;35212:28;;;:19;:28;;;;;;;;;35122:126;30029:29;;;;;;;;;;;;;;;;41351:90;;;;;;;;;;;;;:::i;41106:191::-;;;;;;;;;;-1:-1:-1;41106:191:0;;;;;:::i;:::-;;:::i;30067:28::-;;;;;;;;;;;;;;;;29576;;;;;;;;;;-1:-1:-1;29576:28:0;;;;-1:-1:-1;;;;;29576:28:0;;;30102:30;;;;;;;;;;;;;;;;29808:31;;;;;;;;;;-1:-1:-1;29808:31:0;;;;;;;;;;;18118:127;;;;;;;;;;-1:-1:-1;18118:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;18219:18:0;18192:7;18219:18;;;;;;;;;;;;18118:127;28459:103;;;;;;;;;;;;;:::i;33883:168::-;;;;;;;;;;-1:-1:-1;33883:168:0;;;;;:::i;:::-;;:::i;29377:49::-;;;;;;;;;;;;;;;32575:121;;;;;;;;;;;;;:::i;33512:167::-;;;;;;;;;;-1:-1:-1;33512:167:0;;;;;:::i;:::-;;:::i;42461:98::-;;;;;;;;;;-1:-1:-1;42461:98:0;;;;;:::i;:::-;;:::i;34937:177::-;;;;;;;;;;-1:-1:-1;34937:177:0;;;;;:::i;:::-;;:::i;32411:112::-;;;;;;;;;;;;;:::i;27808:87::-;;;;;;;;;;-1:-1:-1;27881:6:0;;-1:-1:-1;;;;;27881:6:0;27808:87;;33775:100;;;;;;;;;;-1:-1:-1;33775:100:0;;;;;:::i;:::-;;:::i;17046:104::-;;;;;;;;;;;;;:::i;34429:304::-;;;;;;;;;;-1:-1:-1;34429:304:0;;;;;:::i;:::-;;:::i;32088:315::-;;;;;;;;;;;;;:::i;21264:413::-;;;;;;;;;;-1:-1:-1;21264:413:0;;;;;:::i;:::-;;:::i;18458:175::-;;;;;;;;;;-1:-1:-1;18458:175:0;;;;;:::i;:::-;;:::i;30368:57::-;;;;;;;;;;-1:-1:-1;30368:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29768:33;;;;;;;;;;-1:-1:-1;29768:33:0;;;;;;;;;;;34239:182;;;;;;;;;;-1:-1:-1;34239:182:0;;;;;:::i;:::-;;:::i;33247:257::-;;;;;;;;;;-1:-1:-1;33247:257:0;;;;;:::i;:::-;;:::i;29613:35::-;;;;;;;;;;;;;;;;30141:32;;;;;;;;;;;;;;;;32766:190;;;;;;;;;;-1:-1:-1;32766:190:0;;;;;:::i;:::-;;:::i;29470:31::-;;;;;;;;;;;;;;;;29995:27;;;;;;;;;;;;;;;;18696:151;;;;;;;;;;-1:-1:-1;18696:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;18812:18:0;;;18785:7;18812:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18696:151;41925:403;;;;;;;;;;-1:-1:-1;41925:403:0;;;;;:::i;:::-;;:::i;29655:33::-;;;;;;;;;;;;;;;;34059:172;;;;;;;;;;-1:-1:-1;34059:172:0;;;;;:::i;:::-;;:::i;28717:201::-;;;;;;;;;;-1:-1:-1;28717:201:0;;;;;:::i;:::-;;:::i;29695:24::-;;;;;;;;;;;;;;;;35256:113;;;;;;;;;;-1:-1:-1;35256:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;35341:20:0;35317:4;35341:20;;;:11;:20;;;;;;;;;35256:113;16827:100;16881:13;16914:5;16907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16827:100;:::o;18994:169::-;19077:4;19094:39;14680:10;19117:7;19126:6;19094:8;:39::i;:::-;-1:-1:-1;19151:4:0;18994:169;;;;;:::o;32964:275::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;;;;;;;;;33101:4:::1;33093;33072:13;18035:12:::0;;;17947:108;33072:13:::1;:17;::::0;33088:1:::1;33072:17;:::i;:::-;33071:26;;;;:::i;:::-;33070:35;;;;:::i;:::-;33060:6;:45;;33038:142;;;::::0;-1:-1:-1;;;33038:142:0;;5723:2:1;33038:142:0::1;::::0;::::1;5705:21:1::0;5762:2;5742:18;;;5735:30;5801:34;5781:18;;;5774:62;5872:17;5852:18;;;5845:45;5907:19;;33038:142:0::1;5521:411:1::0;33038:142:0::1;33214:17;:6:::0;33224::::1;33214:17;:::i;:::-;33191:20;:40:::0;-1:-1:-1;32964:275:0:o;19645:492::-;19785:4;19802:36;19812:6;19820:9;19831:6;19802:9;:36::i;:::-;-1:-1:-1;;;;;19878:19:0;;19851:24;19878:19;;;:11;:19;;;;;;;;14680:10;19878:33;;;;;;;;19930:26;;;;19922:79;;;;-1:-1:-1;;;19922:79:0;;6139:2:1;19922:79:0;;;6121:21:1;6178:2;6158:18;;;6151:30;6217:34;6197:18;;;6190:62;6288:10;6268:18;;;6261:38;6316:19;;19922:79:0;5937:404:1;19922:79:0;20037:57;20046:6;14680:10;20087:6;20068:16;:25;20037:8;:57::i;:::-;-1:-1:-1;20125:4:0;;19645:492;-1:-1:-1;;;;19645:492:0:o;20546:215::-;14680:10;20634:4;20683:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20683:34:0;;;;;;;;;;20634:4;;20651:80;;20674:7;;20683:47;;20720:10;;20683:47;:::i;:::-;20651:8;:80::i;41351:90::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;41408:18:::1;:25:::0;;-1:-1:-1;;41408:25:0::1;::::0;::::1;::::0;;41351:90::o;41106:191::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;41174:12:::1;41192:6;-1:-1:-1::0;;;;;41192:11:0::1;41225:21;41192:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41173:89;;;41281:7;41273:16;;;::::0;::::1;;41162:135;41106:191:::0;:::o;28459:103::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;28524:30:::1;28551:1;28524:18;:30::i;:::-;28459:103::o:0;33883:168::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;33974:14:::1;:29:::0;;;34014:12:::1;:29:::0;33883:168::o;32575:121::-;27881:6;;32627:4;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;32644:14:0::1;:22:::0;;-1:-1:-1;;32644:22:0::1;::::0;;;32575:121;:::o;33512:167::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;;;;;33625:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;33625:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33512:167::o;42461:98::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;;;;;42525:18:0::1;42546:5;42525:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;42525:26:0::1;::::0;;42461:98::o;34937:177::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;35054:14:::1;::::0;35021:48:::1;::::0;-1:-1:-1;;;;;35054:14:0::1;::::0;;::::1;::::0;::::1;::::0;35021:48;::::1;::::0;::::1;::::0;;;::::1;35080:14;:26:::0;;-1:-1:-1;;;;;35080:26:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;34937:177::o;32411:112::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;32466:13:::1;:20:::0;;-1:-1:-1;;32497:18:0;;;;;32411:112::o;33775:100::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;33846:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;33846:21:0;;::::1;::::0;;;::::1;::::0;;33775:100::o;17046:104::-;17102:13;17135:7;17128:14;;;;;:::i;34429:304::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;34573:13:::1;::::0;-1:-1:-1;;;;;34573:13:0;;::::1;34565:21:::0;;::::1;::::0;34543:128:::1;;;::::0;-1:-1:-1;;;34543:128:0;;6888:2:1;34543:128:0::1;::::0;::::1;6870:21:1::0;6927:2;6907:18;;;6900:30;6966:34;6946:18;;;6939:62;7037:27;7017:18;;;7010:55;7082:19;;34543:128:0::1;6686:421:1::0;34543:128:0::1;34684:41;34713:4;34719:5;34684:28;:41::i;32088:315::-:0;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;32174:13:::1;-1:-1:-1::0;;;;;32174:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32156:67:0::1;;32232:4;32239:13;-1:-1:-1::0;;;;;32239:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32156:104;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;7560:55:1;;;32156:104:0::1;::::0;::::1;7542:74:1::0;7652:55;;7632:18;;;7625:83;7515:18;;32156:104:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32140:13;:120:::0;;-1:-1:-1;;32140:120:0::1;-1:-1:-1::0;;;;;32140:120:0;;;::::1;::::0;;::::1;::::0;;32271:55:::1;::::0;-1:-1:-1;32271:25:0::1;:55::i;:::-;32374:13;::::0;32337:58:::1;::::0;-1:-1:-1;;;;;32374:13:0::1;::::0;32337:28:::1;:58::i;21264:413::-:0;14680:10;21357:4;21401:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21401:34:0;;;;;;;;;;21454:35;;;;21446:85;;;;-1:-1:-1;;;21446:85:0;;7921:2:1;21446:85:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:34;7979:18;;;7972:62;8070:7;8050:18;;;8043:35;8095:19;;21446:85:0;7719:401:1;21446:85:0;21567:67;14680:10;21590:7;21618:15;21599:16;:34;21567:8;:67::i;:::-;-1:-1:-1;21665:4:0;;21264:413;-1:-1:-1;;;21264:413:0:o;18458:175::-;18544:4;18561:42;14680:10;18585:9;18596:6;18561:9;:42::i;34239:182::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;;;;;34324:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34324:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34379:34;;1108:41:1;;;34379:34:0::1;::::0;1081:18:1;34379:34:0::1;;;;;;;34239:182:::0;;:::o;33247:257::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;33388:4:::1;33380;33358:13;18035:12:::0;;;17947:108;33358:13:::1;:18;::::0;33374:2:::1;33358:18;:::i;:::-;33357:27;;;;:::i;:::-;33356:36;;;;:::i;:::-;33346:6;:46;;33324:132;;;::::0;-1:-1:-1;;;33324:132:0;;8327:2:1;33324:132:0::1;::::0;::::1;8309:21:1::0;8366:2;8346:18;;;8339:30;8405:34;8385:18;;;8378:62;8476:6;8456:18;;;8449:34;8500:19;;33324:132:0::1;8125:400:1::0;33324:132:0::1;33479:17;:6:::0;33489::::1;33479:17;:::i;:::-;33467:9;:29:::0;-1:-1:-1;33247:257:0:o;32766:190::-;27881:6;;32874:4;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;32896:18:0::1;:30:::0;;;32944:4:::1;28099:1;32766:190:::0;;;:::o;41925:403::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;42013:18:::1;::::0;;;::::1;;;42012:19;42004:65;;;::::0;-1:-1:-1;;;42004:65:0;;8732:2:1;42004:65:0::1;::::0;::::1;8714:21:1::0;8771:2;8751:18;;;8744:30;8810:34;8790:18;;;8783:62;8881:3;8861:18;;;8854:31;8902:19;;42004:65:0::1;8530:397:1::0;42004:65:0::1;42123:13;::::0;-1:-1:-1;;;;;42102:35:0;;::::1;42123:13:::0;::::1;42102:35;::::0;::::1;::::0;:103:::1;;-1:-1:-1::0;;;;;;42141:64:0;::::1;42162:42;42141:64;;42102:103;42080:200;;;::::0;-1:-1:-1;;;42080:200:0;;9134:2:1;42080:200:0::1;::::0;::::1;9116:21:1::0;9173:2;9153:18;;;9146:30;9212:34;9192:18;;;9185:62;9283:16;9263:18;;;9256:44;9317:19;;42080:200:0::1;8932:410:1::0;42080:200:0::1;-1:-1:-1::0;;;;;42291:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;42291:29:0::1;42316:4;42291:29;::::0;;41925:403::o;34059:172::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;34151:15:::1;:30:::0;;;34192:13:::1;:31:::0;34059:172::o;28717:201::-;27881:6;;-1:-1:-1;;;;;27881:6:0;14680:10;28028:23;28020:68;;;;-1:-1:-1;;;28020:68:0;;4721:2:1;28020:68:0;;;4703:21:1;;;4740:18;;;4733:30;-1:-1:-1;;;;;;;;;;;4779:18:1;;;4772:62;4851:18;;28020:68:0;4519:356:1;28020:68:0;-1:-1:-1;;;;;28806:22:0;::::1;28798:73;;;::::0;-1:-1:-1;;;28798:73:0;;9549:2:1;28798:73:0::1;::::0;::::1;9531:21:1::0;9588:2;9568:18;;;9561:30;9627:34;9607:18;;;9600:62;9698:8;9678:18;;;9671:36;9724:19;;28798:73:0::1;9347:402:1::0;28798:73:0::1;28882:28;28901:8;28882:18;:28::i;:::-;28717:201:::0;:::o;24948:380::-;-1:-1:-1;;;;;25084:19:0;;25076:68;;;;-1:-1:-1;;;25076:68:0;;9956:2:1;25076:68:0;;;9938:21:1;9995:2;9975:18;;;9968:30;10034:34;10014:18;;;10007:62;10105:6;10085:18;;;10078:34;10129:19;;25076:68:0;9754:400:1;25076:68:0;-1:-1:-1;;;;;25163:21:0;;25155:68;;;;-1:-1:-1;;;25155:68:0;;10361:2:1;25155:68:0;;;10343:21:1;10400:2;10380:18;;;10373:30;10439:34;10419:18;;;10412:62;10510:4;10490:18;;;10483:32;10532:19;;25155:68:0;10159:398:1;25155:68:0;-1:-1:-1;;;;;25236:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25288:32;;1558:25:1;;;25288:32:0;;1531:18:1;25288:32:0;;;;;;;24948:380;;;:::o;35377:3696::-;-1:-1:-1;;;;;35509:18:0;;35501:68;;;;-1:-1:-1;;;35501:68:0;;10764:2:1;35501:68:0;;;10746:21:1;10803:2;10783:18;;;10776:30;10842:34;10822:18;;;10815:62;-1:-1:-1;;;10893:18:1;;;10886:35;10938:19;;35501:68:0;10562:401:1;35501:68:0;-1:-1:-1;;;;;35588:16:0;;35580:64;;;;-1:-1:-1;;;35580:64:0;;11170:2:1;35580:64:0;;;11152:21:1;11209:2;11189:18;;;11182:30;11248:34;11228:18;;;11221:62;-1:-1:-1;;;11299:18:1;;;11292:33;11342:19;;35580:64:0;10968:399:1;35580:64:0;-1:-1:-1;;;;;35664:17:0;;;;;;:11;:17;;;;;;;;35663:18;35655:48;;;;-1:-1:-1;;;35655:48:0;;11574:2:1;35655:48:0;;;11556:21:1;11613:2;11593:18;;;11586:30;11652:20;11632:18;;;11625:48;11690:18;;35655:48:0;11372:342:1;35655:48:0;-1:-1:-1;;;;;35723:15:0;;;;;;:11;:15;;;;;;;;35722:16;35714:48;;;;-1:-1:-1;;;35714:48:0;;11921:2:1;35714:48:0;;;11903:21:1;11960:2;11940:18;;;11933:30;11999:22;11979:18;;;11972:50;12039:18;;35714:48:0;11719:344:1;35714:48:0;35779:6;35789:1;35779:11;35775:93;;35807:28;35823:4;35829:2;35833:1;35807:15;:28::i;:::-;35377:3696;;;:::o;35775:93::-;35884:14;;;;35880:1652;;;27881:6;;-1:-1:-1;;;;;35937:15:0;;;27881:6;;35937:15;;;;:49;;-1:-1:-1;27881:6:0;;-1:-1:-1;;;;;35973:13:0;;;27881:6;;35973:13;;35937:49;:86;;;;-1:-1:-1;;;;;;36007:16:0;;;;35937:86;:116;;;;-1:-1:-1;36045:8:0;;;;36044:9;35937:116;35915:1606;;;36093:13;;;;;;;36088:223;;-1:-1:-1;;;;;36165:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36194:23:0;;;;;;:19;:23;;;;;;;;36165:52;36131:160;;;;-1:-1:-1;;;36131:160:0;;12270:2:1;36131:160:0;;;12252:21:1;12309:2;12289:18;;;12282:30;12348:24;12328:18;;;12321:52;12390:18;;36131:160:0;12068:346:1;36131:160:0;-1:-1:-1;;;;;36385:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;36442:35:0;;;;;;:31;:35;;;;;;;;36441:36;36385:92;36359:1147;;;36564:20;;36554:6;:30;;36520:169;;;;-1:-1:-1;;;36520:169:0;;12621:2:1;36520:169:0;;;12603:21:1;12660:2;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12770:23;12750:18;;;12743:51;12811:19;;36520:169:0;12419:417:1;36520:169:0;36772:9;;-1:-1:-1;;;;;18219:18:0;;18192:7;18219:18;;;;;;;;;;;36746:22;;:6;:22;:::i;:::-;:35;;36712:140;;;;-1:-1:-1;;;36712:140:0;;13043:2:1;36712:140:0;;;13025:21:1;13082:2;13062:18;;;13055:30;13121:21;13101:18;;;13094:49;13160:18;;36712:140:0;12841:343:1;36712:140:0;36359:1147;;;-1:-1:-1;;;;;36950:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;37005:37:0;;;;;;:31;:37;;;;;;;;37004:38;36950:92;36924:582;;;37129:20;;37119:6;:30;;37085:170;;;;-1:-1:-1;;;37085:170:0;;13391:2:1;37085:170:0;;;13373:21:1;13430:2;13410:18;;;13403:30;13469:34;13449:18;;;13442:62;13540:24;13520:18;;;13513:52;13582:19;;37085:170:0;13189:418:1;36924:582:0;-1:-1:-1;;;;;37286:35:0;;;;;;:31;:35;;;;;;;;37281:225;;37406:9;;-1:-1:-1;;;;;18219:18:0;;18192:7;18219:18;;;;;;;;;;;37380:22;;:6;:22;:::i;:::-;:35;;37346:140;;;;-1:-1:-1;;;37346:140:0;;13043:2:1;37346:140:0;;;13025:21:1;13082:2;13062:18;;;13055:30;13121:21;13101:18;;;13094:49;13160:18;;37346:140:0;12841:343:1;37346:140:0;37593:4;37544:28;18219:18;;;;;;;;;;;37651;;37627:42;;;;;;;37700:35;;-1:-1:-1;37724:11:0;;;;;;;37700:35;:61;;;;-1:-1:-1;37753:8:0;;;;37752:9;37700:61;:110;;;;-1:-1:-1;;;;;;37779:31:0;;;;;;:25;:31;;;;;;;;37778:32;37700:110;:153;;;;-1:-1:-1;;;;;;37828:25:0;;;;;;:19;:25;;;;;;;;37827:26;37700:153;:194;;;;-1:-1:-1;;;;;;37871:23:0;;;;;;:19;:23;;;;;;;;37870:24;37700:194;37682:326;;;37921:8;:15;;-1:-1:-1;;37921:15:0;37932:4;37921:15;;;37953:10;:8;:10::i;:::-;37980:8;:16;;-1:-1:-1;;37980:16:0;;;37682:326;38036:8;;-1:-1:-1;;;;;38146:25:0;;38020:12;38146:25;;;:19;:25;;;;;;38036:8;;;;38035:9;;38146:25;;:52;;-1:-1:-1;;;;;;38175:23:0;;;;;;:19;:23;;;;;;;;38146:52;38142:100;;;-1:-1:-1;38225:5:0;38142:100;38254:12;38359:7;38355:665;;;-1:-1:-1;;;;;38411:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;38460:1;38444:13;;:17;38411:50;38407:464;;;38489:34;38519:3;38489:25;38500:13;;38489:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;38482:41;;38590:13;;38571:15;;38564:4;:22;;;;:::i;:::-;38563:40;;;;:::i;:::-;38542:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;38407:464:0;;-1:-1:-1;38407:464:0;;-1:-1:-1;;;;;38665:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;38715:1;38700:12;;:16;38665:51;38661:210;;;38744:33;38773:3;38744:24;38755:12;;38744:6;:10;;:24;;;;:::i;:33::-;38737:40;;38843:12;;38825:14;;38818:4;:21;;;;:::i;:::-;38817:38;;;;:::i;:::-;38796:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;38661:210:0;38891:8;;38887:91;;38920:42;38936:4;38950;38957;38920:15;:42::i;:::-;38994:14;39004:4;38994:14;;:::i;:::-;;;38355:665;39032:33;39048:4;39054:2;39058:6;39032:15;:33::i;:::-;35490:3583;;;;35377:3696;;;:::o;29078:191::-;29171:6;;;-1:-1:-1;;;;;29188:17:0;;;-1:-1:-1;;29188:17:0;;;;;;;29221:40;;29171:6;;;29188:17;29171:6;;29221:40;;29152:16;;29221:40;29141:128;29078:191;:::o;34741:188::-;-1:-1:-1;;;;;34824:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;34824:39:0;;;;;;;;;;34881:40;;34824:39;;:31;34881:40;;;34741:188;;:::o;22167:733::-;-1:-1:-1;;;;;22307:20:0;;22299:70;;;;-1:-1:-1;;;22299:70:0;;10764:2:1;22299:70:0;;;10746:21:1;10803:2;10783:18;;;10776:30;10842:34;10822:18;;;10815:62;-1:-1:-1;;;10893:18:1;;;10886:35;10938:19;;22299:70:0;10562:401:1;22299:70:0;-1:-1:-1;;;;;22388:23:0;;22380:71;;;;-1:-1:-1;;;22380:71:0;;11170:2:1;22380:71:0;;;11152:21:1;11209:2;11189:18;;;11182:30;11248:34;11228:18;;;11221:62;-1:-1:-1;;;11299:18:1;;;11292:33;11342:19;;22380:71:0;10968:399:1;22380:71:0;-1:-1:-1;;;;;22548:17:0;;22524:21;22548:17;;;;;;;;;;;22584:23;;;;22576:74;;;;-1:-1:-1;;;22576:74:0;;13947:2:1;22576:74:0;;;13929:21:1;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;14096:8;14076:18;;;14069:36;14122:19;;22576:74:0;13745:402:1;22576:74:0;-1:-1:-1;;;;;22686:17:0;;;:9;:17;;;;;;;;;;;22706:22;;;22686:42;;22750:20;;;;;;;;:30;;22722:6;;22686:9;22750:30;;22722:6;;22750:30;:::i;:::-;;;;;;;;22815:9;-1:-1:-1;;;;;22798:35:0;22807:6;-1:-1:-1;;;;;22798:35:0;;22826:6;22798:35;;;;1558:25:1;;1546:2;1531:18;;1412:177;22798:35:0;;;;;;;;22288:612;22167:733;;;:::o;40193:905::-;40276:4;40232:23;18219:18;;;;;;;;;;;40321:17;;18219:18;;40232:23;40402:20;;;:46;;-1:-1:-1;40426:22:0;;40402:46;40398:85;;;40465:7;;;;40193:905::o;40398:85::-;40517:18;;:23;;40538:2;40517:23;:::i;:::-;40499:15;:41;40495:115;;;40575:18;;:23;;40596:2;40575:23;:::i;:::-;40557:41;;40495:115;40653:15;40709:21;40743:36;40653:15;40743:16;:36::i;:::-;40792:18;40813:44;:21;40839:17;40813:25;:44::i;:::-;40792:65;;40890:1;40870:17;:21;;;;40918:10;40902:12;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;40963:14:0;;;;;-1:-1:-1;;;;;40963:14:0;40991;41004:1;40991:10;:14;:::i;:::-;40955:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41044:13:0;;40941:69;;-1:-1:-1;;;;;;41044:13:0;41071:14;41084:1;41071:10;:14;:::i;:::-;41036:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;40193:905:0:o;7115:98::-;7173:7;7200:5;7204:1;7200;:5;:::i;:::-;7193:12;7115:98;-1:-1:-1;;;7115:98:0:o;7514:::-;7572:7;7599:5;7603:1;7599;:5;:::i;39081:583::-;39231:16;;;39245:1;39231:16;;;;;;;;39207:21;;39231:16;;;;;;;;;;-1:-1:-1;39231:16:0;39207:40;;39276:4;39258;39263:1;39258:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39258:23:0;;;-1:-1:-1;;;;;39258:23:0;;;;;39302:13;-1:-1:-1;;;;;39302:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39292:4;39297:1;39292:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;39292:30:0;;;-1:-1:-1;;;;;39292:30:0;;;;;39335:60;39352:4;39367:13;39383:11;39335:8;:60::i;:::-;39434:222;;;;;-1:-1:-1;;;;;39434:13:0;:64;;;;:222;;39513:11;;39539:1;;39583:4;;39610;;39630:15;;39434:222;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39136:528;39081:583;:::o;6758:98::-;6816:7;6843:5;6847:1;6843;:5;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:154::-;-1:-1:-1;;;;;516:5:1;512:54;505:5;502:65;492:93;;581:1;578;571:12;596:367;664:6;672;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:31;824:5;799:31;:::i;:::-;849:5;927:2;912:18;;;;899:32;;-1:-1:-1;;;596:367:1:o;1160:247::-;1219:6;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1327:9;1314:23;1346:31;1371:5;1346:31;:::i;1594:226::-;1653:6;1706:2;1694:9;1685:7;1681:23;1677:32;1674:52;;;1722:1;1719;1712:12;1674:52;-1:-1:-1;1767:23:1;;1594:226;-1:-1:-1;1594:226:1:o;1825:508::-;1902:6;1910;1918;1971:2;1959:9;1950:7;1946:23;1942:32;1939:52;;;1987:1;1984;1977:12;1939:52;2026:9;2013:23;2045:31;2070:5;2045:31;:::i;:::-;2095:5;-1:-1:-1;2152:2:1;2137:18;;2124:32;2165:33;2124:32;2165:33;:::i;:::-;1825:508;;2217:7;;-1:-1:-1;;;2297:2:1;2282:18;;;;2269:32;;1825:508::o;3014:160::-;3079:20;;3135:13;;3128:21;3118:32;;3108:60;;3164:1;3161;3154:12;3179:315;3244:6;3252;3305:2;3293:9;3284:7;3280:23;3276:32;3273:52;;;3321:1;3318;3311:12;3273:52;3360:9;3347:23;3379:31;3404:5;3379:31;:::i;:::-;3429:5;-1:-1:-1;3453:35:1;3484:2;3469:18;;3453:35;:::i;:::-;3443:45;;3179:315;;;;;:::o;3499:180::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3647:26;3663:9;3647:26;:::i;3684:388::-;3752:6;3760;3813:2;3801:9;3792:7;3788:23;3784:32;3781:52;;;3829:1;3826;3819:12;3781:52;3868:9;3855:23;3887:31;3912:5;3887:31;:::i;:::-;3937:5;-1:-1:-1;3994:2:1;3979:18;;3966:32;4007:33;3966:32;4007:33;:::i;:::-;4059:7;4049:17;;;3684:388;;;;;:::o;4077:437::-;4156:1;4152:12;;;;4199;;;4220:61;;4274:4;4266:6;4262:17;4252:27;;4220:61;4327:2;4319:6;4316:14;4296:18;4293:38;4290:218;;-1:-1:-1;;;4361:1:1;4354:88;4465:4;4462:1;4455:15;4493:4;4490:1;4483:15;4290:218;;4077:437;;;:::o;4880:184::-;-1:-1:-1;;;4929:1:1;4922:88;5029:4;5026:1;5019:15;5053:4;5050:1;5043:15;5069:168;5142:9;;;5173;;5190:15;;;5184:22;;5170:37;5160:71;;5211:18;;:::i;5242:274::-;5282:1;5308;5298:189;;-1:-1:-1;;;5340:1:1;5333:88;5444:4;5441:1;5434:15;5472:4;5469:1;5462:15;5298:189;-1:-1:-1;5501:9:1;;5242:274::o;6346:125::-;6411:9;;;6432:10;;;6429:36;;;6445:18;;:::i;7112:251::-;7182:6;7235:2;7223:9;7214:7;7210:23;7206:32;7203:52;;;7251:1;7248;7241:12;7203:52;7283:9;7277:16;7302:31;7327:5;7302:31;:::i;13612:128::-;13679:9;;;13700:11;;;13697:37;;;13714:18;;:::i;14341:184::-;-1:-1:-1;;;14390:1:1;14383:88;14490:4;14487:1;14480:15;14514:4;14511:1;14504:15;14530:1005;14792:4;14840:3;14829:9;14825:19;14871:6;14860:9;14853:25;14914:6;14909:2;14898:9;14894:18;14887:34;14957:3;14952:2;14941:9;14937:18;14930:31;14981:6;15016;15010:13;15047:6;15039;15032:22;15085:3;15074:9;15070:19;15063:26;;15124:2;15116:6;15112:15;15098:29;;15145:1;15155:218;15169:6;15166:1;15163:13;15155:218;;;15234:13;;-1:-1:-1;;;;;15230:62:1;15218:75;;15322:2;15348:15;;;;15313:12;;;;15191:1;15184:9;15155:218;;;-1:-1:-1;;;;;;;15429:55:1;;;;15424:2;15409:18;;15402:83;-1:-1:-1;;15516:3:1;15501:19;15494:35;15390:3;14530:1005;-1:-1:-1;;;14530:1005:1:o

Swarm Source

ipfs://90a2c68ba1636b0e3af6641a94e72a6c7023124d35f1f3d34d21500f8d0890d8
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.