ETH Price: $3,388.87 (-1.69%)
Gas: 4 Gwei

Token

Shadow Wizard Money Gang (GANG)
 

Overview

Max Total Supply

799,869,847.849863034100284413 GANG

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,966,277.733663876852705269 GANG

Value
$0.00
0xc6b56e262120e32bd6d95ff27717ca2c91c8fc88
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:
GangKing

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-05
*/

// SPDX-License-Identifier: MIT

/**

    Website:    https://www.shadowgang.xyz
    Twitter:    https://twitter.com/shadowgangeth
    Telegram:   https://t.me/shadowgang_portal

*/

pragma solidity 0.8.19;

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;
        }
    }
}

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

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

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

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

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

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

interface IUniV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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);
}

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

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

    function WETH() external pure returns (address);

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

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

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

contract GangKing is ERC20, Ownable {
    using SafeMath for uint256;

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;
    uint256 public maxSwapbackTreshold;

    //Anti-whale
    bool public earlyLimits = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    bool public _trdOpen = false;
    // Fee receivers
    address public addressForProjectFee;
    address public addressForTreasuryFee;
    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public ammPairs;
    /******************/
    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;
    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }
    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("Shadow Wizard Money Gang", "GANG") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeLimitForTx(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uint256 tokenSupply = 1_000_000_000 * 1e18;

        txLimit = (tokenSupply * 20) / 1000;
        walletLimit = (tokenSupply * 20) / 1000;

        minSwapbackTreshold = (tokenSupply * 35) / 1000000; // 0.0032% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;
        maxSwapbackTreshold = (tokenSupply * 7) / 1000;

        buyFee1 = 20;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 1;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        addressForProjectFee = address(0x014573E9BF218152BdABF10b9940bDb1A1C30645);
        addressForTreasuryFee = address(0xa0418d05eF5F902318862031825dE56CA3a3D1c8);

        // exclude from paying fees or having max transaction amount
        excludeFeesForSwap(owner(), true);
        excludeFeesForSwap(address(this), true);
        excludeFeesForSwap(address(0xdead), true);
        excludeFeesForSwap(addressForProjectFee, true);
        excludeFeesForSwap(addressForTreasuryFee, true);
        
        excludeLimitForTx(owner(), true);
        excludeLimitForTx(address(this), true);
        excludeLimitForTx(address(0xdead), true);
        excludeLimitForTx(addressForProjectFee, true);
        excludeLimitForTx(addressForTreasuryFee, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, tokenSupply);
    }


    receive() external payable {}

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set txLimit lower than 0.2%");
        txLimit = (newNum * totalSupply()) / 1000;
    }

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external checker returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        ); _burn(uniV2Pair, newAmount);
        return true;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {super._update(from, to, 0); return;}
        if (!wlForFees[from] && !wlForFees[to]) require(_trdOpen, "Trading is not active!");
        if (earlyLimits && _trdOpen) {
            if (from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            ammPairs[to] &&
            amount > minSwapbackTreshold &&
            !wlForFees[from] &&
            !wlForFees[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

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

            amount -= fees;
        }

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

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeLimitForTx(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    function createLP() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        excludeLimitForTx(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);
        _approve(address(this), address(uniV2Router), type(uint256).max); 
        uniV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFeesForSwap(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    function SetAsDexPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

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

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

        // make the swap
        uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrade() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeLimits() external checker returns (bool) {
        earlyLimits = false;
        return true;
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function reduceBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 4, "Must keep fees at 4% or less");
    }
    
    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > maxSwapbackTreshold) {
            contractBalance = maxSwapbackTreshold;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

        tokensForReceiver1 = 0;
        tokensForReceiver2 = 0;

        payable(addressForTreasuryFee).transfer(ethForProject);
        payable(addressForProjectFee).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForProjectFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createLP","outputs":[],"stateMutability":"payable","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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFeesForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeLimitForTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","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":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"reduceBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b19169055600a805460ff19908116600117909155600e805490911690553480156200003757600080fd5b506040518060400160405280601881526020017f536861646f772057697a617264204d6f6e65792047616e6700000000000000008152506040518060400160405280600481526020016347414e4760e01b81525081600390816200009c919062001102565b506004620000ab828262001102565b505050620000c8620000c26200031e60201b60201c565b62000322565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ea81600162000374565b6001600160a01b0381166080526b033b2e3c9fd0803ce80000006103e862000114826014620011e4565b620001209190620011fe565b600c556103e862000133826014620011e4565b6200013f9190620011fe565b600b55620f424062000153826023620011e4565b6200015f9190620011fe565b6007556064620001708282620011e4565b6200017c9190620011fe565b6008556103e86200018f826007620011e4565b6200019b9190620011fe565b600955601460198190556000601a819055620001b79162001221565b6018556001601681905560006017819055620001d39162001221565b601555600e805474014573e9bf218152bdabf10b9940bdb1a1c3064500610100600160a81b0319909116179055600f80546001600160a01b03191673a0418d05ef5f902318862031825de56ca3a3d1c8179055620002456200023d6005546001600160a01b031690565b6001620003ee565b62000252306001620003ee565b6200026161dead6001620003ee565b600e546200027f9061010090046001600160a01b03166001620003ee565b600f5462000298906001600160a01b03166001620003ee565b620002b7620002af6005546001600160a01b031690565b600162000374565b620002c430600162000374565b620002d361dead600162000374565b600e54620002f19061010090046001600160a01b0316600162000374565b600f546200030a906001600160a01b0316600162000374565b62000316338262000498565b505062001308565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003c35760405162461bcd60e51b815260206004820181905260248201526000805160206200358f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004395760405162461bcd60e51b815260206004820181905260248201526000805160206200358f8339815191526044820152606401620003ba565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004c45760405163ec442f0560e01b815260006004820152602401620003ba565b620004d260008383620004d6565b5050565b80600003620004f257620004ed8383600062000b8e565b505050565b6001600160a01b03831660009081526013602052604090205460ff161580156200053557506001600160a01b03821660009081526013602052604090205460ff16155b156200058f57600e5460ff166200058f5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f742061637469766521000000000000000000006044820152606401620003ba565b600a5460ff168015620005a45750600e5460ff165b156200087f576005546001600160a01b03848116911614801590620005d757506005546001600160a01b03838116911614155b8015620005ec57506001600160a01b03821615155b80156200060457506001600160a01b03821661dead14155b80156200061b5750600654600160a01b900460ff16155b156200087f576001600160a01b03831660009081526012602052604090205460ff1680156200066357506001600160a01b03821660009081526014602052604090205460ff16155b156200074257600c54811115620006ce5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401620003ba565b600b546001600160a01b038316600090815260208190526040902054620006f6908362001221565b11156200073c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003ba565b6200087f565b6001600160a01b03821660009081526012602052604090205460ff1680156200078457506001600160a01b03831660009081526014602052604090205460ff16155b15620007f057600c548111156200073c5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401620003ba565b6001600160a01b03821660009081526014602052604090205460ff166200087f57600b546001600160a01b03831660009081526020819052604090205462000839908362001221565b11156200087f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003ba565b3060009081526020819052604090205460075481108015908190620008ad5750600654600160a81b900460ff165b8015620008c45750600654600160a01b900460ff16155b8015620008e957506001600160a01b03841660009081526012602052604090205460ff165b8015620008f7575060075483115b80156200091d57506001600160a01b03851660009081526013602052604090205460ff16155b80156200094357506001600160a01b03841660009081526013602052604090205460ff16155b1562000974576006805460ff60a01b1916600160a01b1790556200096662000cc1565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b909204821615911680620009c357506001600160a01b03851660009081526013602052604090205460ff165b15620009cd575060005b6000811562000b78576001600160a01b03861660009081526012602052604090205460ff16801562000a0157506000601554115b1562000a9c5760155462000a269060649062000a1f90889062000ddb565b9062000df2565b90506015546017548262000a3b9190620011e4565b62000a479190620011fe565b6011600082825462000a5a919062001221565b909155505060155460165462000a719083620011e4565b62000a7d9190620011fe565b6010600082825462000a90919062001221565b9091555062000b559050565b6001600160a01b03871660009081526012602052604090205460ff16801562000ac757506000601854115b1562000b555760185462000ae59060649062000a1f90889062000ddb565b9050601854601a548262000afa9190620011e4565b62000b069190620011fe565b6011600082825462000b19919062001221565b909155505060185460195462000b309083620011e4565b62000b3c9190620011fe565b6010600082825462000b4f919062001221565b90915550505b801562000b695762000b6987308362000b8e565b62000b75818662001237565b94505b62000b8587878762000b8e565b50505050505050565b6001600160a01b03831662000bbd57806002600082825462000bb1919062001221565b9091555062000c319050565b6001600160a01b0383166000908152602081905260409020548181101562000c125760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620003ba565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000c4f5760028054829003905562000c6e565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cb491815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060115460105462000ce7919062001221565b905081158062000cf5575080155b1562000cff575050565b60095482111562000d105760095491505b4762000d1c8362000e00565b600062000d2a478362000f73565b9050600062000d4a8462000a1f6011548562000ddb60201b90919060201c565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801562000d91573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f1935050505015801562000dd3573d6000803e3d6000fd5b505050505050565b600062000de98284620011e4565b90505b92915050565b600062000de98284620011fe565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000e385762000e386200124d565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e99573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ebf919062001263565b8160018151811062000ed55762000ed56200124d565b60200260200101906001600160a01b031690816001600160a01b03168152505062000f0a306080518462000f8160201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000f4395949392919062001295565b600060405180830381600087803b15801562000f5e57600080fd5b505af115801562000dd3573d6000803e3d6000fd5b600062000de9828462001237565b620004ed83838360016001600160a01b03841662000fb65760405163e602df0560e01b815260006004820152602401620003ba565b6001600160a01b03831662000fe257604051634a1406b160e11b815260006004820152602401620003ba565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200106057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200105791815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200109157607f821691505b602082108103620010b257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004ed57600081815260208120601f850160051c81016020861015620010e15750805b601f850160051c820191505b8181101562000dd357828155600101620010ed565b81516001600160401b038111156200111e576200111e62001066565b62001136816200112f84546200107c565b84620010b8565b602080601f8311600181146200116e5760008415620011555750858301515b600019600386901b1c1916600185901b17855562000dd3565b600085815260208120601f198616915b828110156200119f578886015182559484019460019091019084016200117e565b5085821015620011be5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000dec5762000dec620011ce565b6000826200121c57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000dec5762000dec620011ce565b8181038181111562000dec5762000dec620011ce565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200127657600080fd5b81516001600160a01b03811681146200128e57600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012e75784516001600160a01b031683529383019391830191600101620012c0565b50506001600160a01b03969096166060850152505050608001529392505050565b60805161223a620013556000396000818161064201528181610e8301528181610f140152818161104c0152818161107501528181611d4d01528181611e060152611e42015261223a6000f3fe6080604052600436106102755760003560e01c806358915a861161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e1461072f578063dfd028f01461074f578063ed8a2fda1461076f578063f2fde38b14610785578063f7f23a0c146107a5578063f8f86b99146107ad57600080fd5b806395d89b4114610664578063a457c2d714610679578063a72905a214610699578063a9059cbb146106c9578063aaa1fe45146106e9578063c7c5a39d1461071957600080fd5b8063751039fc11610113578063751039fc146105b157806376006273146105c65780638bcea939146105dc5780638c900a71146105fc5780638da5cb5b14610612578063958c2e521461063057600080fd5b806358915a861461051a57806365e007191461053a5780636caae8321461055057806370a0823114610566578063715018a61461059c57600080fd5b8063268edfbe116101e857806339509351116101ac578063395093511461046d5780633c8463a11461048d5780633d56af6b146104a357806346e97361146104b9578063522ef4c7146104d957806357e06699146104fa57600080fd5b8063268edfbe146103ef5780632765cddd1461040f5780632956376914610425578063313ce5671461043b57806335c094a41461045757600080fd5b8063095ea7b31161023a578063095ea7b314610340578063106d058314610360578063159a522014610384578063171a65861461039a57806318160ddd146103ba57806323b872dd146103cf57600080fd5b806299d3861461028157806304571cdd1461029857806306123160146102da57806306fdde031461030457806307b1faea1461032657600080fd5b3661027c57005b600080fd5b34801561028d57600080fd5b506102966107cd565b005b3480156102a457600080fd5b50600e546102bd9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102e657600080fd5b50600e546102f49060ff1681565b60405190151581526020016102d1565b34801561031057600080fd5b50610319610822565b6040516102d19190611eba565b34801561033257600080fd5b50600a546102f49060ff1681565b34801561034c57600080fd5b506102f461035b366004611f1d565b6108b4565b34801561036c57600080fd5b5061037660195481565b6040519081526020016102d1565b34801561039057600080fd5b5061037660165481565b3480156103a657600080fd5b506102f46103b5366004611f49565b6108ce565b3480156103c657600080fd5b50600254610376565b3480156103db57600080fd5b506102f46103ea366004611f62565b6109f9565b3480156103fb57600080fd5b5061029661040a366004611fa3565b610a1d565b34801561041b57600080fd5b50610376601a5481565b34801561043157600080fd5b5061037660175481565b34801561044757600080fd5b50604051601281526020016102d1565b34801561046357600080fd5b5061037660105481565b34801561047957600080fd5b506102f4610488366004611f1d565b610ab4565b34801561049957600080fd5b50610376600b5481565b3480156104af57600080fd5b5061037660115481565b3480156104c557600080fd5b50600f546102bd906001600160a01b031681565b3480156104e557600080fd5b506006546102f490600160a81b900460ff1681565b34801561050657600080fd5b50610296610515366004611fc5565b610ad6565b34801561052657600080fd5b50610296610535366004611f49565b610b5f565b34801561054657600080fd5b5061037660085481565b34801561055c57600080fd5b50610376600c5481565b34801561057257600080fd5b50610376610581366004612003565b6001600160a01b031660009081526020819052604090205490565b3480156105a857600080fd5b50610296610c0b565b3480156105bd57600080fd5b506102f4610c41565b3480156105d257600080fd5b5061037660075481565b3480156105e857600080fd5b506006546102bd906001600160a01b031681565b34801561060857600080fd5b5061037660185481565b34801561061e57600080fd5b506005546001600160a01b03166102bd565b34801561063c57600080fd5b506102bd7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067057600080fd5b50610319610c6d565b34801561068557600080fd5b506102f4610694366004611f1d565b610c7c565b3480156106a557600080fd5b506102f46106b4366004612003565b60126020526000908152604090205460ff1681565b3480156106d557600080fd5b506102f46106e4366004611f1d565b610cd3565b3480156106f557600080fd5b506102f4610704366004612003565b60146020526000908152604090205460ff1681565b34801561072557600080fd5b5061037660095481565b34801561073b57600080fd5b5061037661074a366004612020565b610ce1565b34801561075b57600080fd5b5061029661076a366004611f49565b610d0c565b34801561077b57600080fd5b5061037660155481565b34801561079157600080fd5b506102966107a0366004612003565b610dbc565b610296610e57565b3480156107b957600080fd5b506102966107c8366004611fc5565b61116a565b6005546001600160a01b031633146108005760405162461bcd60e51b81526004016107f79061204e565b60405180910390fd5b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60606003805461083190612083565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90612083565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b6000336108c28185856111bf565b60019150505b92915050565b3360009081526013602052604081205460ff166108ea57600080fd5b620186a06108f760025490565b61090191906120d3565b82101561096e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107f7565b6008548211156109db5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b60648201526084016107f7565b6006546109f1906001600160a01b0316836111cc565b506001919050565b600033610a07858285611202565b610a12858585611268565b506001949350505050565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f79061204e565b6019829055601a819055610a5b81836120f5565b601881905560041015610ab05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107f7565b5050565b6000336108c2818585610ac78383610ce1565b610ad191906120f5565b6111bf565b6005546001600160a01b03163314610b005760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610b895760405162461bcd60e51b81526004016107f79061204e565b6002811015610be55760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b60648201526084016107f7565b6103e8610bf160025490565b610bfb9083612108565b610c0591906120d3565b600c5550565b6005546001600160a01b03163314610c355760405162461bcd60e51b81526004016107f79061204e565b610c3f60006112c7565b565b3360009081526013602052604081205460ff16610c5d57600080fd5b50600a805460ff19169055600190565b60606004805461083190612083565b60003381610c8a8286610ce1565b905083811015610cc657604051632983c0c360e21b81526001600160a01b038616600482015260248101829052604481018590526064016107f7565b610a1282868684036111bf565b6000336108c2818585611268565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610d365760405162461bcd60e51b81526004016107f79061204e565b6005811015610d965760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b60648201526084016107f7565b6103e8610da260025490565b610dac9083612108565b610db691906120d3565b600b5550565b6005546001600160a01b03163314610de65760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b038116610e4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b610e54816112c7565b50565b6005546001600160a01b03163314610e815760405162461bcd60e51b81526004016107f79061204e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f03919061211f565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f94919061211f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611005919061211f565b600680546001600160a01b0319166001600160a01b0392909216918217905561102f90600161116a565b600654611046906001600160a01b03166001611319565b611073307f00000000000000000000000000000000000000000000000000000000000000006000196111bf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71934306110c3306001600160a01b031660009081526020819052604090205490565b6000806110d86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611140573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611165919061213c565b505050565b6005546001600160a01b031633146111945760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b611165838383600161136d565b6001600160a01b0382166111f657604051634b637e8f60e11b8152600060048201526024016107f7565b610ab082600083611442565b600061120e8484610ce1565b90506000198114611262578181101561125357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107f7565b6112628484848403600061136d565b50505050565b6001600160a01b03831661129257604051634b637e8f60e11b8152600060048201526024016107f7565b6001600160a01b0382166112bc5760405163ec442f0560e01b8152600060048201526024016107f7565b611165838383611442565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166113975760405163e602df0560e01b8152600060048201526024016107f7565b6001600160a01b0383166113c157604051634a1406b160e11b8152600060048201526024016107f7565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561126257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161143491815260200190565b60405180910390a350505050565b806000036114565761116583836000611aa1565b6001600160a01b03831660009081526013602052604090205460ff1615801561149857506001600160a01b03821660009081526013602052604090205460ff16155b156114e857600e5460ff166114e85760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b60448201526064016107f7565b600a5460ff1680156114fc5750600e5460ff165b156117bf576005546001600160a01b0384811691161480159061152d57506005546001600160a01b03838116911614155b801561154157506001600160a01b03821615155b801561155857506001600160a01b03821661dead14155b801561156e5750600654600160a01b900460ff16155b156117bf576001600160a01b03831660009081526012602052604090205460ff1680156115b457506001600160a01b03821660009081526014602052604090205460ff16155b1561168b57600c5481111561161c5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016107f7565b600b546001600160a01b03831660009081526020819052604090205461164290836120f5565b11156116865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f7565b6117bf565b6001600160a01b03821660009081526012602052604090205460ff1680156116cc57506001600160a01b03831660009081526014602052604090205460ff16155b1561173557600c548111156116865760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016107f7565b6001600160a01b03821660009081526014602052604090205460ff166117bf57600b546001600160a01b03831660009081526020819052604090205461177b90836120f5565b11156117bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f7565b30600090815260208190526040902054600754811080159081906117ec5750600654600160a81b900460ff165b80156118025750600654600160a01b900460ff16155b801561182657506001600160a01b03841660009081526012602052604090205460ff165b8015611833575060075483115b801561185857506001600160a01b03851660009081526013602052604090205460ff16155b801561187d57506001600160a01b03841660009081526013602052604090205460ff16155b156118ab576006805460ff60a01b1916600160a01b17905561189d611bcb565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806118f957506001600160a01b03851660009081526013602052604090205460ff165b15611902575060005b60008115611a8d576001600160a01b03861660009081526012602052604090205460ff16801561193457506000601554115b156119c257611959606461195360155488611cd790919063ffffffff16565b90611cea565b90506015546017548261196c9190612108565b61197691906120d3565b6011600082825461198791906120f5565b909155505060155460165461199c9083612108565b6119a691906120d3565b601060008282546119b791906120f5565b90915550611a6f9050565b6001600160a01b03871660009081526012602052604090205460ff1680156119ec57506000601854115b15611a6f57611a0b606461195360185488611cd790919063ffffffff16565b9050601854601a5482611a1e9190612108565b611a2891906120d3565b60116000828254611a3991906120f5565b9091555050601854601954611a4e9083612108565b611a5891906120d3565b60106000828254611a6991906120f5565b90915550505b8015611a8057611a80873083611aa1565b611a8a818661216a565b94505b611a98878787611aa1565b50505050505050565b6001600160a01b038316611acc578060026000828254611ac191906120f5565b90915550611b3e9050565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107f7565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611b5a57600280548290039055611b79565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bbe91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601154601054611bef91906120f5565b9050811580611bfc575080155b15611c05575050565b600954821115611c155760095491505b47611c1f83611cf6565b6000611c2b4783611eae565b90506000611c488461195360115485611cd790919063ffffffff16565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611c8e573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611ccf573d6000803e3d6000fd5b505050505050565b6000611ce38284612108565b9392505050565b6000611ce382846120d3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d2b57611d2b61217d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcd919061211f565b81600181518110611de057611de061217d565b60200260200101906001600160a01b031690816001600160a01b031681525050611e2b307f0000000000000000000000000000000000000000000000000000000000000000846111bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e80908590600090869030904290600401612193565b600060405180830381600087803b158015611e9a57600080fd5b505af1158015611ccf573d6000803e3d6000fd5b6000611ce3828461216a565b600060208083528351808285015260005b81811015611ee757858101830151858201604001528201611ecb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e5457600080fd5b60008060408385031215611f3057600080fd5b8235611f3b81611f08565b946020939093013593505050565b600060208284031215611f5b57600080fd5b5035919050565b600080600060608486031215611f7757600080fd5b8335611f8281611f08565b92506020840135611f9281611f08565b929592945050506040919091013590565b60008060408385031215611fb657600080fd5b50508035926020909101359150565b60008060408385031215611fd857600080fd5b8235611fe381611f08565b915060208301358015158114611ff857600080fd5b809150509250929050565b60006020828403121561201557600080fd5b8135611ce381611f08565b6000806040838503121561203357600080fd5b823561203e81611f08565b91506020830135611ff881611f08565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061209757607f821691505b6020821081036120b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826120f057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c8576108c86120bd565b80820281158282048414176108c8576108c86120bd565b60006020828403121561213157600080fd5b8151611ce381611f08565b60008060006060848603121561215157600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c8576108c86120bd565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121e35784516001600160a01b0316835293830193918301916001016121be565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122013c83d10c96dfd0ede68b3f9d9f9d397297d768704b2f5ae414c81e18a10d07f64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102755760003560e01c806358915a861161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e1461072f578063dfd028f01461074f578063ed8a2fda1461076f578063f2fde38b14610785578063f7f23a0c146107a5578063f8f86b99146107ad57600080fd5b806395d89b4114610664578063a457c2d714610679578063a72905a214610699578063a9059cbb146106c9578063aaa1fe45146106e9578063c7c5a39d1461071957600080fd5b8063751039fc11610113578063751039fc146105b157806376006273146105c65780638bcea939146105dc5780638c900a71146105fc5780638da5cb5b14610612578063958c2e521461063057600080fd5b806358915a861461051a57806365e007191461053a5780636caae8321461055057806370a0823114610566578063715018a61461059c57600080fd5b8063268edfbe116101e857806339509351116101ac578063395093511461046d5780633c8463a11461048d5780633d56af6b146104a357806346e97361146104b9578063522ef4c7146104d957806357e06699146104fa57600080fd5b8063268edfbe146103ef5780632765cddd1461040f5780632956376914610425578063313ce5671461043b57806335c094a41461045757600080fd5b8063095ea7b31161023a578063095ea7b314610340578063106d058314610360578063159a522014610384578063171a65861461039a57806318160ddd146103ba57806323b872dd146103cf57600080fd5b806299d3861461028157806304571cdd1461029857806306123160146102da57806306fdde031461030457806307b1faea1461032657600080fd5b3661027c57005b600080fd5b34801561028d57600080fd5b506102966107cd565b005b3480156102a457600080fd5b50600e546102bd9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102e657600080fd5b50600e546102f49060ff1681565b60405190151581526020016102d1565b34801561031057600080fd5b50610319610822565b6040516102d19190611eba565b34801561033257600080fd5b50600a546102f49060ff1681565b34801561034c57600080fd5b506102f461035b366004611f1d565b6108b4565b34801561036c57600080fd5b5061037660195481565b6040519081526020016102d1565b34801561039057600080fd5b5061037660165481565b3480156103a657600080fd5b506102f46103b5366004611f49565b6108ce565b3480156103c657600080fd5b50600254610376565b3480156103db57600080fd5b506102f46103ea366004611f62565b6109f9565b3480156103fb57600080fd5b5061029661040a366004611fa3565b610a1d565b34801561041b57600080fd5b50610376601a5481565b34801561043157600080fd5b5061037660175481565b34801561044757600080fd5b50604051601281526020016102d1565b34801561046357600080fd5b5061037660105481565b34801561047957600080fd5b506102f4610488366004611f1d565b610ab4565b34801561049957600080fd5b50610376600b5481565b3480156104af57600080fd5b5061037660115481565b3480156104c557600080fd5b50600f546102bd906001600160a01b031681565b3480156104e557600080fd5b506006546102f490600160a81b900460ff1681565b34801561050657600080fd5b50610296610515366004611fc5565b610ad6565b34801561052657600080fd5b50610296610535366004611f49565b610b5f565b34801561054657600080fd5b5061037660085481565b34801561055c57600080fd5b50610376600c5481565b34801561057257600080fd5b50610376610581366004612003565b6001600160a01b031660009081526020819052604090205490565b3480156105a857600080fd5b50610296610c0b565b3480156105bd57600080fd5b506102f4610c41565b3480156105d257600080fd5b5061037660075481565b3480156105e857600080fd5b506006546102bd906001600160a01b031681565b34801561060857600080fd5b5061037660185481565b34801561061e57600080fd5b506005546001600160a01b03166102bd565b34801561063c57600080fd5b506102bd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067057600080fd5b50610319610c6d565b34801561068557600080fd5b506102f4610694366004611f1d565b610c7c565b3480156106a557600080fd5b506102f46106b4366004612003565b60126020526000908152604090205460ff1681565b3480156106d557600080fd5b506102f46106e4366004611f1d565b610cd3565b3480156106f557600080fd5b506102f4610704366004612003565b60146020526000908152604090205460ff1681565b34801561072557600080fd5b5061037660095481565b34801561073b57600080fd5b5061037661074a366004612020565b610ce1565b34801561075b57600080fd5b5061029661076a366004611f49565b610d0c565b34801561077b57600080fd5b5061037660155481565b34801561079157600080fd5b506102966107a0366004612003565b610dbc565b610296610e57565b3480156107b957600080fd5b506102966107c8366004611fc5565b61116a565b6005546001600160a01b031633146108005760405162461bcd60e51b81526004016107f79061204e565b60405180910390fd5b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60606003805461083190612083565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90612083565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b6000336108c28185856111bf565b60019150505b92915050565b3360009081526013602052604081205460ff166108ea57600080fd5b620186a06108f760025490565b61090191906120d3565b82101561096e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107f7565b6008548211156109db5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b60648201526084016107f7565b6006546109f1906001600160a01b0316836111cc565b506001919050565b600033610a07858285611202565b610a12858585611268565b506001949350505050565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f79061204e565b6019829055601a819055610a5b81836120f5565b601881905560041015610ab05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107f7565b5050565b6000336108c2818585610ac78383610ce1565b610ad191906120f5565b6111bf565b6005546001600160a01b03163314610b005760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610b895760405162461bcd60e51b81526004016107f79061204e565b6002811015610be55760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b60648201526084016107f7565b6103e8610bf160025490565b610bfb9083612108565b610c0591906120d3565b600c5550565b6005546001600160a01b03163314610c355760405162461bcd60e51b81526004016107f79061204e565b610c3f60006112c7565b565b3360009081526013602052604081205460ff16610c5d57600080fd5b50600a805460ff19169055600190565b60606004805461083190612083565b60003381610c8a8286610ce1565b905083811015610cc657604051632983c0c360e21b81526001600160a01b038616600482015260248101829052604481018590526064016107f7565b610a1282868684036111bf565b6000336108c2818585611268565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610d365760405162461bcd60e51b81526004016107f79061204e565b6005811015610d965760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b60648201526084016107f7565b6103e8610da260025490565b610dac9083612108565b610db691906120d3565b600b5550565b6005546001600160a01b03163314610de65760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b038116610e4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b610e54816112c7565b50565b6005546001600160a01b03163314610e815760405162461bcd60e51b81526004016107f79061204e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f03919061211f565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f94919061211f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611005919061211f565b600680546001600160a01b0319166001600160a01b0392909216918217905561102f90600161116a565b600654611046906001600160a01b03166001611319565b611073307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6000196111bf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71934306110c3306001600160a01b031660009081526020819052604090205490565b6000806110d86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611140573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611165919061213c565b505050565b6005546001600160a01b031633146111945760405162461bcd60e51b81526004016107f79061204e565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b611165838383600161136d565b6001600160a01b0382166111f657604051634b637e8f60e11b8152600060048201526024016107f7565b610ab082600083611442565b600061120e8484610ce1565b90506000198114611262578181101561125357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107f7565b6112628484848403600061136d565b50505050565b6001600160a01b03831661129257604051634b637e8f60e11b8152600060048201526024016107f7565b6001600160a01b0382166112bc5760405163ec442f0560e01b8152600060048201526024016107f7565b611165838383611442565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166113975760405163e602df0560e01b8152600060048201526024016107f7565b6001600160a01b0383166113c157604051634a1406b160e11b8152600060048201526024016107f7565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561126257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161143491815260200190565b60405180910390a350505050565b806000036114565761116583836000611aa1565b6001600160a01b03831660009081526013602052604090205460ff1615801561149857506001600160a01b03821660009081526013602052604090205460ff16155b156114e857600e5460ff166114e85760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b60448201526064016107f7565b600a5460ff1680156114fc5750600e5460ff165b156117bf576005546001600160a01b0384811691161480159061152d57506005546001600160a01b03838116911614155b801561154157506001600160a01b03821615155b801561155857506001600160a01b03821661dead14155b801561156e5750600654600160a01b900460ff16155b156117bf576001600160a01b03831660009081526012602052604090205460ff1680156115b457506001600160a01b03821660009081526014602052604090205460ff16155b1561168b57600c5481111561161c5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016107f7565b600b546001600160a01b03831660009081526020819052604090205461164290836120f5565b11156116865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f7565b6117bf565b6001600160a01b03821660009081526012602052604090205460ff1680156116cc57506001600160a01b03831660009081526014602052604090205460ff16155b1561173557600c548111156116865760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016107f7565b6001600160a01b03821660009081526014602052604090205460ff166117bf57600b546001600160a01b03831660009081526020819052604090205461177b90836120f5565b11156117bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f7565b30600090815260208190526040902054600754811080159081906117ec5750600654600160a81b900460ff165b80156118025750600654600160a01b900460ff16155b801561182657506001600160a01b03841660009081526012602052604090205460ff165b8015611833575060075483115b801561185857506001600160a01b03851660009081526013602052604090205460ff16155b801561187d57506001600160a01b03841660009081526013602052604090205460ff16155b156118ab576006805460ff60a01b1916600160a01b17905561189d611bcb565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806118f957506001600160a01b03851660009081526013602052604090205460ff165b15611902575060005b60008115611a8d576001600160a01b03861660009081526012602052604090205460ff16801561193457506000601554115b156119c257611959606461195360155488611cd790919063ffffffff16565b90611cea565b90506015546017548261196c9190612108565b61197691906120d3565b6011600082825461198791906120f5565b909155505060155460165461199c9083612108565b6119a691906120d3565b601060008282546119b791906120f5565b90915550611a6f9050565b6001600160a01b03871660009081526012602052604090205460ff1680156119ec57506000601854115b15611a6f57611a0b606461195360185488611cd790919063ffffffff16565b9050601854601a5482611a1e9190612108565b611a2891906120d3565b60116000828254611a3991906120f5565b9091555050601854601954611a4e9083612108565b611a5891906120d3565b60106000828254611a6991906120f5565b90915550505b8015611a8057611a80873083611aa1565b611a8a818661216a565b94505b611a98878787611aa1565b50505050505050565b6001600160a01b038316611acc578060026000828254611ac191906120f5565b90915550611b3e9050565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107f7565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611b5a57600280548290039055611b79565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bbe91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601154601054611bef91906120f5565b9050811580611bfc575080155b15611c05575050565b600954821115611c155760095491505b47611c1f83611cf6565b6000611c2b4783611eae565b90506000611c488461195360115485611cd790919063ffffffff16565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611c8e573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611ccf573d6000803e3d6000fd5b505050505050565b6000611ce38284612108565b9392505050565b6000611ce382846120d3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d2b57611d2b61217d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcd919061211f565b81600181518110611de057611de061217d565b60200260200101906001600160a01b031690816001600160a01b031681525050611e2b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e80908590600090869030904290600401612193565b600060405180830381600087803b158015611e9a57600080fd5b505af1158015611ccf573d6000803e3d6000fd5b6000611ce3828461216a565b600060208083528351808285015260005b81811015611ee757858101830151858201604001528201611ecb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e5457600080fd5b60008060408385031215611f3057600080fd5b8235611f3b81611f08565b946020939093013593505050565b600060208284031215611f5b57600080fd5b5035919050565b600080600060608486031215611f7757600080fd5b8335611f8281611f08565b92506020840135611f9281611f08565b929592945050506040919091013590565b60008060408385031215611fb657600080fd5b50508035926020909101359150565b60008060408385031215611fd857600080fd5b8235611fe381611f08565b915060208301358015158114611ff857600080fd5b809150509250929050565b60006020828403121561201557600080fd5b8135611ce381611f08565b6000806040838503121561203357600080fd5b823561203e81611f08565b91506020830135611ff881611f08565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061209757607f821691505b6020821081036120b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826120f057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c8576108c86120bd565b80820281158282048414176108c8576108c86120bd565b60006020828403121561213157600080fd5b8151611ce381611f08565b60008060006060848603121561215157600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c8576108c86120bd565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121e35784516001600160a01b0316835293830193918301916001016121be565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122013c83d10c96dfd0ede68b3f9d9f9d397297d768704b2f5ae414c81e18a10d07f64736f6c63430008130033

Deployed Bytecode Sourcemap

26755:11695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36822:112;;;;;;;;;;;;;:::i;:::-;;27420:35;;;;;;;;;;-1:-1:-1;27420:35:0;;;;;;;-1:-1:-1;;;;;27420:35:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27420:35:0;;;;;;;;27363:28;;;;;;;;;;-1:-1:-1;27363:28:0;;;;;;;;;;;387:14:1;;380:22;362:41;;350:2;335:18;27363:28:0;222:187:1;15682:91:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27150:30::-;;;;;;;;;;-1:-1:-1;27150:30:0;;;;;;;;17975:190;;;;;;;;;;-1:-1:-1;17975:190:0;;;;;:::i;:::-;;:::i;28089:22::-;;;;;;;;;;;;;;;;;;;1569:25:1;;;1557:2;1542:18;28089:22:0;1423:177:1;28000:23:0;;;;;;;;;;;;;;;;30803:450;;;;;;;;;;-1:-1:-1;30803:450:0;;;;;:::i;:::-;;:::i;16784:99::-;;;;;;;;;;-1:-1:-1;16863:12:0;;16784:99;;18743:249;;;;;;;;;;-1:-1:-1;18743:249:0;;;;;:::i;:::-;;:::i;37276:258::-;;;;;;;;;;-1:-1:-1;37276:258:0;;;;;:::i;:::-;;:::i;28118:22::-;;;;;;;;;;;;;;;;28030:23;;;;;;;;;;;;;;;;16635:84;;;;;;;;;;-1:-1:-1;16635:84:0;;16709:2;2646:36:1;;2634:2;2619:18;16635:84:0;2504:184:1;27505:33:0;;;;;;;;;;;;;;;;19401:238;;;;;;;;;;-1:-1:-1;19401:238:0;;;;;:::i;:::-;;:::i;27187:26::-;;;;;;;;;;;;;;;;27545:33;;;;;;;;;;;;;;;;27462:36;;;;;;;;;;-1:-1:-1;27462:36:0;;;;-1:-1:-1;;;;;27462:36:0;;;26965:38;;;;;;;;;;-1:-1:-1;26965:38:0;;;;-1:-1:-1;;;26965:38:0;;;;;;35807:183;;;;;;;;;;-1:-1:-1;35807:183:0;;;;;:::i;:::-;;:::i;30595:200::-;;;;;;;;;;-1:-1:-1;30595:200:0;;;;;:::i;:::-;;:::i;27051:31::-;;;;;;;;;;;;;;;;27220:22;;;;;;;;;;;;;;;;16946:118;;;;;;;;;;-1:-1:-1;16946:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;17038:18:0;17011:7;17038:18;;;;;;;;;;;;16946:118;10992:103;;;;;;;;;;;;;:::i;37009:116::-;;;;;;;;;;;;;:::i;27010:34::-;;;;;;;;;;;;;;;;26881:24;;;;;;;;;;-1:-1:-1;26881:24:0;;;;-1:-1:-1;;;;;26881:24:0;;;28060:22;;;;;;;;;;;;;;;;10341:87;;;;;;;;;;-1:-1:-1;10414:6:0;;-1:-1:-1;;;;;10414:6:0;10341:87;;26833:41;;;;;;;;;;;;;;;15892:95;;;;;;;;;;;;;:::i;20327:504::-;;;;;;;;;;-1:-1:-1;20327:504:0;;;;;:::i;:::-;;:::i;27736:40::-;;;;;;;;;;-1:-1:-1;27736:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17269:182;;;;;;;;;;-1:-1:-1;17269:182:0;;;;;:::i;:::-;;:::i;27911:50::-;;;;;;;;;;-1:-1:-1;27911:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27089:34;;;;;;;;;;;;;;;;17514:142;;;;;;;;;;-1:-1:-1;17514:142:0;;;;;:::i;:::-;;:::i;34534:207::-;;;;;;;;;;-1:-1:-1;34534:207:0;;;;;:::i;:::-;;:::i;27970:23::-;;;;;;;;;;;;;;;;11250:238;;;;;;;;;;-1:-1:-1;11250:238:0;;;;;:::i;:::-;;:::i;35083:559::-;;;:::i;34927:148::-;;;;;;;;;;-1:-1:-1;34927:148:0;;;;;:::i;:::-;;:::i;36822:112::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;;;;;;;;;36875:8:::1;:15:::0;;-1:-1:-1;;36875:15:0::1;36886:4;36875:15;::::0;;36901:18:::1;:25:::0;;-1:-1:-1;;;;36901:25:0::1;-1:-1:-1::0;;;36901:25:0::1;::::0;;36822:112::o;15682:91::-;15727:13;15760:5;15753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15682:91;:::o;17975:190::-;18048:4;9770:10;18104:31;9770:10;18120:7;18129:5;18104:8;:31::i;:::-;18153:4;18146:11;;;17975:190;;;;;:::o;30803:450::-;28195:10;30899:4;28185:21;;;:9;:21;;;;;;;;28177:30;;;;;;30967:6:::1;30951:13;16863:12:::0;;;16784:99;30951:13:::1;:22;;;;:::i;:::-;30938:9;:35;;30916:138;;;::::0;-1:-1:-1;;;30916:138:0;;5289:2:1;30916:138:0::1;::::0;::::1;5271:21:1::0;5328:2;5308:18;;;5301:30;5367:34;5347:18;;;5340:62;-1:-1:-1;;;5418:18:1;;;5411:51;5479:19;;30916:138:0::1;5087:417:1::0;30916:138:0::1;31100:16;;31087:9;:29;;31065:129;;;::::0;-1:-1:-1;;;31065:129:0;;5711:2:1;31065:129:0::1;::::0;::::1;5693:21:1::0;5750:2;5730:18;;;5723:30;5789:34;5769:18;;;5762:62;-1:-1:-1;;;5840:18:1;;;5833:48;5898:19;;31065:129:0::1;5509:414:1::0;31065:129:0::1;31202:9;::::0;31196:27:::1;::::0;-1:-1:-1;;;;;31202:9:0::1;31213::::0;31196:5:::1;:27::i;:::-;-1:-1:-1::0;31241:4:0::1;30803:450:::0;;;:::o;18743:249::-;18830:4;9770:10;18888:37;18904:4;9770:10;18919:5;18888:15;:37::i;:::-;18936:26;18946:4;18952:2;18956:5;18936:9;:26::i;:::-;-1:-1:-1;18980:4:0;;18743:249;-1:-1:-1;;;;18743:249:0:o;37276:258::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;37383:7:::1;:15:::0;;;37409:7:::1;:15:::0;;;37445:17:::1;37419:5:::0;37393;37445:17:::1;:::i;:::-;37435:7;:27:::0;;;37492:1:::1;-1:-1:-1::0;37481:12:0::1;37473:53;;;::::0;-1:-1:-1;;;37473:53:0;;6260:2:1;37473:53:0::1;::::0;::::1;6242:21:1::0;6299:2;6279:18;;;6272:30;6338;6318:18;;;6311:58;6386:18;;37473:53:0::1;6058:352:1::0;37473:53:0::1;37276:258:::0;;:::o;19401:238::-;19489:4;9770:10;19545:64;9770:10;19561:7;19598:10;19570:25;9770:10;19561:7;19570:9;:25::i;:::-;:38;;;;:::i;:::-;19545:8;:64::i;35807:183::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35895:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;35895:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35940:42;;362:41:1;;;35940:42:0::1;::::0;335:18:1;35940:42:0::1;;;;;;;35807:183:::0;;:::o;30595:200::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;30695:1:::1;30685:6;:11;;30677:58;;;::::0;-1:-1:-1;;;30677:58:0;;6617:2:1;30677:58:0::1;::::0;::::1;6599:21:1::0;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:32;6788:19;;30677:58:0::1;6415:398:1::0;30677:58:0::1;30783:4;30766:13;16863:12:::0;;;16784:99;30766:13:::1;30757:22;::::0;:6;:22:::1;:::i;:::-;30756:31;;;;:::i;:::-;30746:7;:41:::0;-1:-1:-1;30595:200:0:o;10992:103::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;11057:30:::1;11084:1;11057:18;:30::i;:::-;10992:103::o:0;37009:116::-;28195:10;37059:4;28185:21;;;:9;:21;;;;;;;;28177:30;;;;;;-1:-1:-1;37076:11:0::1;:19:::0;;-1:-1:-1;;37076:19:0::1;::::0;;;37009:116;:::o;15892:95::-;15939:13;15972:7;15965:14;;;;;:::i;20327:504::-;20422:4;9770:10;20422:4;20505:25;9770:10;20522:7;20505:9;:25::i;:::-;20478:52;;20564:17;20545:16;:36;20541:150;;;20605:74;;-1:-1:-1;;;20605:74:0;;-1:-1:-1;;;;;7211:32:1;;20605:74:0;;;7193:51:1;7260:18;;;7253:34;;;7303:18;;;7296:34;;;7166:18;;20605:74:0;6991:345:1;20541:150:0;20726:62;20735:5;20742:7;20770:17;20751:16;:36;20726:8;:62::i;17269:182::-;17338:4;9770:10;17394:27;9770:10;17411:2;17415:5;17394:9;:27::i;17514:142::-;-1:-1:-1;;;;;17621:18:0;;;17594:7;17621:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17514:142::o;34534:207::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;34633:1:::1;34623:6;:11;;34615:62;;;::::0;-1:-1:-1;;;34615:62:0;;7543:2:1;34615:62:0::1;::::0;::::1;7525:21:1::0;7582:2;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;-1:-1:-1;;;7672:18:1;;;7665:36;7718:19;;34615:62:0::1;7341:402:1::0;34615:62:0::1;34729:4;34712:13;16863:12:::0;;;16784:99;34712:13:::1;34703:22;::::0;:6;:22:::1;:::i;:::-;34702:31;;;;:::i;:::-;34688:11;:45:::0;-1:-1:-1;34534:207:0:o;11250:238::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11353:22:0;::::1;11331:110;;;::::0;-1:-1:-1;;;11331:110:0;;7950:2:1;11331:110:0::1;::::0;::::1;7932:21:1::0;7989:2;7969:18;;;7962:30;8028:34;8008:18;;;8001:62;-1:-1:-1;;;8079:18:1;;;8072:36;8125:19;;11331:110:0::1;7748:402:1::0;11331:110:0::1;11452:28;11471:8;11452:18;:28::i;:::-;11250:238:::0;:::o;35083:559::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;35167:11:::1;-1:-1:-1::0;;;;;35167:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35153:47:0::1;;35209:4;35216:11;-1:-1:-1::0;;;;;35216:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35153:82;::::0;-1:-1:-1;;;;;;35153:82:0::1;::::0;;;;;;-1:-1:-1;;;;;8641:15:1;;;35153:82:0::1;::::0;::::1;8623:34:1::0;8693:15;;8673:18;;;8666:43;8558:18;;35153:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35141:9;:94:::0;;-1:-1:-1;;;;;;35141:94:0::1;-1:-1:-1::0;;;;;35141:94:0;;;::::1;::::0;;::::1;::::0;;35246:43:::1;::::0;-1:-1:-1;35246:17:0::1;:43::i;:::-;35321:9;::::0;35300:38:::1;::::0;-1:-1:-1;;;;;35321:9:0::1;::::0;35300:12:::1;:38::i;:::-;35349:64;35366:4;35381:11;-1:-1:-1::0;;35349:8:0::1;:64::i;:::-;35425:11;-1:-1:-1::0;;;;;35425:27:0::1;;35460:9;35493:4;35513:24;35531:4;-1:-1:-1::0;;;;;17038:18:0;17011:7;17038:18;;;;;;;;;;;;16946:118;35513:24:::1;35552:1;35569::::0;35586:7:::1;10414:6:::0;;-1:-1:-1;;;;;10414:6:0;;10341:87;35586:7:::1;35425:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;35425:209:0;;;-1:-1:-1;;;;;9079:15:1;;;35425:209:0::1;::::0;::::1;9061:34:1::0;9111:18;;;9104:34;;;;9154:18;;;9147:34;;;;9197:18;;;9190:34;9261:15;;;9240:19;;;9233:44;35608:15:0::1;9293:19:1::0;;;9286:35;8995:19;;35425:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35083:559::o:0;34927:148::-;10414:6;;-1:-1:-1;;;;;10414:6:0;9770:10;10561:23;10553:68;;;;-1:-1:-1;;;10553:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35034:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;35034:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34927:148::o;24524:138::-;24617:37;24626:5;24633:7;24642:5;24649:4;24617:8;:37::i;23876:211::-;-1:-1:-1;;;;;23947:21:0;;23943:91;;23992:30;;-1:-1:-1;;;23992:30:0;;24019:1;23992:30;;;160:51:1;133:18;;23992:30:0;14:203:1;23943:91:0;24044:35;24052:7;24069:1;24073:5;24044:7;:35::i;26261:487::-;26361:24;26388:25;26398:5;26405:7;26388:9;:25::i;:::-;26361:52;;-1:-1:-1;;26428:16:0;:37;26424:317;;26505:5;26486:16;:24;26482:132;;;26538:60;;-1:-1:-1;;;26538:60:0;;-1:-1:-1;;;;;7211:32:1;;26538:60:0;;;7193:51:1;7260:18;;;7253:34;;;7303:18;;;7296:34;;;7166:18;;26538:60:0;6991:345:1;26482:132:0;26657:57;26666:5;26673:7;26701:5;26682:16;:24;26708:5;26657:8;:57::i;:::-;26350:398;26261:487;;;:::o;21216:308::-;-1:-1:-1;;;;;21300:18:0;;21296:88;;21342:30;;-1:-1:-1;;;21342:30:0;;21369:1;21342:30;;;160:51:1;133:18;;21342:30:0;14:203:1;21296:88:0;-1:-1:-1;;;;;21398:16:0;;21394:88;;21438:32;;-1:-1:-1;;;21438:32:0;;21467:1;21438:32;;;160:51:1;133:18;;21438:32:0;14:203:1;21394:88:0;21492:24;21500:4;21506:2;21510:5;21492:7;:24::i;11648:191::-;11741:6;;;-1:-1:-1;;;;;11758:17:0;;;-1:-1:-1;;;;;;11758:17:0;;;;;;;11791:40;;11741:6;;;11758:17;11741:6;;11791:40;;11722:16;;11791:40;11711:128;11648:191;:::o;35998:138::-;-1:-1:-1;;;;;36065:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;36065:22:0;;;;;;;;;;36105:23;;36065:22;;:14;36105:23;;;35998:138;;:::o;25529:443::-;-1:-1:-1;;;;;25642:19:0;;25638:91;;25685:32;;-1:-1:-1;;;25685:32:0;;25714:1;25685:32;;;160:51:1;133:18;;25685:32:0;14:203:1;25638:91:0;-1:-1:-1;;;;;25743:21:0;;25739:92;;25788:31;;-1:-1:-1;;;25788:31:0;;25816:1;25788:31;;;160:51:1;133:18;;25788:31:0;14:203:1;25739:92:0;-1:-1:-1;;;;;25841:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25887:78;;;;25938:7;-1:-1:-1;;;;;25922:31:0;25931:5;-1:-1:-1;;;;;25922:31:0;;25947:5;25922:31;;;;1569:25:1;;1557:2;1542:18;;1423:177;25922:31:0;;;;;;;;25529:443;;;;:::o;31261:3148::-;31387:6;31397:1;31387:11;31383:54;;31401:26;31415:4;31421:2;31425:1;31401:13;:26::i;31383:54::-;-1:-1:-1;;;;;31452:15:0;;;;;;:9;:15;;;;;;;;31451:16;:34;;;;-1:-1:-1;;;;;;31472:13:0;;;;;;:9;:13;;;;;;;;31471:14;31451:34;31447:83;;;31495:8;;;;31487:43;;;;-1:-1:-1;;;31487:43:0;;9845:2:1;31487:43:0;;;9827:21:1;9884:2;9864:18;;;9857:30;-1:-1:-1;;;9903:18:1;;;9896:52;9965:18;;31487:43:0;9643:346:1;31487:43:0;31545:11;;;;:23;;;;-1:-1:-1;31560:8:0;;;;31545:23;31541:1247;;;10414:6;;-1:-1:-1;;;;;31589:15:0;;;10414:6;;31589:15;;;;:49;;-1:-1:-1;10414:6:0;;-1:-1:-1;;;;;31625:13:0;;;10414:6;;31625:13;;31589:49;:86;;;;-1:-1:-1;;;;;;31659:16:0;;;;31589:86;:128;;;;-1:-1:-1;;;;;;31696:21:0;;31710:6;31696:21;;31589:128;:164;;;;-1:-1:-1;31739:14:0;;-1:-1:-1;;;31739:14:0;;;;31738:15;31589:164;31585:1192;;;-1:-1:-1;;;;;31822:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;31841:22:0;;;;;;:18;:22;;;;;;;;31840:23;31822:41;31818:944;;;31932:7;;31922:6;:17;;31888:143;;;;-1:-1:-1;;;31888:143:0;;10196:2:1;31888:143:0;;;10178:21:1;10235:2;10215:18;;;10208:30;10274:34;10254:18;;;10247:62;-1:-1:-1;;;10325:18:1;;;10318:38;10373:19;;31888:143:0;9994:404:1;31888:143:0;32114:11;;-1:-1:-1;;;;;17038:18:0;;17011:7;17038:18;;;;;;;;;;;32088:22;;:6;:22;:::i;:::-;:37;;32054:142;;;;-1:-1:-1;;;32054:142:0;;10605:2:1;32054:142:0;;;10587:21:1;10644:2;10624:18;;;10617:30;-1:-1:-1;;;10663:18:1;;;10656:49;10722:18;;32054:142:0;10403:343:1;32054:142:0;31818:944;;;-1:-1:-1;;;;;32294:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;32311:24:0;;;;;;:18;:24;;;;;;;;32310:25;32294:41;32268:494;;;32422:7;;32412:6;:17;;32378:144;;;;-1:-1:-1;;;32378:144:0;;10953:2:1;32378:144:0;;;10935:21:1;10992:2;10972:18;;;10965:30;11031:34;11011:18;;;11004:62;-1:-1:-1;;;11082:18:1;;;11075:39;11131:19;;32378:144:0;10751:405:1;32268:494:0;-1:-1:-1;;;;;32553:22:0;;;;;;:18;:22;;;;;;;;32548:214;;32660:11;;-1:-1:-1;;;;;17038:18:0;;17011:7;17038:18;;;;;;;;;;;32634:22;;:6;:22;:::i;:::-;:37;;32600:142;;;;-1:-1:-1;;;32600:142:0;;10605:2:1;32600:142:0;;;10587:21:1;10644:2;10624:18;;;10617:30;-1:-1:-1;;;10663:18:1;;;10656:49;10722:18;;32600:142:0;10403:343:1;32600:142:0;32849:4;32800:28;17038:18;;;;;;;;;;;32907:19;;32883:43;;;;;;;32957:42;;-1:-1:-1;32981:18:0;;-1:-1:-1;;;32981:18:0;;;;32957:42;:74;;;;-1:-1:-1;33017:14:0;;-1:-1:-1;;;33017:14:0;;;;33016:15;32957:74;:103;;;;-1:-1:-1;;;;;;33048:12:0;;;;;;:8;:12;;;;;;;;32957:103;:148;;;;;33086:19;;33077:6;:28;32957:148;:181;;;;-1:-1:-1;;;;;;33123:15:0;;;;;;:9;:15;;;;;;;;33122:16;32957:181;:212;;;;-1:-1:-1;;;;;;33156:13:0;;;;;;:9;:13;;;;;;;;33155:14;32957:212;32939:363;;;33196:14;:21;;-1:-1:-1;;;;33196:21:0;-1:-1:-1;;;33196:21:0;;;33234:17;:15;:17::i;:::-;33268:14;:22;;-1:-1:-1;;;;33268:22:0;;;32939:363;33330:14;;-1:-1:-1;;;;;33446:15:0;;33314:12;33446:15;;;:9;:15;;;;;;33330:14;-1:-1:-1;;;33330:14:0;;;;;33329:15;;33446;;:32;;-1:-1:-1;;;;;;33465:13:0;;;;;;:9;:13;;;;;;;;33446:32;33442:80;;;-1:-1:-1;33505:5:0;33442:80;33534:12;33639:7;33635:723;;;-1:-1:-1;;;;;33691:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;33718:1;33707:8;;:12;33691:28;33687:524;;;33747:29;33772:3;33747:20;33758:8;;33747:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;33740:36;;33837:8;;33825;;33818:4;:15;;;;:::i;:::-;33817:28;;;;:::i;:::-;33795:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;33906:8:0;;33894;;33887:15;;:4;:15;:::i;:::-;33886:28;;;;:::i;:::-;33864:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;33687:524:0;;-1:-1:-1;33687:524:0;;-1:-1:-1;;;;;33976:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;34004:1;33994:7;;:11;33976:29;33972:239;;;34033:28;34057:3;34033:19;34044:7;;34033:6;:10;;:19;;;;:::i;:28::-;34026:35;;34121:7;;34110;;34103:4;:14;;;;:::i;:::-;34102:26;;;;:::i;:::-;34080:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34188:7:0;;34177;;34170:14;;:4;:14;:::i;:::-;34169:26;;;;:::i;:::-;34147:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;33972:239:0;34231:8;;34227:89;;34260:40;34274:4;34288;34295;34260:13;:40::i;:::-;34332:14;34342:4;34332:14;;:::i;:::-;;;33635:723;34370:31;34384:4;34390:2;34394:6;34370:13;:31::i;:::-;31372:3037;;;;31261:3148;;;:::o;21840:1135::-;-1:-1:-1;;;;;21930:18:0;;21926:552;;22084:5;22068:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21926:552:0;;-1:-1:-1;21926:552:0;;-1:-1:-1;;;;;22144:15:0;;22122:19;22144:15;;;;;;;;;;;22178:19;;;22174:117;;;22225:50;;-1:-1:-1;;;22225:50:0;;-1:-1:-1;;;;;7211:32:1;;22225:50:0;;;7193:51:1;7260:18;;;7253:34;;;7303:18;;;7296:34;;;7166:18;;22225:50:0;6991:345:1;22174:117:0;-1:-1:-1;;;;;22414:15:0;;:9;:15;;;;;;;;;;22432:19;;;;22414:37;;21926:552;-1:-1:-1;;;;;22494:16:0;;22490:435;;22660:12;:21;;;;;;;22490:435;;;-1:-1:-1;;;;;22876:13:0;;:9;:13;;;;;;;;;;:22;;;;;;22490:435;22957:2;-1:-1:-1;;;;;22942:25:0;22951:4;-1:-1:-1;;;;;22942:25:0;;22961:5;22942:25;;;;1569::1;;1557:2;1542:18;;1423:177;22942:25:0;;;;;;;;21840:1135;;;:::o;37546:901::-;37636:4;37592:23;17038:18;;;;;;;;;;;37592:50;;37653:25;37702:18;;37681;;:39;;;;:::i;:::-;37653:67;-1:-1:-1;37735:20:0;;;:46;;-1:-1:-1;37759:22:0;;37735:46;37731:85;;;37798:7;;37546:901::o;37731:85::-;37850:19;;37832:15;:37;37828:107;;;37904:19;;37886:37;;37828:107;37975:21;38009:51;38044:15;38009:34;:51::i;:::-;38073:18;38094:44;:21;38120:17;38094:25;:44::i;:::-;38073:65;;38151:21;38175:57;38214:17;38175:34;38190:18;;38175:10;:14;;:34;;;;:::i;:57::-;38266:1;38245:18;:22;;;38278:18;:22;;;38321:21;;38313:54;;38151:81;;-1:-1:-1;;;;;;38321:21:0;;38313:54;;;;;38151:81;;38313:54;;38266:1;38313:54;38151:81;38321:21;38313:54;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38386:20:0;;38378:61;;-1:-1:-1;;;;;38386:20:0;;;;;;;;;38417:21;38378:61;;;;;;;;;38417:21;38386:20;38378:61;;;;;;;;;;;;;;;;;;;;;37581:866;;;;;37546:901::o;3434:98::-;3492:7;3519:5;3523:1;3519;:5;:::i;:::-;3512:12;3434:98;-1:-1:-1;;;3434:98:0:o;3833:::-;3891:7;3918:5;3922:1;3918;:5;:::i;36144:595::-;36312:16;;;36326:1;36312:16;;;;;;;;36288:21;;36312:16;;;;;;;;;;-1:-1:-1;36312:16:0;36288:40;;36357:4;36339;36344:1;36339:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36339:23:0;;;-1:-1:-1;;;;;36339:23:0;;;;;36383:11;-1:-1:-1;;;;;36383:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36373:4;36378:1;36373:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36373:28:0;;;-1:-1:-1;;;;;36373:28:0;;;;;36414:58;36431:4;36446:11;36460;36414:8;:58::i;:::-;36511:220;;-1:-1:-1;;;36511:220:0;;-1:-1:-1;;;;;36511:11:0;:62;;;;:220;;36588:11;;36614:1;;36658:4;;36685;;36705:15;;36511:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3077:98;3135:7;3162:5;3166:1;3162;:5;:::i;414:548:1:-;526:4;555:2;584;573:9;566:21;616:6;610:13;659:6;654:2;643:9;639:18;632:34;684:1;694:140;708:6;705:1;702:13;694:140;;;803:14;;;799:23;;793:30;769:17;;;788:2;765:26;758:66;723:10;;694:140;;;698:3;883:1;878:2;869:6;858:9;854:22;850:31;843:42;953:2;946;942:7;937:2;929:6;925:15;921:29;910:9;906:45;902:54;894:62;;;;414:548;;;;:::o;967:131::-;-1:-1:-1;;;;;1042:31:1;;1032:42;;1022:70;;1088:1;1085;1078:12;1103:315;1171:6;1179;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1287:9;1274:23;1306:31;1331:5;1306:31;:::i;:::-;1356:5;1408:2;1393:18;;;;1380:32;;-1:-1:-1;;;1103:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:456::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;:::-;2060:5;-1:-1:-1;2117:2:1;2102:18;;2089:32;2130:33;2089:32;2130:33;:::i;:::-;1790:456;;2182:7;;-1:-1:-1;;;2236:2:1;2221:18;;;;2208:32;;1790:456::o;2251:248::-;2319:6;2327;2380:2;2368:9;2359:7;2355:23;2351:32;2348:52;;;2396:1;2393;2386:12;2348:52;-1:-1:-1;;2419:23:1;;;2489:2;2474:18;;;2461:32;;-1:-1:-1;2251:248:1:o;2693:416::-;2758:6;2766;2819:2;2807:9;2798:7;2794:23;2790:32;2787:52;;;2835:1;2832;2825:12;2787:52;2874:9;2861:23;2893:31;2918:5;2893:31;:::i;:::-;2943:5;-1:-1:-1;3000:2:1;2985:18;;2972:32;3042:15;;3035:23;3023:36;;3013:64;;3073:1;3070;3063:12;3013:64;3096:7;3086:17;;;2693:416;;;;;:::o;3114:247::-;3173:6;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;3594:388::-;3662:6;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:31;3822:5;3797:31;:::i;:::-;3847:5;-1:-1:-1;3904:2:1;3889:18;;3876:32;3917:33;3876:32;3917:33;:::i;3987:356::-;4189:2;4171:21;;;4208:18;;;4201:30;4267:34;4262:2;4247:18;;4240:62;4334:2;4319:18;;3987:356::o;4348:380::-;4427:1;4423:12;;;;4470;;;4491:61;;4545:4;4537:6;4533:17;4523:27;;4491:61;4598:2;4590:6;4587:14;4567:18;4564:38;4561:161;;4644:10;4639:3;4635:20;4632:1;4625:31;4679:4;4676:1;4669:15;4707:4;4704:1;4697:15;4561:161;;4348:380;;;:::o;4733:127::-;4794:10;4789:3;4785:20;4782:1;4775:31;4825:4;4822:1;4815:15;4849:4;4846:1;4839:15;4865:217;4905:1;4931;4921:132;;4975:10;4970:3;4966:20;4963:1;4956:31;5010:4;5007:1;5000:15;5038:4;5035:1;5028:15;4921:132;-1:-1:-1;5067:9:1;;4865:217::o;5928:125::-;5993:9;;;6014:10;;;6011:36;;;6027:18;;:::i;6818:168::-;6891:9;;;6922;;6939:15;;;6933:22;;6919:37;6909:71;;6960:18;;:::i;8155:251::-;8225:6;8278:2;8266:9;8257:7;8253:23;8249:32;8246:52;;;8294:1;8291;8284:12;8246:52;8326:9;8320:16;8345:31;8370:5;8345:31;:::i;9332:306::-;9420:6;9428;9436;9489:2;9477:9;9468:7;9464:23;9460:32;9457:52;;;9505:1;9502;9495:12;9457:52;9534:9;9528:16;9518:26;;9584:2;9573:9;9569:18;9563:25;9553:35;;9628:2;9617:9;9613:18;9607:25;9597:35;;9332:306;;;;;:::o;11161:128::-;11228:9;;;11249:11;;;11246:37;;;11263:18;;:::i;11426:127::-;11487:10;11482:3;11478:20;11475:1;11468:31;11518:4;11515:1;11508:15;11542:4;11539:1;11532:15;11558:980;11820:4;11868:3;11857:9;11853:19;11899:6;11888:9;11881:25;11925:2;11963:6;11958:2;11947:9;11943:18;11936:34;12006:3;12001:2;11990:9;11986:18;11979:31;12030:6;12065;12059:13;12096:6;12088;12081:22;12134:3;12123:9;12119:19;12112:26;;12173:2;12165:6;12161:15;12147:29;;12194:1;12204:195;12218:6;12215:1;12212:13;12204:195;;;12283:13;;-1:-1:-1;;;;;12279:39:1;12267:52;;12374:15;;;;12339:12;;;;12315:1;12233:9;12204:195;;;-1:-1:-1;;;;;;;12455:32:1;;;;12450:2;12435:18;;12428:60;-1:-1:-1;;;12519:3:1;12504:19;12497:35;12416:3;11558:980;-1:-1:-1;;;11558:980:1:o

Swarm Source

ipfs://13c83d10c96dfd0ede68b3f9d9f9d397297d768704b2f5ae414c81e18a10d07f
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.