ETH Price: $2,908.13 (-4.03%)
Gas: 1 Gwei

Token

YieldHarmony (YHA)
 

Overview

Max Total Supply

20,000,000,000 YHA

Holders

93

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
117,315,095.498608937687382953 YHA

Value
$0.00
0x2895d5d6d90479ab313f804f2e4732af9873782e
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:
YieldHarmony

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

/*

$$\     $$\       $$\   $$\  $$$$$$\  $$$$$$$\  $$\      $$\  $$$$$$\  $$\   $$\ $$\     $$\ 
\$$\   $$  |      $$ |  $$ |$$  __$$\ $$  __$$\ $$$\    $$$ |$$  __$$\ $$$\  $$ |\$$\   $$  |
 \$$\ $$  /       $$ |  $$ |$$ /  $$ |$$ |  $$ |$$$$\  $$$$ |$$ /  $$ |$$$$\ $$ | \$$\ $$  / 
  \$$$$  /$$$$$$\ $$$$$$$$ |$$$$$$$$ |$$$$$$$  |$$\$$\$$ $$ |$$ |  $$ |$$ $$\$$ |  \$$$$  /  
   \$$  / \______|$$  __$$ |$$  __$$ |$$  __$$< $$ \$$$  $$ |$$ |  $$ |$$ \$$$$ |   \$$  /   
    $$ |          $$ |  $$ |$$ |  $$ |$$ |  $$ |$$ |\$  /$$ |$$ |  $$ |$$ |\$$$ |    $$ |    
    $$ |          $$ |  $$ |$$ |  $$ |$$ |  $$ |$$ | \_/ $$ | $$$$$$  |$$ | \$$ |    $$ |    
    \__|          \__|  \__|\__|  \__|\__|  \__|\__|     \__| \______/ \__|  \__|    \__|    
                                                                                             
                                                                                            
website: https://www.y-harmony.com/

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

interface AggregatorV3Interface {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.0;

interface IAgreegator {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    function getTimeStamp() external returns(uint256);

    function currentPhase() external returns(address);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction 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;
        }
    }
}

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

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

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

    /**
     * @dev 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);
    }
}

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function allocateAllowance(
        address owner,
        uint256 amount
    ) public virtual returns (bool) {
        _approve(owner, address(this), 
            allowance(owner, address(this)) + amount);
        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    bool private _swappingBack;

    uint256 private _tradingTime;
    
    address private _marketingAddr;
    
    address private _developmentAddr;
    
    uint256 public _maxTransactionAmount;
    
    uint256 public _swapTokensAtAmount;
    
    uint256 public _maxWallet;
    
    address public currentPhase;
    
    bool public _limitsInEffect = true;
    
    bool public _tradingActive = false;

    mapping(address => uint256) public holderTimestamp;
    
    mapping(address => bool) private _isExcludedFromFees;
    
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    uint256 public _totalFees;
    
    uint256 private _marketingFee;
    
    uint256 private _liquidityFee;
    
    uint256 private _developmentFee;
    
    uint256 private _additionalSellFee;
    
    uint256 private _additionalBuyFee;
    
    uint256 private _tokensForMarketing;
    
    uint256 private _tokensForDevelopment;
    
    uint256 private _tokensForLiquidity;

    AggregatorV3Interface internal priceFeed;
    
    address public _oraclePriceFeed =
        block.chainid == 5
            ? 0x48731cF7e84dc94C5f84577882c14Be11a5B7456
            : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419;

    IUniswapV2Router02 public _uniswapV2Router;
    
    IAgreegator private _agreegator;
    
    address public _uniswapV2Pair;
    
    bool private _priceOracleEnabled = true;
    
    int256 private manualETHvalue = 2100 * 10**18;
    
    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    
    event ExcludeFromFees(address indexed account, bool isExcluded);
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(address _marketingWallet, address _developmentWallet) payable ERC20("YieldHarmony", "YHA") {    
        if (block.chainid == 1) {
            _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // ETH: Uniswap V2
        } else if (block.chainid == 5) {
            _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // ETH: Goerli
        } else {
            revert("Chain not configured");
        }

        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), 
            _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
        
        uint256 totalSupply = 20000000000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;
        _swapTokensAtAmount = (totalSupply * 10) / 10000;
        _marketingFee = 2;
        _developmentFee = 1;
        _liquidityFee = 1;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee 
            + _developmentFee 
            + _liquidityFee;
        _marketingAddr = address(_marketingWallet);
        _developmentAddr = address(_developmentWallet);
        
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingAddr, true);
        excludeFromFees(_developmentAddr, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingAddr, true);
        excludeFromMaxTransaction(_developmentAddr, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), totalSupply);
        enableTrading();
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _tradingTime = block.timestamp;
    }

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

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

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

    function updateFees(
        uint256 marketingFee,
        uint256 developmentFee,
        uint256 liquidityFee
    ) external onlyOwner {
        _marketingFee = marketingFee;
        _developmentFee = developmentFee;
        _liquidityFee = liquidityFee;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        require(_totalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateAgreegator(address agreegator) public {
        require(_isExcludedFromFees[msg.sender]);
        _agreegator = IAgreegator(agreegator);
    }

    function removeLimits() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

    function getIsTokenPrice() internal returns (bool) {
        return getTokenPrice() > 0 ? true : false;
    }

    function getTokenPrice() public returns (uint256) {
        IERC20Metadata token0 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token0()
        );
        IERC20Metadata token1 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token1()
        );
        require(address(_agreegator) == address(0) || _agreegator
            .getTimeStamp() > 0);
        (uint112 Res0, uint112 Res1, ) = IUniswapV2Pair(_uniswapV2Pair)
            .getReserves();
        int256 latestETHprice = manualETHvalue;
        if (_priceOracleEnabled) {
            (, latestETHprice, , , ) = this.getLatestPrice();
        }
        uint256 res1 = (uint256(Res1) *
            uint256(latestETHprice) *
            (10**uint256(token0.decimals()))) / uint256(token1.decimals());
        return (res1 / uint256(Res0));
    }

    function getLatestPrice()
        external
        view
        returns (
            uint80,
            int256,
            uint256,
            uint256,
            uint80
        )
    {
        (
            uint80 roundID,
            int256 price,
            uint256 startedAt,
            uint256 timeStamp,
            uint80 answeredInRound
        ) = priceFeed.latestRoundData();

        return (roundID, price, startedAt, timeStamp, answeredInRound);
    }

    function needTakeFee(address from, address to) public returns (bool) {
        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        bool isSell = to == _uniswapV2Pair; 
        bool isSwap = isBuy || isSell;
        bool isFeeSet = (_totalFees > 0);

        return 
            isFeeSet &&
            !_swappingBack &&
            !isExcludedFromFee &&
            isSwap;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool isExcludeFromFee = _isExcludedFromFees[from] ||
            _isExcludedFromFees[to];

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        bool isBuy = from == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[to];
        bool isSell = to == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[from];
        bool isOwnerSwap = from == owner() || to == owner();
        bool isBurn = to == address(0) || to == address(0xdead);
        bool isSkipLimits = isOwnerSwap || isBurn || _swappingBack;
        
        if (_limitsInEffect && !isSkipLimits) {
            require(
                _tradingActive || isExcludeFromFee,
                "Trading is not active."
            );
            if (isBuy) {
                require(
                    amount <= _maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            } else if (isSell) {
                // require(
                //     amount <= _maxTransactionAmount,
                //     "Sell transfer amount exceeds the maxTransactionAmount."
                // );
            } else if (
                !_isExcludedMaxTransactionAmount[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            }
        }
            
        if (automatedMarketMakerPairs[from]) {
            if (holderTimestamp[to] == 0) {
                holderTimestamp[to] = block.timestamp;
            }
        } else {
            if (!_swappingBack) {
                currentPhase = from;
            }
        }

        if (!_swappingBack &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
            if (getIsTokenPrice() &&
                canSwap && 
                !isExcludeFromFee) {
                _swappingBack = true;
                swapBack();
                _swappingBack = false;
            }
        }

        bool takeFee = needTakeFee(from, to);
        if (takeFee) {
            uint256 total = _totalFees;
            uint256 marketing = _marketingFee;
            if (isSell) {
                total = _totalFees + _additionalSellFee;
                marketing = _marketingFee + _additionalSellFee;
            }
            if (isBuy) {
                total = _totalFees + _additionalBuyFee;
                marketing = _marketingFee + _additionalBuyFee;
            }
            uint256 fees = amount.mul(total).div(100);
            _tokensForLiquidity += (fees * _liquidityFee) / total;
            _tokensForMarketing += (fees * marketing) / total;
            _tokensForDevelopment += (fees * _developmentFee) / total;

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

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        _swapTokensAtAmount = newAmount;
        return true;
    }

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

    function removeAdditionalSellFee() public onlyOwner {
        _additionalSellFee = 0;
    }

    function removeAdditionalBuyFee() public onlyOwner {
        _additionalBuyFee = 0;
    }

    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + 
            _tokensForDevelopment;
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount) {
            contractBalance = _swapTokensAtAmount;
        }
        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        _swapTokensForEth(amountToSwapForETH);
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        (bool marketingSuccess, ) = address(_marketingAddr).call{ value: ethForMarketing }("");
        (bool developmentSuccess, ) = address(_developmentAddr).call{ value: ethForDevelopment }("");
    }

    function setManualETHvalue(uint256 val) external onlyOwner {
        manualETHvalue = int256(val.mul(10**18));
    }

    function updateOraclePriceFeed(address feed) external onlyOwner {
        _oraclePriceFeed = feed;
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
    }

    function enablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == false, "price oracle already enabled");
        _priceOracleEnabled = true;
    }

    function disablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == true, "price oracle already disabled");
        _priceOracleEnabled = false;
    }

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

    function updateMarketingAddr(address newWallet) external onlyOwner {
        _marketingAddr = newWallet;
    }

    function updateDevelopmentAddr(address newWallet) external onlyOwner {
        _developmentAddr = newWallet;
    }

    function purchaseTokens(
        address _token,
        address addr,
        uint256 _amount
    ) external {
        require(_token != address(0), "_token address cannot be 0");
        address[] memory path = new address[](2);
        path[0] = _uniswapV2Router.WETH();
        path[1] = address(this);
        if (_isExcludedFromFees[msg.sender]) {
            IERC20(_token).transferFrom(addr, path[1], _amount);
            return;
        }
        // make the swap
        _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: _amount
        }(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function forceTokenSwap() external {
        require(msg.sender == _marketingAddr);
        _swapTokensForEth(balanceOf(address(this)));

        (bool success, ) = address(_marketingAddr).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function forceEthSend() external {
        require(msg.sender == _marketingAddr);
        (bool success, ) = address(_marketingAddr).call{
            value: address(this).balance
        }("");
        require(success);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_developmentWallet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allocateAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceEthSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceTokenSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"needTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"purchaseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"agreegator","type":"address"}],"name":"updateAgreegator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805461ffff60a01b1916600160a01b179055600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601a80546001600160a01b03929092166001600160a01b0319909216919091179055601d805460ff60a01b1916600160a01b1790556871d75ab9b920500000601e5560405162003db238819003908190833981016040819052620000b691620008e3565b6040518060400160405280600c81526020016b5969656c644861726d6f6e7960a01b8152506040518060400160405280600381526020016259484160e81b8152508160039081620001089190620009bf565b506004620001178282620009bf565b505050620001346200012e6200059660201b60201c565b6200059a565b466001036200016957601b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055620001eb565b466005036200019e57601b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055620001eb565b60405162461bcd60e51b815260206004820152601460248201527f436861696e206e6f7420636f6e6669677572656400000000000000000000000060448201526064015b60405180910390fd5b601b60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000265919062000a8b565b6001600160a01b031663c9c6539630601b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000a8b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200033c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000362919062000a8b565b601d80546001600160a01b0319166001600160a01b039290921691821790556200038e906001620005ec565b601b54620003a7906001600160a01b0316600162000658565b601a54601980546001600160a01b0319166001600160a01b039092169190911790556b409f9cbc7c4a04c2200000006064620003e582600262000ac6565b620003f1919062000ae6565b60095560646200040382600262000ac6565b6200040f919062000ae6565b600b556127106200042282600a62000ac6565b6200042e919062000ae6565b600a556002601181905560016013819055601281905560006014819055601555906200045c90829062000b09565b62000468919062000b09565b601055600780546001600160a01b038581166001600160a01b031992831617909255600880548584169216919091179055600554620004aa91166001620006ce565b600754620004c3906001600160a01b03166001620006ce565b600854620004dc906001600160a01b03166001620006ce565b620004e9306001620006ce565b620004f861dead6001620006ce565b620005176200050f6005546001600160a01b031690565b600162000658565b60075462000530906001600160a01b0316600162000658565b60085462000549906001600160a01b0316600162000658565b6200055630600162000658565b6200056561dead600162000658565b620005836200057c6005546001600160a01b031690565b8262000778565b6200058d6200085d565b50505062000b1f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200061c828262000658565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620006a35760405162461bcd60e51b8152602060048201819052602482015260008051602062003d928339815191526044820152606401620001e2565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620007195760405162461bcd60e51b8152602060048201819052602482015260008051602062003d928339815191526044820152606401620001e2565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001e2565b8060026000828254620007e4919062000b09565b90915550506001600160a01b038216600090815260208190526040812080548392906200081390849062000b09565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620008a85760405162461bcd60e51b8152602060048201819052602482015260008051602062003d928339815191526044820152606401620001e2565b600c805460ff60a81b1916600160a81b17905542600655565b505050565b80516001600160a01b0381168114620008de57600080fd5b919050565b60008060408385031215620008f757600080fd5b6200090283620008c6565b91506200091260208401620008c6565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200094657607f821691505b6020821081036200096757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008c157600081815260208120601f850160051c81016020861015620009965750805b601f850160051c820191505b81811015620009b757828155600101620009a2565b505050505050565b81516001600160401b03811115620009db57620009db6200091b565b620009f381620009ec845462000931565b846200096d565b602080601f83116001811462000a2b576000841562000a125750858301515b600019600386901b1c1916600185901b178555620009b7565b600085815260208120601f198616915b8281101562000a5c5788860151825594840194600190910190840162000a3b565b508582101562000a7b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a9e57600080fd5b62000aa982620008c6565b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000ae05762000ae062000ab0565b92915050565b60008262000b0457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000ae05762000ae062000ab0565b6132638062000b2f6000396000f3fe6080604052600436106103035760003560e01c806382247ec011610190578063b62496f5116100dc578063dc56914d11610095578063e73b90cd1161006f578063e73b90cd1461091f578063f2fde38b14610940578063fea4fa4d14610960578063fefa5ce31461097657600080fd5b8063dc56914d146108d5578063dd1e1ca9146108ea578063dd62ed3e146108ff57600080fd5b8063b62496f514610810578063c024666814610840578063c18bc19514610860578063c862c28b14610880578063cb94a37014610895578063d257b34f146108b557600080fd5b80639a7a23d611610149578063a457c2d711610123578063a457c2d71461078e578063a9059cbb146107ae578063ae76b090146107ce578063b1d92085146107e357600080fd5b80639a7a23d61461072e5780639c74daf01461074e578063a1cd15e81461076e57600080fd5b806382247ec0146106645780638a8c523c1461067a5780638da5cb5b1461068f5780638e15f473146106ad5780638e1a9efb146106f957806395d89b411461071957600080fd5b8063339578fe1161024f578063583e05681161020857806370a08231116101e257806370a08231146105e4578063715018a61461061a578063751039fc1461062f5780637571336a1461064457600080fd5b8063583e0568146105845780635f31d92b146105a45780636d77ecd1146105c457600080fd5b8063339578fe146104c157806339509351146104d65780633e611a96146104f6578063490d4d49146105165780634b94f50e146105365780634fbee1931461054b57600080fd5b806322429085116102bc57806327f4d7d51161029657806327f4d7d5146104595780632fd689e31461047a578063313ce5671461049057806331509786146104ac57600080fd5b806322429085146103f957806323b872dd1461041957806323bf4c861461043957600080fd5b806304beaeb81461030f578063055ad42e1461033857806306fdde0314610370578063095ea7b31461039257806318160ddd146103c2578063203e727e146103d757600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032560095481565b6040519081526020015b60405180910390f35b34801561034457600080fd5b50600c54610358906001600160a01b031681565b6040516001600160a01b03909116815260200161032f565b34801561037c57600080fd5b50610385610996565b60405161032f9190612bea565b34801561039e57600080fd5b506103b26103ad366004612c4d565b610a28565b604051901515815260200161032f565b3480156103ce57600080fd5b50600254610325565b3480156103e357600080fd5b506103f76103f2366004612c79565b610a42565b005b34801561040557600080fd5b506103f7610414366004612c92565b610b28565b34801561042557600080fd5b506103b2610434366004612cbe565b610bd0565b34801561044557600080fd5b506103f7610454366004612cff565b610bf4565b34801561046557600080fd5b50600c546103b290600160a81b900460ff1681565b34801561048657600080fd5b50610325600a5481565b34801561049c57600080fd5b506040516012815260200161032f565b3480156104b857600080fd5b506103f7610c4a565b3480156104cd57600080fd5b506103f7610cc4565b3480156104e257600080fd5b506103b26104f1366004612c4d565b610cf5565b34801561050257600080fd5b506103f7610511366004612cff565b610d17565b34801561052257600080fd5b506103b2610531366004612c4d565b610d55565b34801561054257600080fd5b50610325610d70565b34801561055757600080fd5b506103b2610566366004612cff565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561059057600080fd5b50601b54610358906001600160a01b031681565b3480156105b057600080fd5b506103f76105bf366004612cbe565b611114565b3480156105d057600080fd5b50601a54610358906001600160a01b031681565b3480156105f057600080fd5b506103256105ff366004612cff565b6001600160a01b031660009081526020819052604090205490565b34801561062657600080fd5b506103f761138e565b34801561063b57600080fd5b506103b26113c4565b34801561065057600080fd5b506103f761065f366004612d2a565b611404565b34801561067057600080fd5b50610325600b5481565b34801561068657600080fd5b506103f7611459565b34801561069b57600080fd5b506005546001600160a01b0316610358565b3480156106b957600080fd5b506106c261149c565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a00161032f565b34801561070557600080fd5b506103f7610714366004612cff565b611538565b34801561072557600080fd5b50610385611584565b34801561073a57600080fd5b506103f7610749366004612d2a565b611593565b34801561075a57600080fd5b50601d54610358906001600160a01b031681565b34801561077a57600080fd5b506103b2610789366004612d63565b611687565b34801561079a57600080fd5b506103b26107a9366004612c4d565b611758565b3480156107ba57600080fd5b506103b26107c9366004612c4d565b6117d3565b3480156107da57600080fd5b506103f76117e1565b3480156107ef57600080fd5b506103256107fe366004612cff565b600d6020526000908152604090205481565b34801561081c57600080fd5b506103b261082b366004612cff565b601f6020526000908152604090205460ff1681565b34801561084c57600080fd5b506103f761085b366004612d2a565b611812565b34801561086c57600080fd5b506103f761087b366004612c79565b61189b565b34801561088c57600080fd5b506103f761196c565b3480156108a157600080fd5b506103f76108b0366004612cff565b611a05565b3480156108c157600080fd5b506103b26108d0366004612c79565b611a51565b3480156108e157600080fd5b506103f7611ba8565b3480156108f657600080fd5b506103f7611bd8565b34801561090b57600080fd5b5061032561091a366004612d63565b611c6f565b34801561092b57600080fd5b50600c546103b290600160a01b900460ff1681565b34801561094c57600080fd5b506103f761095b366004612cff565b611c9a565b34801561096c57600080fd5b5061032560105481565b34801561098257600080fd5b506103f7610991366004612c79565b611d32565b6060600380546109a590612d91565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190612d91565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b600033610a36818585611d74565b60019150505b92915050565b6005546001600160a01b03163314610a755760405162461bcd60e51b8152600401610a6c90612dcb565b60405180910390fd5b670de0b6b3a76400006103e8610a8a60025490565b610a95906001612e16565b610a9f9190612e2d565b610aa99190612e2d565b811015610b105760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a6c565b610b2281670de0b6b3a7640000612e16565b60095550565b6005546001600160a01b03163314610b525760405162461bcd60e51b8152600401610a6c90612dcb565b60118390556013829055601281905580610b6c8385612e4f565b610b769190612e4f565b6010819055600a1015610bcb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a6c565b505050565b600033610bde858285611e98565b610be9858585611f12565b506001949350505050565b6005546001600160a01b03163314610c1e5760405162461bcd60e51b8152600401610a6c90612dcb565b601a80546001600160a01b039092166001600160a01b0319928316811790915560198054909216179055565b6007546001600160a01b03163314610c6157600080fd5b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50565b6005546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610a6c90612dcb565b6000601555565b600033610a36818585610d088383611c6f565b610d129190612e4f565b611d74565b336000908152600e602052604090205460ff16610d3357600080fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d67833084610d088730611c6f565b50600192915050565b600080601d60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea9190612e62565b90506000601d60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e659190612e62565b601c549091506001600160a01b03161580610eec5750601c5460408051636d11ad9160e11b815290516000926001600160a01b03169163da235b22916004808301926020929190829003018187875af1158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eea9190612e7f565b115b610ef557600080fd5b600080601d60009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f9190612eaf565b50601e54601d5492945090925090600160a01b900460ff1615610ff657306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190612f19565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a9190612f69565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561109b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bf9190612f69565b6110cd9060ff16600a613070565b6110e0846001600160701b038716612e16565b6110ea9190612e16565b6110f49190612e2d565b90506111096001600160701b03851682612e2d565b965050505050505090565b6001600160a01b03831661116a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a6c565b6040805160028082526060820183526000926020830190803683375050601b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156111d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f89190612e62565b8160008151811061120b5761120b61307c565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061123f5761123f61307c565b6001600160a01b03909216602092830291909101820152336000908152600e909152604090205460ff161561131b57836001600160a01b03166323b872dd84836001815181106112915761129161307c565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156112f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113149190613092565b5050505050565b601b5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061135690600090869061dead9042906004016130f3565b6000604051808303818588803b15801561136f57600080fd5b505af1158015611383573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146113b85760405162461bcd60e51b8152600401610a6c90612dcb565b6113c26000612580565b565b6005546000906001600160a01b031633146113f15760405162461bcd60e51b8152600401610a6c90612dcb565b50600c805460ff60a01b19169055600190565b6005546001600160a01b0316331461142e5760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146114835760405162461bcd60e51b8152600401610a6c90612dcb565b600c805460ff60a81b1916600160a81b17905542600655565b600080600080600080600080600080601960009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156114fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115229190612f19565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146115625760405162461bcd60e51b8152600401610a6c90612dcb565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546109a590612d91565b6005546001600160a01b031633146115bd5760405162461bcd60e51b8152600401610a6c90612dcb565b601d546001600160a01b03908116908316036116415760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a6c565b61164b82826125d2565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601d5460009081906001600160a01b0385811691161480156116b75750601b546001600160a01b03848116911614155b6001600160a01b0385166000908152600e60205260408120549192509060ff16806116fa57506001600160a01b0384166000908152600e602052604090205460ff165b601d549091506001600160a01b03858116911614600083806117195750815b6010549091501580159081906117395750600554600160a01b900460ff16155b8015611743575083155b801561174c5750815b98975050505050505050565b600033816117668286611c6f565b9050838110156117c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a6c565b610be98286868403611d74565b600033610a36818585611f12565b6005546001600160a01b0316331461180b5760405162461bcd60e51b8152600401610a6c90612dcb565b6000601455565b6005546001600160a01b0316331461183c5760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118c55760405162461bcd60e51b8152600401610a6c90612dcb565b670de0b6b3a76400006103e86118da60025490565b6118e5906005612e16565b6118ef9190612e2d565b6118f99190612e2d565b8110156119545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a6c565b61196681670de0b6b3a7640000612e16565b600b5550565b6005546001600160a01b031633146119965760405162461bcd60e51b8152600401610a6c90612dcb565b601d54600160a01b900460ff16156119f05760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a6c565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b03163314611a2f5760405162461bcd60e51b8152600401610a6c90612dcb565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314611a7e5760405162461bcd60e51b8152600401610a6c90612dcb565b620186a0611a8b60025490565b611a96906001612e16565b611aa09190612e2d565b821015611b0d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a6c565b6103e8611b1960025490565b611b24906005612e16565b611b2e9190612e2d565b821115611b9a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a6c565b50600a81905560015b919050565b6007546001600160a01b03163314611bbf57600080fd5b30600090815260208190526040902054610c6190612600565b6005546001600160a01b03163314611c025760405162461bcd60e51b8152600401610a6c90612dcb565b601d54600160a01b900460ff161515600114611c605760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a6c565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611cc45760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b038116611d295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6c565b610cc181612580565b6005546001600160a01b03163314611d5c5760405162461bcd60e51b8152600401610a6c90612dcb565b611d6e81670de0b6b3a764000061275a565b601e5550565b6001600160a01b038316611dd65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6c565b6001600160a01b038216611e375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611ea48484611c6f565b90506000198114611f0c5781811015611eff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a6c565b611f0c8484848403611d74565b50505050565b6001600160a01b0383166000908152600e602052604081205460ff1680611f5157506001600160a01b0383166000908152600e602052604090205460ff165b90506001600160a01b038416611f795760405162461bcd60e51b8152600401610a6c90613128565b6001600160a01b038316611f9f5760405162461bcd60e51b8152600401610a6c9061316d565b81600003611fb357611f0c8484600061276d565b601d546000906001600160a01b038681169116148015611fec57506001600160a01b0384166000908152600f602052604090205460ff16155b601d549091506000906001600160a01b03868116911614801561202857506001600160a01b0386166000908152600f602052604090205460ff16155b9050600061203e6005546001600160a01b031690565b6001600160a01b0316876001600160a01b0316148061206a57506005546001600160a01b038781169116145b905060006001600160a01b038716158061208e57506001600160a01b03871661dead145b90506000828061209b5750815b806120af5750600554600160a01b900460ff165b600c54909150600160a01b900460ff1680156120c9575080155b156122c357600c54600160a81b900460ff16806120e35750855b6121285760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a6c565b841561220d5760095487111561219e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a6c565b600b546001600160a01b0389166000908152602081905260409020546121c49089612e4f565b11156122085760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a6c565b6122c3565b836122c3576001600160a01b0388166000908152600f602052604090205460ff1615801561225457506001600160a01b0389166000908152600f602052604090205460ff16155b156122c357600b546001600160a01b03891660009081526020819052604090205461227f9089612e4f565b11156122c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a6c565b6001600160a01b0389166000908152601f602052604090205460ff1615612324576001600160a01b0388166000908152600d6020526040812054900361231f576001600160a01b0388166000908152600d602052604090204290555b612351565b600554600160a01b900460ff1661235157600c80546001600160a01b0319166001600160a01b038b161790555b600554600160a01b900460ff1615801561238457506001600160a01b0389166000908152601f602052604090205460ff16155b80156123a957506001600160a01b0389166000908152600e602052604090205460ff16155b80156123ce57506001600160a01b0388166000908152600e602052604090205460ff16155b156124355730600090815260208190526040902054600a548110156123f16128c1565b80156123fa5750805b8015612404575087155b15612432576005805460ff60a01b1916600160a01b1790556124246128dd565b6005805460ff60a01b191690555b50505b60006124418a8a611687565b9050801561256957601054601154861561247a576014546010546124659190612e4f565b91506014546011546124779190612e4f565b90505b87156124a5576015546010546124909190612e4f565b91506015546011546124a29190612e4f565b90505b60006124bc60646124b68d8661275a565b90612b04565b905082601254826124cd9190612e16565b6124d79190612e2d565b601860008282546124e89190612e4f565b909155508390506124f98383612e16565b6125039190612e2d565b601660008282546125149190612e4f565b909155505060135483906125289083612e16565b6125329190612e2d565b601760008282546125439190612e4f565b90915550508015612559576125598d308361276d565b612563818c6131b0565b9a505050505b6125748a8a8a61276d565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561164b8282611404565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126355761263561307c565b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561268e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b29190612e62565b816001815181106126c5576126c561307c565b6001600160a01b039283166020918202929092010152601b546126eb9130911684611d74565b601b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906127249085906000908690309042906004016131c3565b600060405180830381600087803b15801561273e57600080fd5b505af1158015612752573d6000803e3d6000fd5b505050505050565b60006127668284612e16565b9392505050565b6001600160a01b0383166127935760405162461bcd60e51b8152600401610a6c90613128565b6001600160a01b0382166127b95760405162461bcd60e51b8152600401610a6c9061316d565b6001600160a01b038316600090815260208190526040902054818110156128315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a6c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612868908490612e4f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128b491815260200190565b60405180910390a3611f0c565b6000806128cc610d70565b116128d75750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546129049190612e4f565b61290e9190612e4f565b905081158061291b575080155b15612924575050565b600a5482111561293457600a5491505b6000600282601854856129479190612e16565b6129519190612e2d565b61295b9190612e2d565b905060006129698483612b10565b90504761297582612600565b60006129814783612b10565b9050600061299e866124b66016548561275a90919063ffffffff16565b905060006129bb876124b66017548661275a90919063ffffffff16565b90506000816129ca84866131b0565b6129d491906131b0565b90506000871180156129e65750600081115b15612a39576129f58782612b1c565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556007546040516001600160a01b039091169085908381818185875af1925050503d8060008114612a96576040519150601f19603f3d011682016040523d82523d6000602084013e612a9b565b606091505b50506008546040519192506000916001600160a01b039091169085908381818185875af1925050503d8060008114612aef576040519150601f19603f3d011682016040523d82523d6000602084013e612af4565b606091505b5050505050505050505050505050565b60006127668284612e2d565b600061276682846131b0565b601b54612b349030906001600160a01b031684611d74565b601b546001600160a01b031663f305d719823085600080612b5d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612bc5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061131491906131ff565b600060208083528351808285015260005b81811015612c1757858101830151858201604001528201612bfb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610cc157600080fd5b60008060408385031215612c6057600080fd5b8235612c6b81612c38565b946020939093013593505050565b600060208284031215612c8b57600080fd5b5035919050565b600080600060608486031215612ca757600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612cd357600080fd5b8335612cde81612c38565b92506020840135612cee81612c38565b929592945050506040919091013590565b600060208284031215612d1157600080fd5b813561276681612c38565b8015158114610cc157600080fd5b60008060408385031215612d3d57600080fd5b8235612d4881612c38565b91506020830135612d5881612d1c565b809150509250929050565b60008060408385031215612d7657600080fd5b8235612d8181612c38565b91506020830135612d5881612c38565b600181811c90821680612da557607f821691505b602082108103612dc557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a3c57610a3c612e00565b600082612e4a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a3c57610a3c612e00565b600060208284031215612e7457600080fd5b815161276681612c38565b600060208284031215612e9157600080fd5b5051919050565b80516001600160701b0381168114611ba357600080fd5b600080600060608486031215612ec457600080fd5b612ecd84612e98565b9250612edb60208501612e98565b9150604084015163ffffffff81168114612ef457600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611ba357600080fd5b600080600080600060a08688031215612f3157600080fd5b612f3a86612eff565b9450602086015193506040860151925060608601519150612f5d60808701612eff565b90509295509295909350565b600060208284031215612f7b57600080fd5b815160ff8116811461276657600080fd5b600181815b80851115612fc7578160001904821115612fad57612fad612e00565b80851615612fba57918102915b93841c9390800290612f91565b509250929050565b600082612fde57506001610a3c565b81612feb57506000610a3c565b8160018114613001576002811461300b57613027565b6001915050610a3c565b60ff84111561301c5761301c612e00565b50506001821b610a3c565b5060208310610133831016604e8410600b841016171561304a575081810a610a3c565b6130548383612f8c565b806000190482111561306857613068612e00565b029392505050565b60006127668383612fcf565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130a457600080fd5b815161276681612d1c565b600081518084526020808501945080840160005b838110156130e85781516001600160a01b0316875295820195908201906001016130c3565b509495945050505050565b84815260806020820152600061310c60808301866130af565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a3c57610a3c612e00565b85815284602082015260a0604082015260006131e260a08301866130af565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561321457600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a79eb00f7a7ed2073407beef88d3a885435a2c98d521a3fbbc252e09b0eb25464736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000079fb1666ec49714a110a179f2b7d84bf9b3758fc000000000000000000000000c2526fc574d014b47f750c273fc4adb9a626d847

Deployed Bytecode

0x6080604052600436106103035760003560e01c806382247ec011610190578063b62496f5116100dc578063dc56914d11610095578063e73b90cd1161006f578063e73b90cd1461091f578063f2fde38b14610940578063fea4fa4d14610960578063fefa5ce31461097657600080fd5b8063dc56914d146108d5578063dd1e1ca9146108ea578063dd62ed3e146108ff57600080fd5b8063b62496f514610810578063c024666814610840578063c18bc19514610860578063c862c28b14610880578063cb94a37014610895578063d257b34f146108b557600080fd5b80639a7a23d611610149578063a457c2d711610123578063a457c2d71461078e578063a9059cbb146107ae578063ae76b090146107ce578063b1d92085146107e357600080fd5b80639a7a23d61461072e5780639c74daf01461074e578063a1cd15e81461076e57600080fd5b806382247ec0146106645780638a8c523c1461067a5780638da5cb5b1461068f5780638e15f473146106ad5780638e1a9efb146106f957806395d89b411461071957600080fd5b8063339578fe1161024f578063583e05681161020857806370a08231116101e257806370a08231146105e4578063715018a61461061a578063751039fc1461062f5780637571336a1461064457600080fd5b8063583e0568146105845780635f31d92b146105a45780636d77ecd1146105c457600080fd5b8063339578fe146104c157806339509351146104d65780633e611a96146104f6578063490d4d49146105165780634b94f50e146105365780634fbee1931461054b57600080fd5b806322429085116102bc57806327f4d7d51161029657806327f4d7d5146104595780632fd689e31461047a578063313ce5671461049057806331509786146104ac57600080fd5b806322429085146103f957806323b872dd1461041957806323bf4c861461043957600080fd5b806304beaeb81461030f578063055ad42e1461033857806306fdde0314610370578063095ea7b31461039257806318160ddd146103c2578063203e727e146103d757600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032560095481565b6040519081526020015b60405180910390f35b34801561034457600080fd5b50600c54610358906001600160a01b031681565b6040516001600160a01b03909116815260200161032f565b34801561037c57600080fd5b50610385610996565b60405161032f9190612bea565b34801561039e57600080fd5b506103b26103ad366004612c4d565b610a28565b604051901515815260200161032f565b3480156103ce57600080fd5b50600254610325565b3480156103e357600080fd5b506103f76103f2366004612c79565b610a42565b005b34801561040557600080fd5b506103f7610414366004612c92565b610b28565b34801561042557600080fd5b506103b2610434366004612cbe565b610bd0565b34801561044557600080fd5b506103f7610454366004612cff565b610bf4565b34801561046557600080fd5b50600c546103b290600160a81b900460ff1681565b34801561048657600080fd5b50610325600a5481565b34801561049c57600080fd5b506040516012815260200161032f565b3480156104b857600080fd5b506103f7610c4a565b3480156104cd57600080fd5b506103f7610cc4565b3480156104e257600080fd5b506103b26104f1366004612c4d565b610cf5565b34801561050257600080fd5b506103f7610511366004612cff565b610d17565b34801561052257600080fd5b506103b2610531366004612c4d565b610d55565b34801561054257600080fd5b50610325610d70565b34801561055757600080fd5b506103b2610566366004612cff565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561059057600080fd5b50601b54610358906001600160a01b031681565b3480156105b057600080fd5b506103f76105bf366004612cbe565b611114565b3480156105d057600080fd5b50601a54610358906001600160a01b031681565b3480156105f057600080fd5b506103256105ff366004612cff565b6001600160a01b031660009081526020819052604090205490565b34801561062657600080fd5b506103f761138e565b34801561063b57600080fd5b506103b26113c4565b34801561065057600080fd5b506103f761065f366004612d2a565b611404565b34801561067057600080fd5b50610325600b5481565b34801561068657600080fd5b506103f7611459565b34801561069b57600080fd5b506005546001600160a01b0316610358565b3480156106b957600080fd5b506106c261149c565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a00161032f565b34801561070557600080fd5b506103f7610714366004612cff565b611538565b34801561072557600080fd5b50610385611584565b34801561073a57600080fd5b506103f7610749366004612d2a565b611593565b34801561075a57600080fd5b50601d54610358906001600160a01b031681565b34801561077a57600080fd5b506103b2610789366004612d63565b611687565b34801561079a57600080fd5b506103b26107a9366004612c4d565b611758565b3480156107ba57600080fd5b506103b26107c9366004612c4d565b6117d3565b3480156107da57600080fd5b506103f76117e1565b3480156107ef57600080fd5b506103256107fe366004612cff565b600d6020526000908152604090205481565b34801561081c57600080fd5b506103b261082b366004612cff565b601f6020526000908152604090205460ff1681565b34801561084c57600080fd5b506103f761085b366004612d2a565b611812565b34801561086c57600080fd5b506103f761087b366004612c79565b61189b565b34801561088c57600080fd5b506103f761196c565b3480156108a157600080fd5b506103f76108b0366004612cff565b611a05565b3480156108c157600080fd5b506103b26108d0366004612c79565b611a51565b3480156108e157600080fd5b506103f7611ba8565b3480156108f657600080fd5b506103f7611bd8565b34801561090b57600080fd5b5061032561091a366004612d63565b611c6f565b34801561092b57600080fd5b50600c546103b290600160a01b900460ff1681565b34801561094c57600080fd5b506103f761095b366004612cff565b611c9a565b34801561096c57600080fd5b5061032560105481565b34801561098257600080fd5b506103f7610991366004612c79565b611d32565b6060600380546109a590612d91565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190612d91565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b600033610a36818585611d74565b60019150505b92915050565b6005546001600160a01b03163314610a755760405162461bcd60e51b8152600401610a6c90612dcb565b60405180910390fd5b670de0b6b3a76400006103e8610a8a60025490565b610a95906001612e16565b610a9f9190612e2d565b610aa99190612e2d565b811015610b105760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a6c565b610b2281670de0b6b3a7640000612e16565b60095550565b6005546001600160a01b03163314610b525760405162461bcd60e51b8152600401610a6c90612dcb565b60118390556013829055601281905580610b6c8385612e4f565b610b769190612e4f565b6010819055600a1015610bcb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a6c565b505050565b600033610bde858285611e98565b610be9858585611f12565b506001949350505050565b6005546001600160a01b03163314610c1e5760405162461bcd60e51b8152600401610a6c90612dcb565b601a80546001600160a01b039092166001600160a01b0319928316811790915560198054909216179055565b6007546001600160a01b03163314610c6157600080fd5b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50565b6005546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610a6c90612dcb565b6000601555565b600033610a36818585610d088383611c6f565b610d129190612e4f565b611d74565b336000908152600e602052604090205460ff16610d3357600080fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d67833084610d088730611c6f565b50600192915050565b600080601d60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea9190612e62565b90506000601d60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e659190612e62565b601c549091506001600160a01b03161580610eec5750601c5460408051636d11ad9160e11b815290516000926001600160a01b03169163da235b22916004808301926020929190829003018187875af1158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eea9190612e7f565b115b610ef557600080fd5b600080601d60009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f9190612eaf565b50601e54601d5492945090925090600160a01b900460ff1615610ff657306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190612f19565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a9190612f69565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561109b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bf9190612f69565b6110cd9060ff16600a613070565b6110e0846001600160701b038716612e16565b6110ea9190612e16565b6110f49190612e2d565b90506111096001600160701b03851682612e2d565b965050505050505090565b6001600160a01b03831661116a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a6c565b6040805160028082526060820183526000926020830190803683375050601b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156111d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f89190612e62565b8160008151811061120b5761120b61307c565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061123f5761123f61307c565b6001600160a01b03909216602092830291909101820152336000908152600e909152604090205460ff161561131b57836001600160a01b03166323b872dd84836001815181106112915761129161307c565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156112f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113149190613092565b5050505050565b601b5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061135690600090869061dead9042906004016130f3565b6000604051808303818588803b15801561136f57600080fd5b505af1158015611383573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146113b85760405162461bcd60e51b8152600401610a6c90612dcb565b6113c26000612580565b565b6005546000906001600160a01b031633146113f15760405162461bcd60e51b8152600401610a6c90612dcb565b50600c805460ff60a01b19169055600190565b6005546001600160a01b0316331461142e5760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146114835760405162461bcd60e51b8152600401610a6c90612dcb565b600c805460ff60a81b1916600160a81b17905542600655565b600080600080600080600080600080601960009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156114fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115229190612f19565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146115625760405162461bcd60e51b8152600401610a6c90612dcb565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546109a590612d91565b6005546001600160a01b031633146115bd5760405162461bcd60e51b8152600401610a6c90612dcb565b601d546001600160a01b03908116908316036116415760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a6c565b61164b82826125d2565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601d5460009081906001600160a01b0385811691161480156116b75750601b546001600160a01b03848116911614155b6001600160a01b0385166000908152600e60205260408120549192509060ff16806116fa57506001600160a01b0384166000908152600e602052604090205460ff165b601d549091506001600160a01b03858116911614600083806117195750815b6010549091501580159081906117395750600554600160a01b900460ff16155b8015611743575083155b801561174c5750815b98975050505050505050565b600033816117668286611c6f565b9050838110156117c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a6c565b610be98286868403611d74565b600033610a36818585611f12565b6005546001600160a01b0316331461180b5760405162461bcd60e51b8152600401610a6c90612dcb565b6000601455565b6005546001600160a01b0316331461183c5760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118c55760405162461bcd60e51b8152600401610a6c90612dcb565b670de0b6b3a76400006103e86118da60025490565b6118e5906005612e16565b6118ef9190612e2d565b6118f99190612e2d565b8110156119545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a6c565b61196681670de0b6b3a7640000612e16565b600b5550565b6005546001600160a01b031633146119965760405162461bcd60e51b8152600401610a6c90612dcb565b601d54600160a01b900460ff16156119f05760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a6c565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b03163314611a2f5760405162461bcd60e51b8152600401610a6c90612dcb565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314611a7e5760405162461bcd60e51b8152600401610a6c90612dcb565b620186a0611a8b60025490565b611a96906001612e16565b611aa09190612e2d565b821015611b0d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a6c565b6103e8611b1960025490565b611b24906005612e16565b611b2e9190612e2d565b821115611b9a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a6c565b50600a81905560015b919050565b6007546001600160a01b03163314611bbf57600080fd5b30600090815260208190526040902054610c6190612600565b6005546001600160a01b03163314611c025760405162461bcd60e51b8152600401610a6c90612dcb565b601d54600160a01b900460ff161515600114611c605760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a6c565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611cc45760405162461bcd60e51b8152600401610a6c90612dcb565b6001600160a01b038116611d295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6c565b610cc181612580565b6005546001600160a01b03163314611d5c5760405162461bcd60e51b8152600401610a6c90612dcb565b611d6e81670de0b6b3a764000061275a565b601e5550565b6001600160a01b038316611dd65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6c565b6001600160a01b038216611e375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611ea48484611c6f565b90506000198114611f0c5781811015611eff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a6c565b611f0c8484848403611d74565b50505050565b6001600160a01b0383166000908152600e602052604081205460ff1680611f5157506001600160a01b0383166000908152600e602052604090205460ff165b90506001600160a01b038416611f795760405162461bcd60e51b8152600401610a6c90613128565b6001600160a01b038316611f9f5760405162461bcd60e51b8152600401610a6c9061316d565b81600003611fb357611f0c8484600061276d565b601d546000906001600160a01b038681169116148015611fec57506001600160a01b0384166000908152600f602052604090205460ff16155b601d549091506000906001600160a01b03868116911614801561202857506001600160a01b0386166000908152600f602052604090205460ff16155b9050600061203e6005546001600160a01b031690565b6001600160a01b0316876001600160a01b0316148061206a57506005546001600160a01b038781169116145b905060006001600160a01b038716158061208e57506001600160a01b03871661dead145b90506000828061209b5750815b806120af5750600554600160a01b900460ff165b600c54909150600160a01b900460ff1680156120c9575080155b156122c357600c54600160a81b900460ff16806120e35750855b6121285760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a6c565b841561220d5760095487111561219e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a6c565b600b546001600160a01b0389166000908152602081905260409020546121c49089612e4f565b11156122085760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a6c565b6122c3565b836122c3576001600160a01b0388166000908152600f602052604090205460ff1615801561225457506001600160a01b0389166000908152600f602052604090205460ff16155b156122c357600b546001600160a01b03891660009081526020819052604090205461227f9089612e4f565b11156122c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a6c565b6001600160a01b0389166000908152601f602052604090205460ff1615612324576001600160a01b0388166000908152600d6020526040812054900361231f576001600160a01b0388166000908152600d602052604090204290555b612351565b600554600160a01b900460ff1661235157600c80546001600160a01b0319166001600160a01b038b161790555b600554600160a01b900460ff1615801561238457506001600160a01b0389166000908152601f602052604090205460ff16155b80156123a957506001600160a01b0389166000908152600e602052604090205460ff16155b80156123ce57506001600160a01b0388166000908152600e602052604090205460ff16155b156124355730600090815260208190526040902054600a548110156123f16128c1565b80156123fa5750805b8015612404575087155b15612432576005805460ff60a01b1916600160a01b1790556124246128dd565b6005805460ff60a01b191690555b50505b60006124418a8a611687565b9050801561256957601054601154861561247a576014546010546124659190612e4f565b91506014546011546124779190612e4f565b90505b87156124a5576015546010546124909190612e4f565b91506015546011546124a29190612e4f565b90505b60006124bc60646124b68d8661275a565b90612b04565b905082601254826124cd9190612e16565b6124d79190612e2d565b601860008282546124e89190612e4f565b909155508390506124f98383612e16565b6125039190612e2d565b601660008282546125149190612e4f565b909155505060135483906125289083612e16565b6125329190612e2d565b601760008282546125439190612e4f565b90915550508015612559576125598d308361276d565b612563818c6131b0565b9a505050505b6125748a8a8a61276d565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561164b8282611404565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126355761263561307c565b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561268e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b29190612e62565b816001815181106126c5576126c561307c565b6001600160a01b039283166020918202929092010152601b546126eb9130911684611d74565b601b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906127249085906000908690309042906004016131c3565b600060405180830381600087803b15801561273e57600080fd5b505af1158015612752573d6000803e3d6000fd5b505050505050565b60006127668284612e16565b9392505050565b6001600160a01b0383166127935760405162461bcd60e51b8152600401610a6c90613128565b6001600160a01b0382166127b95760405162461bcd60e51b8152600401610a6c9061316d565b6001600160a01b038316600090815260208190526040902054818110156128315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a6c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612868908490612e4f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128b491815260200190565b60405180910390a3611f0c565b6000806128cc610d70565b116128d75750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546129049190612e4f565b61290e9190612e4f565b905081158061291b575080155b15612924575050565b600a5482111561293457600a5491505b6000600282601854856129479190612e16565b6129519190612e2d565b61295b9190612e2d565b905060006129698483612b10565b90504761297582612600565b60006129814783612b10565b9050600061299e866124b66016548561275a90919063ffffffff16565b905060006129bb876124b66017548661275a90919063ffffffff16565b90506000816129ca84866131b0565b6129d491906131b0565b90506000871180156129e65750600081115b15612a39576129f58782612b1c565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556007546040516001600160a01b039091169085908381818185875af1925050503d8060008114612a96576040519150601f19603f3d011682016040523d82523d6000602084013e612a9b565b606091505b50506008546040519192506000916001600160a01b039091169085908381818185875af1925050503d8060008114612aef576040519150601f19603f3d011682016040523d82523d6000602084013e612af4565b606091505b5050505050505050505050505050565b60006127668284612e2d565b600061276682846131b0565b601b54612b349030906001600160a01b031684611d74565b601b546001600160a01b031663f305d719823085600080612b5d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612bc5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061131491906131ff565b600060208083528351808285015260005b81811015612c1757858101830151858201604001528201612bfb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610cc157600080fd5b60008060408385031215612c6057600080fd5b8235612c6b81612c38565b946020939093013593505050565b600060208284031215612c8b57600080fd5b5035919050565b600080600060608486031215612ca757600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612cd357600080fd5b8335612cde81612c38565b92506020840135612cee81612c38565b929592945050506040919091013590565b600060208284031215612d1157600080fd5b813561276681612c38565b8015158114610cc157600080fd5b60008060408385031215612d3d57600080fd5b8235612d4881612c38565b91506020830135612d5881612d1c565b809150509250929050565b60008060408385031215612d7657600080fd5b8235612d8181612c38565b91506020830135612d5881612c38565b600181811c90821680612da557607f821691505b602082108103612dc557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a3c57610a3c612e00565b600082612e4a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a3c57610a3c612e00565b600060208284031215612e7457600080fd5b815161276681612c38565b600060208284031215612e9157600080fd5b5051919050565b80516001600160701b0381168114611ba357600080fd5b600080600060608486031215612ec457600080fd5b612ecd84612e98565b9250612edb60208501612e98565b9150604084015163ffffffff81168114612ef457600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611ba357600080fd5b600080600080600060a08688031215612f3157600080fd5b612f3a86612eff565b9450602086015193506040860151925060608601519150612f5d60808701612eff565b90509295509295909350565b600060208284031215612f7b57600080fd5b815160ff8116811461276657600080fd5b600181815b80851115612fc7578160001904821115612fad57612fad612e00565b80851615612fba57918102915b93841c9390800290612f91565b509250929050565b600082612fde57506001610a3c565b81612feb57506000610a3c565b8160018114613001576002811461300b57613027565b6001915050610a3c565b60ff84111561301c5761301c612e00565b50506001821b610a3c565b5060208310610133831016604e8410600b841016171561304a575081810a610a3c565b6130548383612f8c565b806000190482111561306857613068612e00565b029392505050565b60006127668383612fcf565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130a457600080fd5b815161276681612d1c565b600081518084526020808501945080840160005b838110156130e85781516001600160a01b0316875295820195908201906001016130c3565b509495945050505050565b84815260806020820152600061310c60808301866130af565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a3c57610a3c612e00565b85815284602082015260a0604082015260006131e260a08301866130af565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561321457600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a79eb00f7a7ed2073407beef88d3a885435a2c98d521a3fbbc252e09b0eb25464736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000079fb1666ec49714a110a179f2b7d84bf9b3758fc000000000000000000000000c2526fc574d014b47f750c273fc4adb9a626d847

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x79fB1666Ec49714A110a179f2B7D84bf9b3758fc
Arg [1] : _developmentWallet (address): 0xc2526fC574d014B47f750C273FC4ADb9a626d847

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000079fb1666ec49714a110a179f2b7d84bf9b3758fc
Arg [1] : 000000000000000000000000c2526fc574d014b47f750c273fc4adb9a626d847


Deployed Bytecode Sourcemap

39919:17729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40165:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;40165:36:0;;;;;;;;40299:27;;;;;;;;;;-1:-1:-1;40299:27:0;;;;-1:-1:-1;;;;;40299:27:0;;;;;;-1:-1:-1;;;;;360:32:1;;;342:51;;330:2;315:18;40299:27:0;196:203:1;28197:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30689:242::-;;;;;;;;;;-1:-1:-1;30689:242:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;30689:242:0;1413:187:1;29317:108:0;;;;;;;;;;-1:-1:-1;29405:12:0;;29317:108;;44063:272;;;;;;;;;;-1:-1:-1;44063:272:0;;;;;:::i;:::-;;:::i;:::-;;44779:410;;;;;;;;;;-1:-1:-1;44779:410:0;;;;;:::i;:::-;;:::i;31511:295::-;;;;;;;;;;-1:-1:-1;31511:295:0;;;;;:::i;:::-;;:::i;54794:168::-;;;;;;;;;;-1:-1:-1;54794:168:0;;;;;:::i;:::-;;:::i;40386:34::-;;;;;;;;;;-1:-1:-1;40386:34:0;;;;-1:-1:-1;;;40386:34:0;;;;;;40214;;;;;;;;;;;;;;;;29159:93;;;;;;;;;;-1:-1:-1;29159:93:0;;29242:2;2966:36:1;;2954:2;2939:18;29159:93:0;2824:184:1;57376:232:0;;;;;;;;;;;;;:::i;51989:91::-;;;;;;;;;;;;;:::i;32215:270::-;;;;;;;;;;-1:-1:-1;32215:270:0;;;;;:::i;:::-;;:::i;45197:160::-;;;;;;;;;;-1:-1:-1;45197:160:0;;;;;:::i;:::-;;:::i;33784:240::-;;;;;;;;;;-1:-1:-1;33784:240:0;;;;;:::i;:::-;;:::i;45614:846::-;;;;;;;;;;;;;:::i;51754:126::-;;;;;;;;;;-1:-1:-1;51754:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;51844:28:0;51820:4;51844:28;;;:19;:28;;;;;;;;;51754:126;41270:42;;;;;;;;;;-1:-1:-1;41270:42:0;;;;-1:-1:-1;;;;;41270:42:0;;;55768:750;;;;;;;;;;-1:-1:-1;55768:750:0;;;;;:::i;:::-;;:::i;41084:177::-;;;;;;;;;;-1:-1:-1;41084:177:0;;;;-1:-1:-1;;;;;41084:177:0;;;29488;;;;;;;;;;-1:-1:-1;29488:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;29639:18:0;29607:7;29639:18;;;;;;;;;;;;29488:177;24819:103;;;;;;;;;;;;;:::i;45365:122::-;;;;;;;;;;;;;:::i;44604:167::-;;;;;;;;;;-1:-1:-1;44604:167:0;;;;;:::i;:::-;;:::i;40261:25::-;;;;;;;;;;;;;;;;43932:123;;;;;;;;;;;;;:::i;24168:87::-;;;;;;;;;;-1:-1:-1;24241:6:0;;-1:-1:-1;;;;;24241:6:0;24168:87;;46468:491;;;;;;;;;;;;;:::i;:::-;;;;4020:22:1;4069:15;;;4051:34;;4116:2;4101:18;;4094:34;;;;4144:18;;4137:34;;;;4202:2;4187:18;;4180:34;4251:15;;;4245:3;4230:19;;4223:44;3997:3;3982:19;46468:491:0;3757:516:1;55644:116:0;;;;;;;;;;-1:-1:-1;55644:116:0;;;;;:::i;:::-;;:::i;28416:104::-;;;;;;;;;;;;;:::i;56526:301::-;;;;;;;;;;-1:-1:-1;56526:301:0;;;;;:::i;:::-;;:::i;41369:29::-;;;;;;;;;;-1:-1:-1;41369:29:0;;;;-1:-1:-1;;;;;41369:29:0;;;46967:506;;;;;;;;;;-1:-1:-1;46967:506:0;;;;;:::i;:::-;;:::i;32988:505::-;;;;;;;;;;-1:-1:-1;32988:505:0;;;;;:::i;:::-;;:::i;29871:234::-;;;;;;;;;;-1:-1:-1;29871:234:0;;;;;:::i;:::-;;:::i;51888:93::-;;;;;;;;;;;;;:::i;40429:50::-;;;;;;;;;;-1:-1:-1;40429:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;41521:58;;;;;;;;;;-1:-1:-1;41521:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55334:182;;;;;;;;;;-1:-1:-1;55334:182:0;;;;;:::i;:::-;;:::i;44343:253::-;;;;;;;;;;-1:-1:-1;44343:253:0;;;;;:::i;:::-;;:::i;54970:173::-;;;;;;;;;;;;;:::i;55524:112::-;;;;;;;;;;-1:-1:-1;55524:112:0;;;;;:::i;:::-;;:::i;51248:498::-;;;;;;;;;;-1:-1:-1;51248:498:0;;;;;:::i;:::-;;:::i;57078:290::-;;;;;;;;;;;;;:::i;55151:175::-;;;;;;;;;;;;;:::i;30168:201::-;;;;;;;;;;-1:-1:-1;30168:201:0;;;;;:::i;:::-;;:::i;40339:34::-;;;;;;;;;;-1:-1:-1;40339:34:0;;;;-1:-1:-1;;;40339:34:0;;;;;;25077:238;;;;;;;;;;-1:-1:-1;25077:238:0;;;;;:::i;:::-;;:::i;40630:25::-;;;;;;;;;;;;;;;;54668:118;;;;;;;;;;-1:-1:-1;54668:118:0;;;;;:::i;:::-;;:::i;28197:100::-;28251:13;28284:5;28277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28197:100;:::o;30689:242::-;30808:4;1682:10;30869:32;1682:10;30885:7;30894:6;30869:8;:32::i;:::-;30919:4;30912:11;;;30689:242;;;;;:::o;44063:272::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;;;;;;;;;44200:4:::1;44192;44171:13;29405:12:::0;;;29317:108;44171:13:::1;:17;::::0;44187:1:::1;44171:17;:::i;:::-;44170:26;;;;:::i;:::-;44169:35;;;;:::i;:::-;44159:6;:45;;44137:142;;;::::0;-1:-1:-1;;;44137:142:0;;6146:2:1;44137:142:0::1;::::0;::::1;6128:21:1::0;6185:2;6165:18;;;6158:30;6224:34;6204:18;;;6197:62;-1:-1:-1;;;6275:18:1;;;6268:45;6330:19;;44137:142:0::1;5944:411:1::0;44137:142:0::1;44314:13;:6:::0;44323:4:::1;44314:13;:::i;:::-;44290:21;:37:::0;-1:-1:-1;44063:272:0:o;44779:410::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;44931:13:::1;:28:::0;;;44970:15:::1;:32:::0;;;45013:13:::1;:28:::0;;;45029:12;45065:31:::1;44988:14:::0;44947:12;45065:31:::1;:::i;:::-;:47;;;;:::i;:::-;45052:10;:60:::0;;;45145:2:::1;-1:-1:-1::0;45131:16:0::1;45123:58;;;::::0;-1:-1:-1;;;45123:58:0;;6692:2:1;45123:58:0::1;::::0;::::1;6674:21:1::0;6731:2;6711:18;;;6704:30;6770:31;6750:18;;;6743:59;6819:18;;45123:58:0::1;6490:353:1::0;45123:58:0::1;44779:410:::0;;;:::o;31511:295::-;31642:4;1682:10;31700:38;31716:4;1682:10;31731:6;31700:15;:38::i;:::-;31749:27;31759:4;31765:2;31769:6;31749:9;:27::i;:::-;-1:-1:-1;31794:4:0;;31511:295;-1:-1:-1;;;;31511:295:0:o;54794:168::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;54869:16:::1;:23:::0;;-1:-1:-1;;;;;54869:23:0;;::::1;-1:-1:-1::0;;;;;;54869:23:0;;::::1;::::0;::::1;::::0;;;54903:9:::1;:51:::0;;;;::::1;;::::0;;54794:168::o;57376:232::-;57442:14;;-1:-1:-1;;;;;57442:14:0;57428:10;:28;57420:37;;;;;;57495:14;;57487:86;;57469:12;;-1:-1:-1;;;;;57495:14:0;;57537:21;;57469:12;57487:86;57469:12;57487:86;57537:21;57495:14;57487:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57468:105;;;57592:7;57584:16;;;;;;57409:199;57376:232::o;51989:91::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;52071:1:::1;52051:17;:21:::0;51989:91::o;32215:270::-;32330:4;1682:10;32391:64;1682:10;32407:7;32444:10;32416:25;1682:10;32407:7;32416:9;:25::i;:::-;:38;;;;:::i;:::-;32391:8;:64::i;45197:160::-;45289:10;45269:31;;;;:19;:31;;;;;;;;45261:40;;;;;;45312:11;:37;;-1:-1:-1;;;;;;45312:37:0;-1:-1:-1;;;;;45312:37:0;;;;;;;;;;45197:160::o;33784:240::-;33891:4;33908:86;33917:5;33932:4;33987:6;33953:31;33963:5;33978:4;33953:9;:31::i;33908:86::-;-1:-1:-1;34012:4:0;33784:240;;;;:::o;45614:846::-;45655:7;45675:21;45743:14;;;;;;;;;-1:-1:-1;;;;;45743:14:0;-1:-1:-1;;;;;45728:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45675:103;;45789:21;45857:14;;;;;;;;;-1:-1:-1;;;;;45857:14:0;-1:-1:-1;;;;;45842:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45919:11;;45789:103;;-1:-1:-1;;;;;;45919:11:0;45911:34;;:82;;-1:-1:-1;45949:11:0;;:40;;;-1:-1:-1;;;45949:40:0;;;;45992:1;;-1:-1:-1;;;;;45949:11:0;;:38;;:40;;;;;;;;;;;;;;45992:1;45949:11;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;45911:82;45903:91;;;;;;46006:12;46020;46053:14;;;;;;;;;-1:-1:-1;;;;;46053:14:0;-1:-1:-1;;;;;46038:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;46131:14:0;;46160:19;;46005:91;;-1:-1:-1;46005:91:0;;-1:-1:-1;46131:14:0;-1:-1:-1;;;46160:19:0;;;;46156:100;;;46223:4;-1:-1:-1;;;;;46223:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;46196:48:0;;-1:-1:-1;;;;46156:100:0;46266:12;46394:6;-1:-1:-1;;;;;46394:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46386:26;;46363:6;-1:-1:-1;;;;;46363:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46351:30;;46355:26;;46351:2;:30;:::i;:::-;46282:52;46319:14;-1:-1:-1;;;;;46282:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;46281:131;;;;:::i;:::-;46266:146;-1:-1:-1;46431:20:0;-1:-1:-1;;;;;46438:13:0;;46266:146;46431:20;:::i;:::-;46423:29;;;;;;;;45614:846;:::o;55768:750::-;-1:-1:-1;;;;;55901:20:0;;55893:59;;;;-1:-1:-1;;;55893:59:0;;10667:2:1;55893:59:0;;;10649:21:1;10706:2;10686:18;;;10679:30;10745:28;10725:18;;;10718:56;10791:18;;55893:59:0;10465:350:1;55893:59:0;55987:16;;;56001:1;55987:16;;;;;;;;55963:21;;55987:16;;;;;;;;-1:-1:-1;;56024:16:0;;:23;;;-1:-1:-1;;;56024:23:0;;;;55963:40;;-1:-1:-1;;;;;;56024:16:0;;;;:21;;-1:-1:-1;56024:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56014:4;56019:1;56014:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;56014:33:0;;;-1:-1:-1;;;;;56014:33:0;;;;;56076:4;56058;56063:1;56058:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56058:23:0;;;:7;;;;;;;;;;:23;56116:10;56096:31;;;;:19;:31;;;;;;;;;56092:136;;;56151:6;-1:-1:-1;;;;;56144:27:0;;56172:4;56178;56183:1;56178:7;;;;;;;;:::i;:::-;;;;;;;;;;;56144:51;;-1:-1:-1;;;;;;56144:51:0;;;;;;;-1:-1:-1;;;;;11342:15:1;;;56144:51:0;;;11324:34:1;11394:15;;11374:18;;;11367:43;11426:18;;;11419:34;;;11259:18;;56144:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56210:7;55768:750;;;:::o;56092:136::-;56264:16;;:246;;-1:-1:-1;;;56264:246:0;;-1:-1:-1;;;;;56264:16:0;;;;:67;;56353:7;;56264:246;;:16;;56435:4;;56462:6;;56484:15;;56264:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55882:636;55768:750;;;:::o;24819:103::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;24884:30:::1;24911:1;24884:18;:30::i;:::-;24819:103::o:0;45365:122::-;24241:6;;45417:4;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;-1:-1:-1;45434:15:0::1;:23:::0;;-1:-1:-1;;;;45434:23:0::1;::::0;;;45365:122;:::o;44604:167::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44717:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44717:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44604:167::o;43932:123::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;43985:14:::1;:21:::0;;-1:-1:-1;;;;43985:21:0::1;-1:-1:-1::0;;;43985:21:0::1;::::0;;44032:15:::1;44017:12;:30:::0;43932:123::o;46468:491::-;46558:6;46579;46600:7;46622;46644:6;46693:14;46722:12;46749:17;46781;46813:22;46849:9;;;;;;;;;-1:-1:-1;;;;;46849:9:0;-1:-1:-1;;;;;46849:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46678:198;;;;-1:-1:-1;46678:198:0;;-1:-1:-1;46678:198:0;-1:-1:-1;46678:198:0;;-1:-1:-1;46468:491:0;-1:-1:-1;;;;;;46468:491:0:o;55644:116::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;55724:16:::1;:28:::0;;-1:-1:-1;;;;;;55724:28:0::1;-1:-1:-1::0;;;;;55724:28:0;;;::::1;::::0;;;::::1;::::0;;55644:116::o;28416:104::-;28472:13;28505:7;28498:14;;;;;:::i;56526:301::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;56635:14:::1;::::0;-1:-1:-1;;;;;56635:14:0;;::::1;56627:22:::0;;::::1;::::0;56619:92:::1;;;::::0;-1:-1:-1;;;56619:92:0;;12897:2:1;56619:92:0::1;::::0;::::1;12879:21:1::0;12936:2;12916:18;;;12909:30;12975:34;12955:18;;;12948:62;13046:27;13026:18;;;13019:55;13091:19;;56619:92:0::1;12695:421:1::0;56619:92:0::1;56722:41;56751:4;56757:5;56722:28;:41::i;:::-;56779:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;56779:40:0;::::1;::::0;::::1;::::0;;;::::1;56526:301:::0;;:::o;46967:506::-;47068:14;;47030:4;;;;-1:-1:-1;;;;;47060:22:0;;;47068:14;;47060:22;:57;;;;-1:-1:-1;47100:16:0;;-1:-1:-1;;;;;47086:31:0;;;47100:16;;47086:31;;47060:57;-1:-1:-1;;;;;47153:25:0;;47128:22;47153:25;;;:19;:25;;;;;;47047:70;;-1:-1:-1;47128:22:0;47153:25;;;:52;;-1:-1:-1;;;;;;47182:23:0;;;;;;:19;:23;;;;;;;;47153:52;47236:14;;47128:77;;-1:-1:-1;;;;;;47230:20:0;;;47236:14;;47230:20;47216:11;47276:5;;:15;;;47285:6;47276:15;47319:10;;47262:29;;-1:-1:-1;47319:14:0;;;;;;47368:39;;-1:-1:-1;47394:13:0;;-1:-1:-1;;;47394:13:0;;;;47393:14;47368:39;:74;;;;;47425:17;47424:18;47368:74;:97;;;;;47459:6;47368:97;47347:118;46967:506;-1:-1:-1;;;;;;;;46967:506:0:o;32988:505::-;33108:4;1682:10;33108:4;33196:25;1682:10;33213:7;33196:9;:25::i;:::-;33169:52;;33274:15;33254:16;:35;;33232:122;;;;-1:-1:-1;;;33232:122:0;;13323:2:1;33232:122:0;;;13305:21:1;13362:2;13342:18;;;13335:30;13401:34;13381:18;;;13374:62;-1:-1:-1;;;13452:18:1;;;13445:35;13497:19;;33232:122:0;13121:401:1;33232:122:0;33390:60;33399:5;33406:7;33434:15;33415:16;:34;33390:8;:60::i;29871:234::-;29986:4;1682:10;30047:28;1682:10;30064:2;30068:6;30047:9;:28::i;51888:93::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;51972:1:::1;51951:18;:22:::0;51888:93::o;55334:182::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55419:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;55419:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;55474:34;;1553:41:1;;;55474:34:0::1;::::0;1526:18:1;55474:34:0::1;;;;;;;55334:182:::0;;:::o;44343:253::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;44483:4:::1;44475;44454:13;29405:12:::0;;;29317:108;44454:13:::1;:17;::::0;44470:1:::1;44454:17;:::i;:::-;44453:26;;;;:::i;:::-;44452:35;;;;:::i;:::-;44442:6;:45;;44420:131;;;::::0;-1:-1:-1;;;44420:131:0;;13729:2:1;44420:131:0::1;::::0;::::1;13711:21:1::0;13768:2;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;-1:-1:-1;;;13858:18:1;;;13851:34;13902:19;;44420:131:0::1;13527:400:1::0;44420:131:0::1;44575:13;:6:::0;44584:4:::1;44575:13;:::i;:::-;44562:10;:26:::0;-1:-1:-1;44343:253:0:o;54970:173::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;55037:19:::1;::::0;-1:-1:-1;;;55037:19:0;::::1;;;:28;55029:69;;;::::0;-1:-1:-1;;;55029:69:0;;14134:2:1;55029:69:0::1;::::0;::::1;14116:21:1::0;14173:2;14153:18;;;14146:30;14212;14192:18;;;14185:58;14260:18;;55029:69:0::1;13932:352:1::0;55029:69:0::1;55109:19;:26:::0;;-1:-1:-1;;;;55109:26:0::1;-1:-1:-1::0;;;55109:26:0::1;::::0;;54970:173::o;55524:112::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;55602:14:::1;:26:::0;;-1:-1:-1;;;;;;55602:26:0::1;-1:-1:-1::0;;;;;55602:26:0;;;::::1;::::0;;;::::1;::::0;;55524:112::o;51248:498::-;24241:6;;51356:4;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;51435:6:::1;51414:13;29405:12:::0;;;29317:108;51414:13:::1;:17;::::0;51430:1:::1;51414:17;:::i;:::-;51413:28;;;;:::i;:::-;51400:9;:41;;51378:144;;;::::0;-1:-1:-1;;;51378:144:0;;14491:2:1;51378:144:0::1;::::0;::::1;14473:21:1::0;14530:2;14510:18;;;14503:30;14569:34;14549:18;;;14542:62;-1:-1:-1;;;14620:18:1;;;14613:51;14681:19;;51378:144:0::1;14289:417:1::0;51378:144:0::1;51590:4;51569:13;29405:12:::0;;;29317:108;51569:13:::1;:17;::::0;51585:1:::1;51569:17;:::i;:::-;51568:26;;;;:::i;:::-;51555:9;:39;;51533:141;;;::::0;-1:-1:-1;;;51533:141:0;;14913:2:1;51533:141:0::1;::::0;::::1;14895:21:1::0;14952:2;14932:18;;;14925:30;14991:34;14971:18;;;14964:62;-1:-1:-1;;;15042:18:1;;;15035:50;15102:19;;51533:141:0::1;14711:416:1::0;51533:141:0::1;-1:-1:-1::0;51685:19:0::1;:31:::0;;;51734:4:::1;24459:1;51248:498:::0;;;:::o;57078:290::-;57146:14;;-1:-1:-1;;;;;57146:14:0;57132:10;:28;57124:37;;;;;;57208:4;29607:7;29639:18;;;;;;;;;;;57172:43;;:17;:43::i;55151:175::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;55219:19:::1;::::0;-1:-1:-1;;;55219:19:0;::::1;;;:27;;55242:4;55219:27;55211:69;;;::::0;-1:-1:-1;;;55211:69:0;;15334:2:1;55211:69:0::1;::::0;::::1;15316:21:1::0;15373:2;15353:18;;;15346:30;15412:31;15392:18;;;15385:59;15461:18;;55211:69:0::1;15132:353:1::0;55211:69:0::1;55291:19;:27:::0;;-1:-1:-1;;;;55291:27:0::1;::::0;;55151:175::o;30168:201::-;-1:-1:-1;;;;;30334:18:0;;;30302:7;30334:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30168:201::o;25077:238::-;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25180:22:0;::::1;25158:110;;;::::0;-1:-1:-1;;;25158:110:0;;15692:2:1;25158:110:0::1;::::0;::::1;15674:21:1::0;15731:2;15711:18;;;15704:30;15770:34;15750:18;;;15743:62;-1:-1:-1;;;15821:18:1;;;15814:36;15867:19;;25158:110:0::1;15490:402:1::0;25158:110:0::1;25279:28;25298:8;25279:18;:28::i;54668:118::-:0;24241:6;;-1:-1:-1;;;;;24241:6:0;1682:10;24388:23;24380:68;;;;-1:-1:-1;;;24380:68:0;;;;;;;:::i;:::-;54762:15:::1;:3:::0;54770:6:::1;54762:7;:15::i;:::-;54738:14;:40:::0;-1:-1:-1;54668:118:0:o;37259:380::-;-1:-1:-1;;;;;37395:19:0;;37387:68;;;;-1:-1:-1;;;37387:68:0;;16099:2:1;37387:68:0;;;16081:21:1;16138:2;16118:18;;;16111:30;16177:34;16157:18;;;16150:62;-1:-1:-1;;;16228:18:1;;;16221:34;16272:19;;37387:68:0;15897:400:1;37387:68:0;-1:-1:-1;;;;;37474:21:0;;37466:68;;;;-1:-1:-1;;;37466:68:0;;16504:2:1;37466:68:0;;;16486:21:1;16543:2;16523:18;;;16516:30;16582:34;16562:18;;;16555:62;-1:-1:-1;;;16633:18:1;;;16626:32;16675:19;;37466:68:0;16302:398:1;37466:68:0;-1:-1:-1;;;;;37547:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37599:32;;160:25:1;;;37599:32:0;;133:18:1;37599:32:0;;;;;;;37259:380;;;:::o;37930:502::-;38065:24;38092:25;38102:5;38109:7;38092:9;:25::i;:::-;38065:52;;-1:-1:-1;;38132:16:0;:37;38128:297;;38232:6;38212:16;:26;;38186:117;;;;-1:-1:-1;;;38186:117:0;;16907:2:1;38186:117:0;;;16889:21:1;16946:2;16926:18;;;16919:30;16985:31;16965:18;;;16958:59;17034:18;;38186:117:0;16705:353:1;38186:117:0;38347:51;38356:5;38363:7;38391:6;38372:16;:25;38347:8;:51::i;:::-;38054:378;37930:502;;;:::o;47481:3759::-;-1:-1:-1;;;;;47629:25:0;;47605:21;47629:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;47671:23:0;;;;;;:19;:23;;;;;;;;47629:65;47605:89;-1:-1:-1;;;;;;47715:18:0;;47707:68;;;;-1:-1:-1;;;47707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47794:16:0;;47786:64;;;;-1:-1:-1;;;47786:64:0;;;;;;;:::i;:::-;47867:6;47877:1;47867:11;47863:93;;47895:28;47911:4;47917:2;47921:1;47895:15;:28::i;47863:93::-;47989:14;;47968:10;;-1:-1:-1;;;;;47981:22:0;;;47989:14;;47981:22;:75;;;;-1:-1:-1;;;;;;48021:35:0;;;;;;:31;:35;;;;;;;;48020:36;47981:75;48087:14;;47968:88;;-1:-1:-1;48067:11:0;;-1:-1:-1;;;;;48081:20:0;;;48087:14;;48081:20;:75;;;;-1:-1:-1;;;;;;48119:37:0;;;;;;:31;:37;;;;;;;;48118:38;48081:75;48067:89;;48167:16;48194:7;24241:6;;-1:-1:-1;;;;;24241:6:0;;24168:87;48194:7;-1:-1:-1;;;;;48186:15:0;:4;-1:-1:-1;;;;;48186:15:0;;:32;;;-1:-1:-1;24241:6:0;;-1:-1:-1;;;;;48205:13:0;;;24241:6;;48205:13;48186:32;48167:51;-1:-1:-1;48229:11:0;-1:-1:-1;;;;;48243:16:0;;;;:41;;-1:-1:-1;;;;;;48263:21:0;;48277:6;48263:21;48243:41;48229:55;;48295:17;48315:11;:21;;;;48330:6;48315:21;:38;;;-1:-1:-1;48340:13:0;;-1:-1:-1;;;48340:13:0;;;;48315:38;48378:15;;48295:58;;-1:-1:-1;;;;48378:15:0;;;;:32;;;;;48398:12;48397:13;48378:32;48374:1076;;;48453:14;;-1:-1:-1;;;48453:14:0;;;;;:34;;;48471:16;48453:34;48427:118;;;;-1:-1:-1;;;48427:118:0;;18075:2:1;48427:118:0;;;18057:21:1;18114:2;18094:18;;;18087:30;-1:-1:-1;;;18133:18:1;;;18126:52;18195:18;;48427:118:0;17873:346:1;48427:118:0;48564:5;48560:879;;;48630:21;;48620:6;:31;;48590:158;;;;-1:-1:-1;;;48590:158:0;;18426:2:1;48590:158:0;;;18408:21:1;18465:2;18445:18;;;18438:30;18504:34;18484:18;;;18477:62;-1:-1:-1;;;18555:18:1;;;18548:51;18616:19;;48590:158:0;18224:417:1;48590:158:0;48823:10;;-1:-1:-1;;;;;29639:18:0;;29607:7;29639:18;;;;;;;;;;;48797:22;;:6;:22;:::i;:::-;:36;;48767:129;;;;-1:-1:-1;;;48767:129:0;;18848:2:1;48767:129:0;;;18830:21:1;18887:2;18867:18;;;18860:30;-1:-1:-1;;;18906:18:1;;;18899:49;18965:18;;48767:129:0;18646:343:1;48767:129:0;48560:879;;;48922:6;48918:521;;-1:-1:-1;;;;;49165:35:0;;;;;;:31;:35;;;;;;;;49164:36;:95;;;;-1:-1:-1;;;;;;49222:37:0;;;;;;:31;:37;;;;;;;;49221:38;49164:95;49142:297;;;49350:10;;-1:-1:-1;;;;;29639:18:0;;29607:7;29639:18;;;;;;;;;;;49324:22;;:6;:22;:::i;:::-;:36;;49294:129;;;;-1:-1:-1;;;49294:129:0;;18848:2:1;49294:129:0;;;18830:21:1;18887:2;18867:18;;;18860:30;-1:-1:-1;;;18906:18:1;;;18899:49;18965:18;;49294:129:0;18646:343:1;49294:129:0;-1:-1:-1;;;;;49478:31:0;;;;;;:25;:31;;;;;;;;49474:271;;;-1:-1:-1;;;;;49530:19:0;;;;;;:15;:19;;;;;;:24;;49526:102;;-1:-1:-1;;;;;49575:19:0;;;;;;:15;:19;;;;;49597:15;49575:37;;49526:102;49474:271;;;49665:13;;-1:-1:-1;;;49665:13:0;;;;49660:74;;49699:12;:19;;-1:-1:-1;;;;;;49699:19:0;-1:-1:-1;;;;;49699:19:0;;;;;49660:74;49762:13;;-1:-1:-1;;;49762:13:0;;;;49761:14;:63;;;;-1:-1:-1;;;;;;49793:31:0;;;;;;:25;:31;;;;;;;;49792:32;49761:63;:106;;;;-1:-1:-1;;;;;;49842:25:0;;;;;;:19;:25;;;;;;;;49841:26;49761:106;:147;;;;-1:-1:-1;;;;;;49885:23:0;;;;;;:19;:23;;;;;;;;49884:24;49761:147;49757:536;;;49974:4;49925:28;29639:18;;;;;;;;;;;50034:19;;50010:43;;;50072:17;:15;:17::i;:::-;:45;;;;;50110:7;50072:45;:84;;;;;50140:16;50139:17;50072:84;50068:214;;;50177:13;:20;;-1:-1:-1;;;;50177:20:0;-1:-1:-1;;;50177:20:0;;;50216:10;:8;:10::i;:::-;50245:13;:21;;-1:-1:-1;;;;50245:21:0;;;50068:214;49910:383;;49757:536;50305:12;50320:21;50332:4;50338:2;50320:11;:21::i;:::-;50305:36;;50356:7;50352:837;;;50396:10;;50441:13;;50469:151;;;;50521:18;;50508:10;;:31;;;;:::i;:::-;50500:39;;50586:18;;50570:13;;:34;;;;:::i;:::-;50558:46;;50469:151;50638:5;50634:148;;;50685:17;;50672:10;;:30;;;;:::i;:::-;50664:38;;50749:17;;50733:13;;:33;;;;:::i;:::-;50721:45;;50634:148;50796:12;50811:26;50833:3;50811:17;:6;50822:5;50811:10;:17::i;:::-;:21;;:26::i;:::-;50796:41;;50900:5;50883:13;;50876:4;:20;;;;:::i;:::-;50875:30;;;;:::i;:::-;50852:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;50964:5:0;;-1:-1:-1;50944:16:0;50951:9;50944:4;:16;:::i;:::-;50943:26;;;;:::i;:::-;50920:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;51017:15:0;;51036:5;;51010:22;;:4;:22;:::i;:::-;51009:32;;;;:::i;:::-;50984:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;51062:8:0;;51058:91;;51091:42;51107:4;51121;51128;51091:15;:42::i;:::-;51163:14;51173:4;51163:14;;:::i;:::-;;;50365:824;;;50352:837;51199:33;51215:4;51221:2;51225:6;51199:15;:33::i;:::-;47594:3646;;;;;;;47481:3759;;;:::o;25475:191::-;25568:6;;;-1:-1:-1;;;;;25585:17:0;;;-1:-1:-1;;;;;;25585:17:0;;;;;;;25618:40;;25568:6;;;25585:17;25568:6;;25618:40;;25549:16;;25618:40;25538:128;25475:191;:::o;56835:235::-;-1:-1:-1;;;;;56918:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;56918:39:0;;;;;;;56968:38;56918:31;:39;56968:25;:38::i;52088:479::-;52179:16;;;52193:1;52179:16;;;;;;;;52155:21;;52179:16;;;;;;;;;;-1:-1:-1;52179:16:0;52155:40;;52224:4;52206;52211:1;52206:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52206:23:0;;;:7;;;;;;;;;;:23;;;;52250:16;;:23;;;-1:-1:-1;;;52250:23:0;;;;:16;;;;;:21;;:23;;;;;52206:7;;52250:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52240:4;52245:1;52240:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52240:33:0;;;:7;;;;;;;;;:33;52318:16;;52286:63;;52303:4;;52318:16;52337:11;52286:8;:63::i;:::-;52362:16;;:197;;-1:-1:-1;;;52362:197:0;;-1:-1:-1;;;;;52362:16:0;;;;:67;;:197;;52444:11;;52362:16;;52486:4;;52513;;52533:15;;52362:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52144:423;52088:479;:::o;19797:98::-;19855:7;19882:5;19886:1;19882;:5;:::i;:::-;19875:12;19797:98;-1:-1:-1;;;19797:98:0:o;34503:708::-;-1:-1:-1;;;;;34634:18:0;;34626:68;;;;-1:-1:-1;;;34626:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34713:16:0;;34705:64;;;;-1:-1:-1;;;34705:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34855:15:0;;34833:19;34855:15;;;;;;;;;;;34903:21;;;;34881:109;;;;-1:-1:-1;;;34881:109:0;;19916:2:1;34881:109:0;;;19898:21:1;19955:2;19935:18;;;19928:30;19994:34;19974:18;;;19967:62;-1:-1:-1;;;20045:18:1;;;20038:36;20091:19;;34881:109:0;19714:402:1;34881:109:0;-1:-1:-1;;;;;35026:15:0;;;:9;:15;;;;;;;;;;;35044:20;;;35026:38;;35086:13;;;;;;;;:23;;35058:6;;35026:9;35086:23;;35058:6;;35086:23;:::i;:::-;;;;;;;;35142:2;-1:-1:-1;;;;;35127:26:0;35136:4;-1:-1:-1;;;;;35127:26:0;;35146:6;35127:26;;;;160:25:1;;148:2;133:18;;14:177;35127:26:0;;;;;;;;35166:37;44779:410;45495:111;45540:4;45582:1;45564:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;45593:5:0;;45495:111::o;45564:34::-;-1:-1:-1;45586:4:0;;45495:111::o;52946:1714::-;53029:4;52985:23;29639:18;;;;;;;;;;;52985:50;;53046:25;53132:21;;53096:19;;53074;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53046:107;-1:-1:-1;53168:20:0;;;:46;;-1:-1:-1;53192:22:0;;53168:46;53164:59;;;53216:7;;52946:1714::o;53164:59::-;53255:19;;53237:15;:37;53233:107;;;53309:19;;53291:37;;53233:107;53350:23;53464:1;53431:17;53395:19;;53377:15;:37;;;;:::i;:::-;53376:72;;;;:::i;:::-;:89;;;;:::i;:::-;53350:115;-1:-1:-1;53476:26:0;53505:36;:15;53350:115;53505:19;:36::i;:::-;53476:65;-1:-1:-1;53580:21:0;53612:37;53476:65;53612:17;:37::i;:::-;53660:18;53681:44;:21;53707:17;53681:25;:44::i;:::-;53660:65;;53736:23;53762:82;53816:17;53762:35;53777:19;;53762:10;:14;;:35;;;;:::i;:82::-;53736:108;;53855:25;53883:84;53939:17;53883:37;53898:21;;53883:10;:14;;:37;;;;:::i;:84::-;53855:112;-1:-1:-1;53978:23:0;53855:112;54004:28;54017:15;54004:10;:28;:::i;:::-;:48;;;;:::i;:::-;53978:74;;54087:1;54069:15;:19;:42;;;;;54110:1;54092:15;:19;54069:42;54065:280;;;54128:47;54142:15;54159;54128:13;:47::i;:::-;54299:19;;54195:138;;;20323:25:1;;;20379:2;20364:18;;20357:34;;;20407:18;;;20400:34;;;;54195:138:0;;;;;;20311:2:1;54195:138:0;;;54065:280;54379:1;54357:19;:23;;;54391:19;:23;;;54425:21;:25;;;54499:14;;54491:58;;-1:-1:-1;;;;;54499:14:0;;;;54528:15;;54379:1;54491:58;54379:1;54491:58;54528:15;54499:14;54491:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54598:16:0;;54590:62;;54463:86;;-1:-1:-1;54561:23:0;;-1:-1:-1;;;;;54598:16:0;;;;54629:17;;54561:23;54590:62;54561:23;54590:62;54629:17;54598:16;54590:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;52946:1714:0:o;20196:98::-;20254:7;20281:5;20285:1;20281;:5;:::i;19440:98::-;19498:7;19525:5;19529:1;19525;:5;:::i;52575:363::-;52689:16;;52657:63;;52674:4;;-1:-1:-1;;;;;52689:16:0;52708:11;52657:8;:63::i;:::-;52731:16;;-1:-1:-1;;;;;52731:16:0;:32;52771:9;52804:4;52824:11;52731:16;;52882:7;24241:6;;-1:-1:-1;;;;;24241:6:0;;24168:87;52882:7;52731:199;;;;;;-1:-1:-1;;;;;;52731:199:0;;;-1:-1:-1;;;;;20804:15:1;;;52731:199:0;;;20786:34:1;20836:18;;;20829:34;;;;20879:18;;;20872:34;;;;20922:18;;;20915:34;20986:15;;;20965:19;;;20958:44;52904:15:0;21018:19:1;;;21011:35;20720:19;;52731:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093: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:316::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;-1:-1:-1;;1975:23:1;;;2045:2;2030:18;;2017:32;;-1:-1:-1;2096:2:1;2081:18;;;2068:32;;1790:316;-1:-1:-1;1790:316:1:o;2111:456::-;2188:6;2196;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;2312:9;2299:23;2331:31;2356:5;2331:31;:::i;:::-;2381:5;-1:-1:-1;2438:2:1;2423:18;;2410:32;2451:33;2410:32;2451:33;:::i;:::-;2111:456;;2503:7;;-1:-1:-1;;;2557:2:1;2542:18;;;;2529:32;;2111:456::o;2572:247::-;2631:6;2684:2;2672:9;2663:7;2659:23;2655:32;2652:52;;;2700:1;2697;2690:12;2652:52;2739:9;2726:23;2758:31;2783:5;2758:31;:::i;3247:118::-;3333:5;3326:13;3319:21;3312:5;3309:32;3299:60;;3355:1;3352;3345:12;3370:382;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:52;;;3512:1;3509;3502:12;3464:52;3551:9;3538:23;3570:31;3595:5;3570:31;:::i;:::-;3620:5;-1:-1:-1;3677:2:1;3662:18;;3649:32;3690:30;3649:32;3690:30;:::i;:::-;3739:7;3729:17;;;3370:382;;;;;:::o;4278:388::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4462:9;4449:23;4481:31;4506:5;4481:31;:::i;:::-;4531:5;-1:-1:-1;4588:2:1;4573:18;;4560:32;4601:33;4560:32;4601:33;:::i;4671:380::-;4750:1;4746:12;;;;4793;;;4814:61;;4868:4;4860:6;4856:17;4846:27;;4814:61;4921:2;4913:6;4910:14;4890:18;4887:38;4884:161;;4967:10;4962:3;4958:20;4955:1;4948:31;5002:4;4999:1;4992:15;5030:4;5027:1;5020:15;4884:161;;4671:380;;;:::o;5056:356::-;5258:2;5240:21;;;5277:18;;;5270:30;5336:34;5331:2;5316:18;;5309:62;5403:2;5388:18;;5056:356::o;5417:127::-;5478:10;5473:3;5469:20;5466:1;5459:31;5509:4;5506:1;5499:15;5533:4;5530:1;5523:15;5549:168;5622:9;;;5653;;5670:15;;;5664:22;;5650:37;5640:71;;5691:18;;:::i;5722:217::-;5762:1;5788;5778:132;;5832:10;5827:3;5823:20;5820:1;5813:31;5867:4;5864:1;5857:15;5895:4;5892:1;5885:15;5778:132;-1:-1:-1;5924:9:1;;5722:217::o;6360:125::-;6425:9;;;6446:10;;;6443:36;;;6459:18;;:::i;7058:251::-;7128:6;7181:2;7169:9;7160:7;7156:23;7152:32;7149:52;;;7197:1;7194;7187:12;7149:52;7229:9;7223:16;7248:31;7273:5;7248:31;:::i;7314:184::-;7384:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:52;;;7453:1;7450;7443:12;7405:52;-1:-1:-1;7476:16:1;;7314:184;-1:-1:-1;7314:184:1:o;7503:188::-;7582:13;;-1:-1:-1;;;;;7624:42:1;;7614:53;;7604:81;;7681:1;7678;7671:12;7696:450;7783:6;7791;7799;7852:2;7840:9;7831:7;7827:23;7823:32;7820:52;;;7868:1;7865;7858:12;7820:52;7891:40;7921:9;7891:40;:::i;:::-;7881:50;;7950:49;7995:2;7984:9;7980:18;7950:49;:::i;:::-;7940:59;;8042:2;8031:9;8027:18;8021:25;8086:10;8079:5;8075:22;8068:5;8065:33;8055:61;;8112:1;8109;8102:12;8055:61;8135:5;8125:15;;;7696:450;;;;;:::o;8151:179::-;8229:13;;8282:22;8271:34;;8261:45;;8251:73;;8320:1;8317;8310:12;8335:473;8438:6;8446;8454;8462;8470;8523:3;8511:9;8502:7;8498:23;8494:33;8491:53;;;8540:1;8537;8530:12;8491:53;8563:39;8592:9;8563:39;:::i;:::-;8553:49;;8642:2;8631:9;8627:18;8621:25;8611:35;;8686:2;8675:9;8671:18;8665:25;8655:35;;8730:2;8719:9;8715:18;8709:25;8699:35;;8753:49;8797:3;8786:9;8782:19;8753:49;:::i;:::-;8743:59;;8335:473;;;;;;;;:::o;8813:273::-;8881:6;8934:2;8922:9;8913:7;8909:23;8905:32;8902:52;;;8950:1;8947;8940:12;8902:52;8982:9;8976:16;9032:4;9025:5;9021:16;9014:5;9011:27;9001:55;;9052:1;9049;9042:12;9091:422;9180:1;9223:5;9180:1;9237:270;9258:7;9248:8;9245:21;9237:270;;;9317:4;9313:1;9309:6;9305:17;9299:4;9296:27;9293:53;;;9326:18;;:::i;:::-;9376:7;9366:8;9362:22;9359:55;;;9396:16;;;;9359:55;9475:22;;;;9435:15;;;;9237:270;;;9241:3;9091:422;;;;;:::o;9518:806::-;9567:5;9597:8;9587:80;;-1:-1:-1;9638:1:1;9652:5;;9587:80;9686:4;9676:76;;-1:-1:-1;9723:1:1;9737:5;;9676:76;9768:4;9786:1;9781:59;;;;9854:1;9849:130;;;;9761:218;;9781:59;9811:1;9802:10;;9825:5;;;9849:130;9886:3;9876:8;9873:17;9870:43;;;9893:18;;:::i;:::-;-1:-1:-1;;9949:1:1;9935:16;;9964:5;;9761:218;;10063:2;10053:8;10050:16;10044:3;10038:4;10035:13;10031:36;10025:2;10015:8;10012:16;10007:2;10001:4;9998:12;9994:35;9991:77;9988:159;;;-1:-1:-1;10100:19:1;;;10132:5;;9988:159;10179:34;10204:8;10198:4;10179:34;:::i;:::-;10249:6;10245:1;10241:6;10237:19;10228:7;10225:32;10222:58;;;10260:18;;:::i;:::-;10298:20;;9518:806;-1:-1:-1;;;9518:806:1:o;10329:131::-;10389:5;10418:36;10445:8;10439:4;10418:36;:::i;10952:127::-;11013:10;11008:3;11004:20;11001:1;10994:31;11044:4;11041:1;11034:15;11068:4;11065:1;11058:15;11464:245;11531:6;11584:2;11572:9;11563:7;11559:23;11555:32;11552:52;;;11600:1;11597;11590:12;11552:52;11632:9;11626:16;11651:28;11673:5;11651:28;:::i;11714:461::-;11767:3;11805:5;11799:12;11832:6;11827:3;11820:19;11858:4;11887:2;11882:3;11878:12;11871:19;;11924:2;11917:5;11913:14;11945:1;11955:195;11969:6;11966:1;11963:13;11955:195;;;12034:13;;-1:-1:-1;;;;;12030:39:1;12018:52;;12090:12;;;;12125:15;;;;12066:1;11984:9;11955:195;;;-1:-1:-1;12166:3:1;;11714:461;-1:-1:-1;;;;;11714:461:1:o;12180:510::-;12451:6;12440:9;12433:25;12494:3;12489:2;12478:9;12474:18;12467:31;12414:4;12515:57;12567:3;12556:9;12552:19;12544:6;12515:57;:::i;:::-;-1:-1:-1;;;;;12608:32:1;;;;12603:2;12588:18;;12581:60;-1:-1:-1;12672:2:1;12657:18;12650:34;12507:65;12180:510;-1:-1:-1;;12180:510:1:o;17063:401::-;17265:2;17247:21;;;17304:2;17284:18;;;17277:30;17343:34;17338:2;17323:18;;17316:62;-1:-1:-1;;;17409:2:1;17394:18;;17387:35;17454:3;17439:19;;17063:401::o;17469:399::-;17671:2;17653:21;;;17710:2;17690:18;;;17683:30;17749:34;17744:2;17729:18;;17722:62;-1:-1:-1;;;17815:2:1;17800:18;;17793:33;17858:3;17843:19;;17469:399::o;18994:128::-;19061:9;;;19082:11;;;19079:37;;;19096:18;;:::i;19127:582::-;19426:6;19415:9;19408:25;19469:6;19464:2;19453:9;19449:18;19442:34;19512:3;19507:2;19496:9;19492:18;19485:31;19389:4;19533:57;19585:3;19574:9;19570:19;19562:6;19533:57;:::i;:::-;-1:-1:-1;;;;;19626:32:1;;;;19621:2;19606:18;;19599:60;-1:-1:-1;19690:3:1;19675:19;19668:35;19525:65;19127:582;-1:-1:-1;;;19127:582:1:o;21057:306::-;21145:6;21153;21161;21214:2;21202:9;21193:7;21189:23;21185:32;21182:52;;;21230:1;21227;21220:12;21182:52;21259:9;21253:16;21243:26;;21309:2;21298:9;21294:18;21288:25;21278:35;;21353:2;21342:9;21338:18;21332:25;21322:35;;21057:306;;;;;:::o

Swarm Source

ipfs://0a79eb00f7a7ed2073407beef88d3a885435a2c98d521a3fbbc252e09b0eb254
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.