ERC-20
Overview
Max Total Supply
100,000,000,000 OTOH
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
949,999,998.1 OTOHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OnTheOtherHand
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-16 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. */ 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"); _; } 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* 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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract OnTheOtherHand is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public startTrade = false; bool public swapActivate = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("On The Other Hand", "OTOH") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 4; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 4; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 0; uint256 totalSupply = 100_000_000_000 * 1e18; maxTransactionAmount = 100_000_000 * 1e18; // 0.1% from total supply maxTransactionAmountTxn maxWallet = 2_000_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xA508DD8eE687153Bc328062383A2F4795c76f71C); // set as marketing wallet devWallet = address(0xA508DD8eE687153Bc328062383A2F4795c76f71C); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function tradingEnable() external onlyOwner { swapActivate = true; startTrade = true; lastLpBurnTime = block.timestamp; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees 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 updateMaxTxn(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 15, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 15, "Must keep fees at 11% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!startTrade) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapActivate && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","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":[],"name":"startTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapActivate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","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"}]
Contract Creation Code
60c06040526000600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660011790556013805490911690553480156200004757600080fd5b50604080518082018252601181527013db88151a194813dd1a195c8812185b99607a1b60208083019182528351808501909452600484526309ea89e960e31b9084015281519192916200009d9160039162000699565b508051620000b390600490602084019062000699565b505050620000d0620000ca620003e760201b60201c565b620003eb565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f28160016200043d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016391906200073f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d791906200073f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b91906200073f565b6001600160a01b031660a0819052620002669060016200043d565b60a05162000276906001620004b6565b6a52b7d2dcc80cd2e40000006008556b06765c793fa10079d0000000600a556004600160008282826c01431e0fae6d7217caa0000000612710620002bc82600562000787565b620002c89190620007a9565b60095560158790556016869055601785905584620002e78789620007cc565b620002f39190620007cc565b6014556019849055601a839055601b82905581620003128486620007cc565b6200031e9190620007cc565b6018556006805473a508dd8ee687153bc328062383a2f4795c76f71c6001600160a01b03199182168117909255600780549091169091179055620003766200036e6005546001600160a01b031690565b60016200050a565b620003833060016200050a565b6200039261dead60016200050a565b620003b1620003a96005546001600160a01b031690565b60016200043d565b620003be3060016200043d565b620003cd61dead60016200043d565b620003d93382620005b4565b505050505050505062000824565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200048c5760405162461bcd60e51b815260206004820181905260248201526000805160206200390483398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005555760405162461bcd60e51b8152602060048201819052602482015260008051602062003904833981519152604482015260640162000483565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200060c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000483565b8060026000828254620006209190620007cc565b90915550506001600160a01b038216600090815260208190526040812080548392906200064f908490620007cc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006a790620007e7565b90600052602060002090601f016020900481019282620006cb576000855562000716565b82601f10620006e657805160ff191683800117855562000716565b8280016001018555821562000716579182015b8281111562000716578251825591602001919060010190620006f9565b506200072492915062000728565b5090565b5b8082111562000724576000815560010162000729565b6000602082840312156200075257600080fd5b81516001600160a01b03811681146200076a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a457620007a462000771565b500290565b600082620007c757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007e257620007e262000771565b500190565b600181811c90821680620007fc57607f821691505b602082108114156200081e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613058620008ac600039600081816105df01528181611035015281816117d40152818161186f0152818161189b01528181611c38015281816127ab0152818161284d015261287901526000818161045a01528181611bfa0152818161298301528181612a3c01528181612a7801528181612af20152612b4f01526130586000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063dd62ed3e146109f7578063e2f4560514610a3d578063e884f26014610a53578063f11a24d314610a6857600080fd5b8063c8c8ebe4116100dc578063c8c8ebe41461098b578063cfb50515146109a1578063d257b34f146109c1578063d85ba063146109e157600080fd5b8063c17b5b8c14610931578063c18bc19514610951578063c876d0b91461097157600080fd5b8063a0d82dc51161017a578063b62496f511610149578063b62496f5146108a1578063bd98f29f146108d1578063be2409a6146108f1578063c02466681461091157600080fd5b8063a0d82dc514610835578063a457c2d71461084b578063a4c82a001461086b578063a9059cbb1461088157600080fd5b80639a7a23d6116101b65780639a7a23d6146107d35780639c3b4fdc146107f35780639ec22c0e146108095780639fccce321461081f57600080fd5b80638ea5220f1461078857806392136913146107a857806395d89b41146107be57600080fd5b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146107145780637bce5a04146107345780638095d5641461074a5780638da5cb5b1461076a57600080fd5b806370a0823114610689578063715018a6146106bf578063730c1888146106d45780637571336a146106f457600080fd5b80634a62bb651161029b5780634a62bb65146106015780634fbee1931461061b5780636a486a8e146106545780636c5808011461066a57600080fd5b8063313ce5671461059157806339509351146105ad57806349bd5a5e146105cd57600080fd5b8063199ffc721161033957806327c8f8351161030857806327c8f8351461052b5780632bc4d48b146105415780632c3e486c146105615780632e82f1a01461057757600080fd5b8063199ffc72146104c95780631a8145bb146104df5780631f3fed8f146104f557806323b872dd1461050b57600080fd5b80631693e8d4116103755780631693e8d4146104315780631694505e1461044857806318160ddd14610494578063184c16c5146104b357600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612bcd565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612c37565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612c63565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b50610446610b92565b005b34801561045457600080fd5b5061047c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c9565b3480156104a057600080fd5b506002545b6040519081526020016103c9565b3480156104bf57600080fd5b506104a5600f5481565b3480156104d557600080fd5b506104a5600b5481565b3480156104eb57600080fd5b506104a5601d5481565b34801561050157600080fd5b506104a5601c5481565b34801561051757600080fd5b506103f2610526366004612c80565b610bdc565b34801561053757600080fd5b5061047c61dead81565b34801561054d57600080fd5b5061044661055c366004612cc1565b610c86565b34801561056d57600080fd5b506104a5600d5481565b34801561058357600080fd5b50600c546103f29060ff1681565b34801561059d57600080fd5b50604051601281526020016103c9565b3480156105b957600080fd5b506103f26105c8366004612c37565b610d63565b3480156105d957600080fd5b5061047c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060d57600080fd5b506011546103f29060ff1681565b34801561062757600080fd5b506103f2610636366004612c63565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561066057600080fd5b506104a560185481565b34801561067657600080fd5b506011546103f290610100900460ff1681565b34801561069557600080fd5b506104a56106a4366004612c63565b6001600160a01b031660009081526020819052604090205490565b3480156106cb57600080fd5b50610446610d9f565b3480156106e057600080fd5b506104466106ef366004612cea565b610dd5565b34801561070057600080fd5b5061044661070f366004612d1f565b610efe565b34801561072057600080fd5b5060065461047c906001600160a01b031681565b34801561074057600080fd5b506104a560155481565b34801561075657600080fd5b50610446610765366004612d54565b610f52565b34801561077657600080fd5b506005546001600160a01b031661047c565b34801561079457600080fd5b5060075461047c906001600160a01b031681565b3480156107b457600080fd5b506104a560195481565b3480156107ca57600080fd5b506103bc610ffa565b3480156107df57600080fd5b506104466107ee366004612d1f565b611009565b3480156107ff57600080fd5b506104a560175481565b34801561081557600080fd5b506104a560105481565b34801561082b57600080fd5b506104a5601e5481565b34801561084157600080fd5b506104a5601b5481565b34801561085757600080fd5b506103f2610866366004612c37565b6110e9565b34801561087757600080fd5b506104a5600e5481565b34801561088d57600080fd5b506103f261089c366004612c37565b611182565b3480156108ad57600080fd5b506103f26108bc366004612c63565b60216020526000908152604090205460ff1681565b3480156108dd57600080fd5b506011546103f29062010000900460ff1681565b3480156108fd57600080fd5b5061044661090c366004612c63565b61118f565b34801561091d57600080fd5b5061044661092c366004612d1f565b611216565b34801561093d57600080fd5b5061044661094c366004612d54565b61129f565b34801561095d57600080fd5b5061044661096c366004612cc1565b611342565b34801561097d57600080fd5b506013546103f29060ff1681565b34801561099757600080fd5b506104a560085481565b3480156109ad57600080fd5b506104466109bc366004612c63565b611413565b3480156109cd57600080fd5b506103f26109dc366004612cc1565b61149a565b3480156109ed57600080fd5b506104a560145481565b348015610a0357600080fd5b506104a5610a12366004612d80565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b506104a560095481565b348015610a5f57600080fd5b506103f26115f1565b348015610a7457600080fd5b506104a560165481565b348015610a8a57600080fd5b50610446610a99366004612c63565b61162e565b348015610aaa57600080fd5b506104a5601a5481565b348015610ac057600080fd5b506104a5600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cc1565b6116c9565b606060038054610af990612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612db9565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b89338484611943565b50600192915050565b6005546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc90612df4565b60405180910390fd5b6011805462ffff0019166201010017905542600e55565b6000610be9848484611a67565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbc565b610c7b8533858403611943565b506001949350505050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610bbc90612df4565b670de0b6b3a76400006103e8610cc560025490565b610cd0906001612e3f565b610cda9190612e5e565b610ce49190612e5e565b811015610d4b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bbc565b610d5d81670de0b6b3a7640000612e3f565b60085550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d9a908690612e80565b611943565b6005546001600160a01b03163314610dc95760405162461bcd60e51b8152600401610bbc90612df4565b610dd3600061233c565b565b6005546001600160a01b03163314610dff5760405162461bcd60e51b8152600401610bbc90612df4565b610258831015610e6d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bbc565b6103e88211158015610e7d575060015b610ee25760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bbc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610f285760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f7c5760405162461bcd60e51b8152600401610bbc90612df4565b60158390556016829055601781905580610f968385612e80565b610fa09190612e80565b6014819055600f1015610ff55760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610bbc565b505050565b606060048054610af990612db9565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610bbc90612df4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110db5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b6110e5828261238e565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561116b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbc565b6111783385858403611943565b5060019392505050565b6000610b89338484611a67565b6005546001600160a01b031633146111b95760405162461bcd60e51b8152600401610bbc90612df4565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112405760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112c95760405162461bcd60e51b8152600401610bbc90612df4565b6019839055601a829055601b819055806112e38385612e80565b6112ed9190612e80565b6018819055600f1015610ff55760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610bbc565b6005546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610bbc90612df4565b670de0b6b3a76400006103e861138160025490565b61138c906005612e3f565b6113969190612e5e565b6113a09190612e5e565b8110156113fb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61140d81670de0b6b3a7640000612e3f565b600a5550565b6005546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610bbc90612df4565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114c75760405162461bcd60e51b8152600401610bbc90612df4565b620186a06114d460025490565b6114df906001612e3f565b6114e99190612e5e565b8210156115565760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbc565b6103e861156260025490565b61156d906005612e3f565b6115779190612e5e565b8211156115e35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b50600981905560015b919050565b6005546000906001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bbc90612df4565b506013805460ff19169055600190565b6005546001600160a01b031633146116585760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6116c68161233c565b50565b6005546000906001600160a01b031633146116f65760405162461bcd60e51b8152600401610bbc90612df4565b600f546010546117069190612e80565b42116117545760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bbc565b6103e88211156117b95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bbc565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611824573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118489190612e98565b9050600061186261271061185c84876123e2565b906123f5565b90508015611897576118977f000000000000000000000000000000000000000000000000000000000000000061dead83612401565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156118f757600080fd5b505af115801561190b573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6001600160a01b038216611a065760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a8d5760405162461bcd60e51b8152600401610bbc90612eb1565b6001600160a01b038216611ab35760405162461bcd60e51b8152600401610bbc90612ef6565b80611ac457610ff583836000612401565b60115460ff1615611f7e576005546001600160a01b03848116911614801590611afb57506005546001600160a01b03838116911614155b8015611b0f57506001600160a01b03821615155b8015611b2657506001600160a01b03821661dead14155b8015611b3c5750600554600160a01b900460ff16155b15611f7e57601154610100900460ff16611bd4576001600160a01b0383166000908152601f602052604090205460ff1680611b8f57506001600160a01b0382166000908152601f602052604090205460ff165b611bd45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b60135460ff1615611d1b576005546001600160a01b03838116911614801590611c2f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611c6d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611d1b57326000908152601260205260409020544311611d085760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d5b57506001600160a01b038216600090815260208052604090205460ff16155b15611e3f57600854811115611dd05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600a546001600160a01b038316600090815260208190526040902054611df69083612e80565b1115611e3a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b611f7e565b6001600160a01b03821660009081526021602052604090205460ff168015611e7f57506001600160a01b038316600090815260208052604090205460ff16155b15611ef557600854811115611e3a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b038216600090815260208052604090205460ff16611f7e57600a546001600160a01b038316600090815260208190526040902054611f3a9083612e80565b1115611f7e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b3060009081526020819052604090205460095481108015908190611faa575060115462010000900460ff165b8015611fc05750600554600160a01b900460ff16155b8015611fe557506001600160a01b03851660009081526021602052604090205460ff16155b801561200a57506001600160a01b0385166000908152601f602052604090205460ff16155b801561202f57506001600160a01b0384166000908152601f602052604090205460ff16155b1561205d576005805460ff60a01b1916600160a01b17905561204f612556565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561208f57506001600160a01b03841660009081526021602052604090205460ff165b801561209d5750600c5460ff165b80156120b85750600d54600e546120b49190612e80565b4210155b80156120dd57506001600160a01b0385166000908152601f602052604090205460ff16155b156120ec576120ea612790565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061213a57506001600160a01b0385166000908152601f602052604090205460ff165b15612143575060005b60008115612328576001600160a01b03861660009081526021602052604090205460ff16801561217557506000601854115b1561222d57612194606461185c601854886123e290919063ffffffff16565b9050601854601a54826121a79190612e3f565b6121b19190612e5e565b601d60008282546121c29190612e80565b9091555050601854601b546121d79083612e3f565b6121e19190612e5e565b601e60008282546121f29190612e80565b90915550506018546019546122079083612e3f565b6122119190612e5e565b601c60008282546122229190612e80565b9091555061230a9050565b6001600160a01b03871660009081526021602052604090205460ff16801561225757506000601454115b1561230a57612276606461185c601454886123e290919063ffffffff16565b9050601454601654826122899190612e3f565b6122939190612e5e565b601d60008282546122a49190612e80565b90915550506014546017546122b99083612e3f565b6122c39190612e5e565b601e60008282546122d49190612e80565b90915550506014546015546122e99083612e3f565b6122f39190612e5e565b601c60008282546123049190612e80565b90915550505b801561231b5761231b873083612401565b6123258186612f39565b94505b612333878787612401565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123ee8284612e3f565b9392505050565b60006123ee8284612e5e565b6001600160a01b0383166124275760405162461bcd60e51b8152600401610bbc90612eb1565b6001600160a01b03821661244d5760405162461bcd60e51b8152600401610bbc90612ef6565b6001600160a01b038316600090815260208190526040902054818110156124c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906124fc908490612e80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461257d9190612e80565b6125879190612e80565b90506000821580612596575081155b156125a057505050565b6009546125ae906014612e3f565b8311156125c6576009546125c3906014612e3f565b92505b6000600283601d54866125d99190612e3f565b6125e39190612e5e565b6125ed9190612e5e565b905060006125fb8583612920565b9050476126078261292c565b60006126134783612920565b905060006126308761185c601c54856123e290919063ffffffff16565b9050600061264d8861185c601e54866123e290919063ffffffff16565b905060008161265c8486612f39565b6126669190612f39565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126c3576040519150601f19603f3d011682016040523d82523d6000602084013e6126c8565b606091505b509098505086158015906126dc5750600081115b1561272f576126eb8782612aec565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156127fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128219190612e98565b9050600061284061271061185c600b54856123e290919063ffffffff16565b90508015612875576128757f000000000000000000000000000000000000000000000000000000000000000061dead83612401565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128d557600080fd5b505af11580156128e9573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123ee8284612f39565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061296157612961612f50565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a039190612f66565b81600181518110612a1657612a16612f50565b60200260200101906001600160a01b031690816001600160a01b031681525050612a61307f000000000000000000000000000000000000000000000000000000000000000084611943565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612ab6908590600090869030904290600401612f83565b600060405180830381600087803b158015612ad057600080fd5b505af1158015612ae4573d6000803e3d6000fd5b505050505050565b612b17307f000000000000000000000000000000000000000000000000000000000000000084611943565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612ba1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bc69190612ff4565b5050505050565b600060208083528351808285015260005b81811015612bfa57858101830151858201604001528201612bde565b81811115612c0c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116c657600080fd5b60008060408385031215612c4a57600080fd5b8235612c5581612c22565b946020939093013593505050565b600060208284031215612c7557600080fd5b81356123ee81612c22565b600080600060608486031215612c9557600080fd5b8335612ca081612c22565b92506020840135612cb081612c22565b929592945050506040919091013590565b600060208284031215612cd357600080fd5b5035919050565b803580151581146115ec57600080fd5b600080600060608486031215612cff57600080fd5b8335925060208401359150612d1660408501612cda565b90509250925092565b60008060408385031215612d3257600080fd5b8235612d3d81612c22565b9150612d4b60208401612cda565b90509250929050565b600080600060608486031215612d6957600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612d9357600080fd5b8235612d9e81612c22565b91506020830135612dae81612c22565b809150509250929050565b600181811c90821680612dcd57607f821691505b60208210811415612dee57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5957612e59612e29565b500290565b600082612e7b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e9357612e93612e29565b500190565b600060208284031215612eaa57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f4b57612f4b612e29565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f7857600080fd5b81516123ee81612c22565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fd35784516001600160a01b031683529383019391830191600101612fae565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561300957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201621d52891090384f7c22b118ad74800a456418848a1e4858b0f0288fb6d808664736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063dd62ed3e146109f7578063e2f4560514610a3d578063e884f26014610a53578063f11a24d314610a6857600080fd5b8063c8c8ebe4116100dc578063c8c8ebe41461098b578063cfb50515146109a1578063d257b34f146109c1578063d85ba063146109e157600080fd5b8063c17b5b8c14610931578063c18bc19514610951578063c876d0b91461097157600080fd5b8063a0d82dc51161017a578063b62496f511610149578063b62496f5146108a1578063bd98f29f146108d1578063be2409a6146108f1578063c02466681461091157600080fd5b8063a0d82dc514610835578063a457c2d71461084b578063a4c82a001461086b578063a9059cbb1461088157600080fd5b80639a7a23d6116101b65780639a7a23d6146107d35780639c3b4fdc146107f35780639ec22c0e146108095780639fccce321461081f57600080fd5b80638ea5220f1461078857806392136913146107a857806395d89b41146107be57600080fd5b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146107145780637bce5a04146107345780638095d5641461074a5780638da5cb5b1461076a57600080fd5b806370a0823114610689578063715018a6146106bf578063730c1888146106d45780637571336a146106f457600080fd5b80634a62bb651161029b5780634a62bb65146106015780634fbee1931461061b5780636a486a8e146106545780636c5808011461066a57600080fd5b8063313ce5671461059157806339509351146105ad57806349bd5a5e146105cd57600080fd5b8063199ffc721161033957806327c8f8351161030857806327c8f8351461052b5780632bc4d48b146105415780632c3e486c146105615780632e82f1a01461057757600080fd5b8063199ffc72146104c95780631a8145bb146104df5780631f3fed8f146104f557806323b872dd1461050b57600080fd5b80631693e8d4116103755780631693e8d4146104315780631694505e1461044857806318160ddd14610494578063184c16c5146104b357600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612bcd565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612c37565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612c63565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b50610446610b92565b005b34801561045457600080fd5b5061047c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c9565b3480156104a057600080fd5b506002545b6040519081526020016103c9565b3480156104bf57600080fd5b506104a5600f5481565b3480156104d557600080fd5b506104a5600b5481565b3480156104eb57600080fd5b506104a5601d5481565b34801561050157600080fd5b506104a5601c5481565b34801561051757600080fd5b506103f2610526366004612c80565b610bdc565b34801561053757600080fd5b5061047c61dead81565b34801561054d57600080fd5b5061044661055c366004612cc1565b610c86565b34801561056d57600080fd5b506104a5600d5481565b34801561058357600080fd5b50600c546103f29060ff1681565b34801561059d57600080fd5b50604051601281526020016103c9565b3480156105b957600080fd5b506103f26105c8366004612c37565b610d63565b3480156105d957600080fd5b5061047c7f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf081565b34801561060d57600080fd5b506011546103f29060ff1681565b34801561062757600080fd5b506103f2610636366004612c63565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561066057600080fd5b506104a560185481565b34801561067657600080fd5b506011546103f290610100900460ff1681565b34801561069557600080fd5b506104a56106a4366004612c63565b6001600160a01b031660009081526020819052604090205490565b3480156106cb57600080fd5b50610446610d9f565b3480156106e057600080fd5b506104466106ef366004612cea565b610dd5565b34801561070057600080fd5b5061044661070f366004612d1f565b610efe565b34801561072057600080fd5b5060065461047c906001600160a01b031681565b34801561074057600080fd5b506104a560155481565b34801561075657600080fd5b50610446610765366004612d54565b610f52565b34801561077657600080fd5b506005546001600160a01b031661047c565b34801561079457600080fd5b5060075461047c906001600160a01b031681565b3480156107b457600080fd5b506104a560195481565b3480156107ca57600080fd5b506103bc610ffa565b3480156107df57600080fd5b506104466107ee366004612d1f565b611009565b3480156107ff57600080fd5b506104a560175481565b34801561081557600080fd5b506104a560105481565b34801561082b57600080fd5b506104a5601e5481565b34801561084157600080fd5b506104a5601b5481565b34801561085757600080fd5b506103f2610866366004612c37565b6110e9565b34801561087757600080fd5b506104a5600e5481565b34801561088d57600080fd5b506103f261089c366004612c37565b611182565b3480156108ad57600080fd5b506103f26108bc366004612c63565b60216020526000908152604090205460ff1681565b3480156108dd57600080fd5b506011546103f29062010000900460ff1681565b3480156108fd57600080fd5b5061044661090c366004612c63565b61118f565b34801561091d57600080fd5b5061044661092c366004612d1f565b611216565b34801561093d57600080fd5b5061044661094c366004612d54565b61129f565b34801561095d57600080fd5b5061044661096c366004612cc1565b611342565b34801561097d57600080fd5b506013546103f29060ff1681565b34801561099757600080fd5b506104a560085481565b3480156109ad57600080fd5b506104466109bc366004612c63565b611413565b3480156109cd57600080fd5b506103f26109dc366004612cc1565b61149a565b3480156109ed57600080fd5b506104a560145481565b348015610a0357600080fd5b506104a5610a12366004612d80565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b506104a560095481565b348015610a5f57600080fd5b506103f26115f1565b348015610a7457600080fd5b506104a560165481565b348015610a8a57600080fd5b50610446610a99366004612c63565b61162e565b348015610aaa57600080fd5b506104a5601a5481565b348015610ac057600080fd5b506104a5600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cc1565b6116c9565b606060038054610af990612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612db9565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b89338484611943565b50600192915050565b6005546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc90612df4565b60405180910390fd5b6011805462ffff0019166201010017905542600e55565b6000610be9848484611a67565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbc565b610c7b8533858403611943565b506001949350505050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610bbc90612df4565b670de0b6b3a76400006103e8610cc560025490565b610cd0906001612e3f565b610cda9190612e5e565b610ce49190612e5e565b811015610d4b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bbc565b610d5d81670de0b6b3a7640000612e3f565b60085550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d9a908690612e80565b611943565b6005546001600160a01b03163314610dc95760405162461bcd60e51b8152600401610bbc90612df4565b610dd3600061233c565b565b6005546001600160a01b03163314610dff5760405162461bcd60e51b8152600401610bbc90612df4565b610258831015610e6d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bbc565b6103e88211158015610e7d575060015b610ee25760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bbc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610f285760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f7c5760405162461bcd60e51b8152600401610bbc90612df4565b60158390556016829055601781905580610f968385612e80565b610fa09190612e80565b6014819055600f1015610ff55760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610bbc565b505050565b606060048054610af990612db9565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610bbc90612df4565b7f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf06001600160a01b0316826001600160a01b031614156110db5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b6110e5828261238e565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561116b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbc565b6111783385858403611943565b5060019392505050565b6000610b89338484611a67565b6005546001600160a01b031633146111b95760405162461bcd60e51b8152600401610bbc90612df4565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112405760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112c95760405162461bcd60e51b8152600401610bbc90612df4565b6019839055601a829055601b819055806112e38385612e80565b6112ed9190612e80565b6018819055600f1015610ff55760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610bbc565b6005546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610bbc90612df4565b670de0b6b3a76400006103e861138160025490565b61138c906005612e3f565b6113969190612e5e565b6113a09190612e5e565b8110156113fb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61140d81670de0b6b3a7640000612e3f565b600a5550565b6005546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610bbc90612df4565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114c75760405162461bcd60e51b8152600401610bbc90612df4565b620186a06114d460025490565b6114df906001612e3f565b6114e99190612e5e565b8210156115565760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbc565b6103e861156260025490565b61156d906005612e3f565b6115779190612e5e565b8211156115e35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b50600981905560015b919050565b6005546000906001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bbc90612df4565b506013805460ff19169055600190565b6005546001600160a01b031633146116585760405162461bcd60e51b8152600401610bbc90612df4565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6116c68161233c565b50565b6005546000906001600160a01b031633146116f65760405162461bcd60e51b8152600401610bbc90612df4565b600f546010546117069190612e80565b42116117545760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bbc565b6103e88211156117b95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bbc565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf016600482015260009030906370a0823190602401602060405180830381865afa158015611824573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118489190612e98565b9050600061186261271061185c84876123e2565b906123f5565b90508015611897576118977f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf061dead83612401565b60007f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf09050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156118f757600080fd5b505af115801561190b573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6001600160a01b038216611a065760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a8d5760405162461bcd60e51b8152600401610bbc90612eb1565b6001600160a01b038216611ab35760405162461bcd60e51b8152600401610bbc90612ef6565b80611ac457610ff583836000612401565b60115460ff1615611f7e576005546001600160a01b03848116911614801590611afb57506005546001600160a01b03838116911614155b8015611b0f57506001600160a01b03821615155b8015611b2657506001600160a01b03821661dead14155b8015611b3c5750600554600160a01b900460ff16155b15611f7e57601154610100900460ff16611bd4576001600160a01b0383166000908152601f602052604090205460ff1680611b8f57506001600160a01b0382166000908152601f602052604090205460ff165b611bd45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b60135460ff1615611d1b576005546001600160a01b03838116911614801590611c2f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611c6d57507f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf06001600160a01b0316826001600160a01b031614155b15611d1b57326000908152601260205260409020544311611d085760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d5b57506001600160a01b038216600090815260208052604090205460ff16155b15611e3f57600854811115611dd05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600a546001600160a01b038316600090815260208190526040902054611df69083612e80565b1115611e3a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b611f7e565b6001600160a01b03821660009081526021602052604090205460ff168015611e7f57506001600160a01b038316600090815260208052604090205460ff16155b15611ef557600854811115611e3a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b038216600090815260208052604090205460ff16611f7e57600a546001600160a01b038316600090815260208190526040902054611f3a9083612e80565b1115611f7e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b3060009081526020819052604090205460095481108015908190611faa575060115462010000900460ff165b8015611fc05750600554600160a01b900460ff16155b8015611fe557506001600160a01b03851660009081526021602052604090205460ff16155b801561200a57506001600160a01b0385166000908152601f602052604090205460ff16155b801561202f57506001600160a01b0384166000908152601f602052604090205460ff16155b1561205d576005805460ff60a01b1916600160a01b17905561204f612556565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561208f57506001600160a01b03841660009081526021602052604090205460ff165b801561209d5750600c5460ff165b80156120b85750600d54600e546120b49190612e80565b4210155b80156120dd57506001600160a01b0385166000908152601f602052604090205460ff16155b156120ec576120ea612790565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061213a57506001600160a01b0385166000908152601f602052604090205460ff165b15612143575060005b60008115612328576001600160a01b03861660009081526021602052604090205460ff16801561217557506000601854115b1561222d57612194606461185c601854886123e290919063ffffffff16565b9050601854601a54826121a79190612e3f565b6121b19190612e5e565b601d60008282546121c29190612e80565b9091555050601854601b546121d79083612e3f565b6121e19190612e5e565b601e60008282546121f29190612e80565b90915550506018546019546122079083612e3f565b6122119190612e5e565b601c60008282546122229190612e80565b9091555061230a9050565b6001600160a01b03871660009081526021602052604090205460ff16801561225757506000601454115b1561230a57612276606461185c601454886123e290919063ffffffff16565b9050601454601654826122899190612e3f565b6122939190612e5e565b601d60008282546122a49190612e80565b90915550506014546017546122b99083612e3f565b6122c39190612e5e565b601e60008282546122d49190612e80565b90915550506014546015546122e99083612e3f565b6122f39190612e5e565b601c60008282546123049190612e80565b90915550505b801561231b5761231b873083612401565b6123258186612f39565b94505b612333878787612401565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123ee8284612e3f565b9392505050565b60006123ee8284612e5e565b6001600160a01b0383166124275760405162461bcd60e51b8152600401610bbc90612eb1565b6001600160a01b03821661244d5760405162461bcd60e51b8152600401610bbc90612ef6565b6001600160a01b038316600090815260208190526040902054818110156124c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906124fc908490612e80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461257d9190612e80565b6125879190612e80565b90506000821580612596575081155b156125a057505050565b6009546125ae906014612e3f565b8311156125c6576009546125c3906014612e3f565b92505b6000600283601d54866125d99190612e3f565b6125e39190612e5e565b6125ed9190612e5e565b905060006125fb8583612920565b9050476126078261292c565b60006126134783612920565b905060006126308761185c601c54856123e290919063ffffffff16565b9050600061264d8861185c601e54866123e290919063ffffffff16565b905060008161265c8486612f39565b6126669190612f39565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126c3576040519150601f19603f3d011682016040523d82523d6000602084013e6126c8565b606091505b509098505086158015906126dc5750600081115b1561272f576126eb8782612aec565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf0166004820152600090819030906370a0823190602401602060405180830381865afa1580156127fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128219190612e98565b9050600061284061271061185c600b54856123e290919063ffffffff16565b90508015612875576128757f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf061dead83612401565b60007f000000000000000000000000dd8d819c22ec9f044481d2739ab828455ab13bf09050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128d557600080fd5b505af11580156128e9573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123ee8284612f39565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061296157612961612f50565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a039190612f66565b81600181518110612a1657612a16612f50565b60200260200101906001600160a01b031690816001600160a01b031681525050612a61307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611943565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612ab6908590600090869030904290600401612f83565b600060405180830381600087803b158015612ad057600080fd5b505af1158015612ae4573d6000803e3d6000fd5b505050505050565b612b17307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611943565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612ba1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bc69190612ff4565b5050505050565b600060208083528351808285015260005b81811015612bfa57858101830151858201604001528201612bde565b81811115612c0c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116c657600080fd5b60008060408385031215612c4a57600080fd5b8235612c5581612c22565b946020939093013593505050565b600060208284031215612c7557600080fd5b81356123ee81612c22565b600080600060608486031215612c9557600080fd5b8335612ca081612c22565b92506020840135612cb081612c22565b929592945050506040919091013590565b600060208284031215612cd357600080fd5b5035919050565b803580151581146115ec57600080fd5b600080600060608486031215612cff57600080fd5b8335925060208401359150612d1660408501612cda565b90509250925092565b60008060408385031215612d3257600080fd5b8235612d3d81612c22565b9150612d4b60208401612cda565b90509250929050565b600080600060608486031215612d6957600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612d9357600080fd5b8235612d9e81612c22565b91506020830135612dae81612c22565b809150509250929050565b600181811c90821680612dcd57607f821691505b60208210811415612dee57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5957612e59612e29565b500290565b600082612e7b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e9357612e93612e29565b500190565b600060208284031215612eaa57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f4b57612f4b612e29565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f7857600080fd5b81516123ee81612c22565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fd35784516001600160a01b031683529383019391830191600101612fae565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561300957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201621d52891090384f7c22b118ad74800a456418848a1e4858b0f0288fb6d808664736f6c634300080a0033
Deployed Bytecode Sourcemap
29583:19078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9178:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11345:169;;;;;;;;;;-1:-1:-1;11345:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11345:169:0;1072:187:1;31217:63:0;;;;;;;;;;-1:-1:-1;31217:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34593:153;;;;;;;;;;;;;:::i;:::-;;29667:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29667:51:0;1516:230:1;10298:108:0;;;;;;;;;;-1:-1:-1;10386:12:0;;10298:108;;;1897:25:1;;;1885:2;1870:18;10298:108:0;1751:177:1;30232:47:0;;;;;;;;;;;;;;;;30047:35;;;;;;;;;;;;;;;;31001:33;;;;;;;;;;;;;;;;30961;;;;;;;;;;;;;;;;11996:492;;;;;;;;;;-1:-1:-1;11996:492:0;;;;;:::i;:::-;;:::i;29770:53::-;;;;;;;;;;;;29816:6;29770:53;;35517:269;;;;;;;;;;-1:-1:-1;35517:269:0;;;;;:::i;:::-;;:::i;30142:45::-;;;;;;;;;;;;;;;;30102:33;;;;;;;;;;-1:-1:-1;30102:33:0;;;;;;;;10140:93;;;;;;;;;;-1:-1:-1;10140:93:0;;10223:2;2929:36:1;;2917:2;2902:18;10140:93:0;2787:184:1;12897:215:0;;;;;;;;;;-1:-1:-1;12897:215:0;;;;;:::i;:::-;;:::i;29725:38::-;;;;;;;;;;;;;;;30330:33;;;;;;;;;;-1:-1:-1;30330:33:0;;;;;;;;38156:126;;;;;;;;;;-1:-1:-1;38156:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38246:28:0;38222:4;38246:28;;;:19;:28;;;;;;;;;38156:126;30816:28;;;;;;;;;;;;;;;;30370:30;;;;;;;;;;-1:-1:-1;30370:30:0;;;;;;;;;;;10469:127;;;;;;;;;;-1:-1:-1;10469:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10570:18:0;10543:7;10570:18;;;;;;;;;;;;10469:127;2413:103;;;;;;;;;;;;;:::i;46243:555::-;;;;;;;;;;-1:-1:-1;46243:555:0;;;;;:::i;:::-;;:::i;36058:167::-;;;;;;;;;;-1:-1:-1;36058:167:0;;;;;:::i;:::-;;:::i;29862:30::-;;;;;;;;;;-1:-1:-1;29862:30:0;;;;-1:-1:-1;;;;;29862:30:0;;;30709;;;;;;;;;;;;;;;;36233:403;;;;;;;;;;-1:-1:-1;36233:403:0;;;;;:::i;:::-;;:::i;2105:87::-;;;;;;;;;;-1:-1:-1;2178:6:0;;-1:-1:-1;;;;;2178:6:0;2105:87;;29899:24;;;;;;;;;;-1:-1:-1;29899:24:0;;;;-1:-1:-1;;;;;29899:24:0;;;30851:31;;;;;;;;;;;;;;;;9397:104;;;;;;;;;;;;;:::i;37254:304::-;;;;;;;;;;-1:-1:-1;37254:304:0;;;;;:::i;:::-;;:::i;30783:24::-;;;;;;;;;;;;;;;;30286:35;;;;;;;;;;;;;;;;31041:27;;;;;;;;;;;;;;;;30927:25;;;;;;;;;;;;;;;;13615:413;;;;;;;;;;-1:-1:-1;13615:413:0;;;;;:::i;:::-;;:::i;30194:29::-;;;;;;;;;;;;;;;;10809:175;;;;;;;;;;-1:-1:-1;10809:175:0;;;;;:::i;:::-;;:::i;31438:57::-;;;;;;;;;;-1:-1:-1;31438:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30407:32;;;;;;;;;;-1:-1:-1;30407:32:0;;;;;;;;;;;37993:155;;;;;;;;;;-1:-1:-1;37993:155:0;;;;;:::i;:::-;;:::i;37064:182::-;;;;;;;;;;-1:-1:-1;37064:182:0;;;;;:::i;:::-;;:::i;36644:412::-;;;;;;;;;;-1:-1:-1;36644:412:0;;;;;:::i;:::-;;:::i;35794:256::-;;;;;;;;;;-1:-1:-1;35794:256:0;;;;;:::i;:::-;;:::i;30626:40::-;;;;;;;;;;-1:-1:-1;30626:40:0;;;;;;;;29932:35;;;;;;;;;;;;;;;;37762:223;;;;;;;;;;-1:-1:-1;37762:223:0;;;;;:::i;:::-;;:::i;35012:497::-;;;;;;;;;;-1:-1:-1;35012:497:0;;;;;:::i;:::-;;:::i;30675:27::-;;;;;;;;;;;;;;;;11047:151;;;;;;;;;;-1:-1:-1;11047:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11163:18:0;;;11136:7;11163:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11047:151;29974:33;;;;;;;;;;;;;;;;34807:135;;;;;;;;;;;;;:::i;30746:30::-;;;;;;;;;;;;;;;;2671:201;;;;;;;;;;-1:-1:-1;2671:201:0;;;;;:::i;:::-;;:::i;30889:31::-;;;;;;;;;;;;;;;;30014:24;;;;;;;;;;;;;;;;47602:1056;;;;;;;;;;-1:-1:-1;47602:1056:0;;;;;:::i;:::-;;:::i;9178:100::-;9232:13;9265:5;9258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9178:100;:::o;11345:169::-;11428:4;11445:39;896:10;11468:7;11477:6;11445:8;:39::i;:::-;-1:-1:-1;11502:4:0;11345:169;;;;:::o;34593:153::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;;;;;;;;;34648:12:::1;:19:::0;;-1:-1:-1;;34678:17:0;;;;;34723:15:::1;34706:14;:32:::0;34593:153::o;11996:492::-;12136:4;12153:36;12163:6;12171:9;12182:6;12153:9;:36::i;:::-;-1:-1:-1;;;;;12229:19:0;;12202:24;12229:19;;;:11;:19;;;;;;;;896:10;12229:33;;;;;;;;12281:26;;;;12273:79;;;;-1:-1:-1;;;12273:79:0;;5444:2:1;12273:79:0;;;5426:21:1;5483:2;5463:18;;;5456:30;5522:34;5502:18;;;5495:62;-1:-1:-1;;;5573:18:1;;;5566:38;5621:19;;12273:79:0;5242:404:1;12273:79:0;12388:57;12397:6;896:10;12438:6;12419:16;:25;12388:8;:57::i;:::-;-1:-1:-1;12476:4:0;;11996:492;-1:-1:-1;;;;11996:492:0:o;35517:269::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35648:4:::1;35640;35619:13;10386:12:::0;;;10298:108;35619:13:::1;:17;::::0;35635:1:::1;35619:17;:::i;:::-;35618:26;;;;:::i;:::-;35617:35;;;;:::i;:::-;35607:6;:45;;35585:142;;;::::0;-1:-1:-1;;;35585:142:0;;6380:2:1;35585:142:0::1;::::0;::::1;6362:21:1::0;6419:2;6399:18;;;6392:30;6458:34;6438:18;;;6431:62;-1:-1:-1;;;6509:18:1;;;6502:45;6564:19;;35585:142:0::1;6178:411:1::0;35585:142:0::1;35761:17;:6:::0;35771::::1;35761:17;:::i;:::-;35738:20;:40:::0;-1:-1:-1;35517:269:0:o;12897:215::-;896:10;12985:4;13034:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13034:34:0;;;;;;;;;;12985:4;;13002:80;;13025:7;;13034:47;;13071:10;;13034:47;:::i;:::-;13002:8;:80::i;2413:103::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;2478:30:::1;2505:1;2478:18;:30::i;:::-;2413:103::o:0;46243:555::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;46445:3:::1;46422:19;:26;;46400:127;;;::::0;-1:-1:-1;;;46400:127:0;;6929:2:1;46400:127:0::1;::::0;::::1;6911:21:1::0;6968:2;6948:18;;;6941:30;7007:34;6987:18;;;6980:62;-1:-1:-1;;;7058:18:1;;;7051:49;7117:19;;46400:127:0::1;6727:415:1::0;46400:127:0::1;46572:4;46560:8;:16;;:33;;;;-1:-1:-1::0;46580:13:0;46560:33:::1;46538:131;;;::::0;-1:-1:-1;;;46538:131:0;;7349:2:1;46538:131:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:46;7534:19;;46538:131:0::1;7147:412:1::0;46538:131:0::1;46680:15;:37:::0;;;;46728:16:::1;:27:::0;46766:13:::1;:24:::0;;-1:-1:-1;;46766:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46243:555::o;36058:167::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36171:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;36171:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36058:167::o;36233:403::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;36383:15:::1;:31:::0;;;36425:15:::1;:31:::0;;;36467:9:::1;:19:::0;;;36479:7;36512:33:::1;36443:13:::0;36401;36512:33:::1;:::i;:::-;:45;;;;:::i;:::-;36497:12;:60:::0;;;36592:2:::1;-1:-1:-1::0;36576:18:0::1;36568:60;;;::::0;-1:-1:-1;;;36568:60:0;;7766:2:1;36568:60:0::1;::::0;::::1;7748:21:1::0;7805:2;7785:18;;;7778:30;7844:31;7824:18;;;7817:59;7893:18;;36568:60:0::1;7564:353:1::0;36568:60:0::1;36233:403:::0;;;:::o;9397:104::-;9453:13;9486:7;9479:14;;;;;:::i;37254:304::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;37398:13:::1;-1:-1:-1::0;;;;;37390:21:0::1;:4;-1:-1:-1::0;;;;;37390:21:0::1;;;37368:128;;;::::0;-1:-1:-1;;;37368:128:0;;8124:2:1;37368:128:0::1;::::0;::::1;8106:21:1::0;8163:2;8143:18;;;8136:30;8202:34;8182:18;;;8175:62;8273:27;8253:18;;;8246:55;8318:19;;37368:128:0::1;7922:421:1::0;37368:128:0::1;37509:41;37538:4;37544:5;37509:28;:41::i;:::-;37254:304:::0;;:::o;13615:413::-;896:10;13708:4;13752:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13752:34:0;;;;;;;;;;13805:35;;;;13797:85;;;;-1:-1:-1;;;13797:85:0;;8550:2:1;13797:85:0;;;8532:21:1;8589:2;8569:18;;;8562:30;8628:34;8608:18;;;8601:62;-1:-1:-1;;;8679:18:1;;;8672:35;8724:19;;13797:85:0;8348:401:1;13797:85:0;13918:67;896:10;13941:7;13969:15;13950:16;:34;13918:8;:67::i;:::-;-1:-1:-1;14016:4:0;;13615:413;-1:-1:-1;;;13615:413:0:o;10809:175::-;10895:4;10912:42;896:10;10936:9;10947:6;10912:9;:42::i;37993:155::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;38098:9:::1;::::0;38070:38:::1;::::0;-1:-1:-1;;;;;38098:9:0;;::::1;::::0;38070:38;::::1;::::0;::::1;::::0;38098:9:::1;::::0;38070:38:::1;38119:9;:21:::0;;-1:-1:-1;;;;;;38119:21:0::1;-1:-1:-1::0;;;;;38119:21:0;;;::::1;::::0;;;::::1;::::0;;37993:155::o;37064:182::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37149:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37149:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37204:34;;1212:41:1;;;37204:34:0::1;::::0;1185:18:1;37204:34:0::1;;;;;;;37064:182:::0;;:::o;36644:412::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;36795:16:::1;:32:::0;;;36838:16:::1;:32:::0;;;36881:10:::1;:20:::0;;;36894:7;36928:35:::1;36857:13:::0;36814;36928:35:::1;:::i;:::-;:48;;;;:::i;:::-;36912:13;:64:::0;;;37012:2:::1;-1:-1:-1::0;36995:19:0::1;36987:61;;;::::0;-1:-1:-1;;;36987:61:0;;7766:2:1;36987:61:0::1;::::0;::::1;7748:21:1::0;7805:2;7785:18;;;7778:30;7844:31;7824:18;;;7817:59;7893:18;;36987:61:0::1;7564:353:1::0;35794:256:0;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35934:4:::1;35926;35905:13;10386:12:::0;;;10298:108;35905:13:::1;:17;::::0;35921:1:::1;35905:17;:::i;:::-;35904:26;;;;:::i;:::-;35903:35;;;;:::i;:::-;35893:6;:45;;35871:131;;;::::0;-1:-1:-1;;;35871:131:0;;8956:2:1;35871:131:0::1;::::0;::::1;8938:21:1::0;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:34;9129:19;;35871:131:0::1;8754:400:1::0;35871:131:0::1;36025:17;:6:::0;36035::::1;36025:17;:::i;:::-;36013:9;:29:::0;-1:-1:-1;35794:256:0:o;37762:223::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;37914:15:::1;::::0;37871:59:::1;::::0;-1:-1:-1;;;;;37914:15:0;;::::1;::::0;37871:59;::::1;::::0;::::1;::::0;37914:15:::1;::::0;37871:59:::1;37941:15;:36:::0;;-1:-1:-1;;;;;;37941:36:0::1;-1:-1:-1::0;;;;;37941:36:0;;;::::1;::::0;;;::::1;::::0;;37762:223::o;35012:497::-;2178:6;;35120:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35199:6:::1;35178:13;10386:12:::0;;;10298:108;35178:13:::1;:17;::::0;35194:1:::1;35178:17;:::i;:::-;35177:28;;;;:::i;:::-;35164:9;:41;;35142:144;;;::::0;-1:-1:-1;;;35142:144:0;;9361:2:1;35142:144:0::1;::::0;::::1;9343:21:1::0;9400:2;9380:18;;;9373:30;9439:34;9419:18;;;9412:62;-1:-1:-1;;;9490:18:1;;;9483:51;9551:19;;35142:144:0::1;9159:417:1::0;35142:144:0::1;35354:4;35333:13;10386:12:::0;;;10298:108;35333:13:::1;:17;::::0;35349:1:::1;35333:17;:::i;:::-;35332:26;;;;:::i;:::-;35319:9;:39;;35297:141;;;::::0;-1:-1:-1;;;35297:141:0;;9783:2:1;35297:141:0::1;::::0;::::1;9765:21:1::0;9822:2;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;-1:-1:-1;;;9912:18:1;;;9905:50;9972:19;;35297:141:0::1;9581:416:1::0;35297:141:0::1;-1:-1:-1::0;35449:18:0::1;:30:::0;;;35497:4:::1;2396:1;35012:497:::0;;;:::o;34807:135::-;2178:6;;34867:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;34884:20:0::1;:28:::0;;-1:-1:-1;;34884:28:0::1;::::0;;;34807:135;:::o;2671:201::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2760:22:0;::::1;2752:73;;;::::0;-1:-1:-1;;;2752:73:0;;10204:2:1;2752:73:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:36;10379:19;;2752:73:0::1;10002:402:1::0;2752:73:0::1;2836:28;2855:8;2836:18;:28::i;:::-;2671:201:::0;:::o;47602:1056::-;2178:6;;47713:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;47798:19:::1;;47775:20;;:42;;;;:::i;:::-;47757:15;:60;47735:142;;;::::0;-1:-1:-1;;;47735:142:0;;10611:2:1;47735:142:0::1;::::0;::::1;10593:21:1::0;;;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;10741:18;;47735:142:0::1;10409:356:1::0;47735:142:0::1;47907:4;47896:7;:15;;47888:70;;;::::0;-1:-1:-1;;;47888:70:0;;10972:2:1;47888:70:0::1;::::0;::::1;10954:21:1::0;11011:2;10991:18;;;10984:30;11050:34;11030:18;;;11023:62;-1:-1:-1;;;11101:18:1;;;11094:40;11151:19;;47888:70:0::1;10770:406:1::0;47888:70:0::1;47992:15;47969:20;:38:::0;48093:29:::1;::::0;-1:-1:-1;;;48093:29:0;;-1:-1:-1;;;;;48108:13:0::1;1707:32:1::0;48093:29:0::1;::::0;::::1;1689:51:1::0;48062:28:0::1;::::0;48093:4:::1;::::0;:14:::1;::::0;1662:18:1;;48093:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48062:60:::0;-1:-1:-1;48172:20:0::1;48195:44;48233:5;48195:33;48062:60:::0;48220:7;48195:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;48172:67:::0;-1:-1:-1;48344:16:0;;48340:110:::1;;48377:61;48393:13;48416:6;48425:12;48377:15;:61::i;:::-;48525:19;48562:13;48525:51;;48587:4;-1:-1:-1::0;;;;;48587:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48614:14:0::1;::::0;::::1;::::0;-1:-1:-1;48614:14:0;;-1:-1:-1;48614:14:0::1;-1:-1:-1::0;48646:4:0::1;::::0;47602:1056;-1:-1:-1;;;;47602:1056:0:o;17299:380::-;-1:-1:-1;;;;;17435:19:0;;17427:68;;;;-1:-1:-1;;;17427:68:0;;11572:2:1;17427:68:0;;;11554:21:1;11611:2;11591:18;;;11584:30;11650:34;11630:18;;;11623:62;-1:-1:-1;;;11701:18:1;;;11694:34;11745:19;;17427:68:0;11370:400:1;17427:68:0;-1:-1:-1;;;;;17514:21:0;;17506:68;;;;-1:-1:-1;;;17506:68:0;;11977:2:1;17506:68:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:32;12148:19;;17506:68:0;11775:398:1;17506:68:0;-1:-1:-1;;;;;17587:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17639:32;;1897:25:1;;;17639:32:0;;1870:18:1;17639:32:0;;;;;;;17299:380;;;:::o;38340:5009::-;-1:-1:-1;;;;;38472:18:0;;38464:68;;;;-1:-1:-1;;;38464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38551:16:0;;38543:64;;;;-1:-1:-1;;;38543:64:0;;;;;;;:::i;:::-;38624:11;38620:93;;38652:28;38668:4;38674:2;38678:1;38652:15;:28::i;38620:93::-;38729:14;;;;38725:2484;;;2178:6;;-1:-1:-1;;;;;38782:15:0;;;2178:6;;38782:15;;;;:49;;-1:-1:-1;2178:6:0;;-1:-1:-1;;;;;38818:13:0;;;2178:6;;38818:13;;38782:49;:86;;;;-1:-1:-1;;;;;;38852:16:0;;;;38782:86;:128;;;;-1:-1:-1;;;;;;38889:21:0;;38903:6;38889:21;;38782:128;:158;;;;-1:-1:-1;38932:8:0;;-1:-1:-1;;;38932:8:0;;;;38931:9;38782:158;38760:2438;;;38980:10;;;;;;;38975:220;;-1:-1:-1;;;;;39049:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39078:23:0;;;;;;:19;:23;;;;;;;;39049:52;39015:160;;;;-1:-1:-1;;;39015:160:0;;13190:2:1;39015:160:0;;;13172:21:1;13229:2;13209:18;;;13202:30;-1:-1:-1;;;13248:18:1;;;13241:52;13310:18;;39015:160:0;12988:346:1;39015:160:0;39351:20;;;;39347:641;;;2178:6;;-1:-1:-1;;;;;39426:13:0;;;2178:6;;39426:13;;;;:72;;;39482:15;-1:-1:-1;;;;;39468:30:0;:2;-1:-1:-1;;;;;39468:30:0;;;39426:72;:129;;;;;39541:13;-1:-1:-1;;;;;39527:28:0;:2;-1:-1:-1;;;;;39527:28:0;;;39426:129;39396:573;;;39673:9;39644:39;;;;:28;:39;;;;;;39719:12;-1:-1:-1;39606:258:0;;;;-1:-1:-1;;;39606:258:0;;13541:2:1;39606:258:0;;;13523:21:1;13580:2;13560:18;;;13553:30;13619:34;13599:18;;;13592:62;13690:34;13670:18;;;13663:62;-1:-1:-1;;;13741:19:1;;;13734:40;13791:19;;39606:258:0;13339:477:1;39606:258:0;39920:9;39891:39;;;;:28;:39;;;;;39933:12;39891:54;;39396:573;-1:-1:-1;;;;;40062:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40119:35:0;;;;;;:31;:35;;;;;;;;40118:36;40062:92;40036:1147;;;40241:20;;40231:6;:30;;40197:169;;;;-1:-1:-1;;;40197:169:0;;14023:2:1;40197:169:0;;;14005:21:1;14062:2;14042:18;;;14035:30;14101:34;14081:18;;;14074:62;-1:-1:-1;;;14152:18:1;;;14145:51;14213:19;;40197:169:0;13821:417:1;40197:169:0;40449:9;;-1:-1:-1;;;;;10570:18:0;;10543:7;10570:18;;;;;;;;;;;40423:22;;:6;:22;:::i;:::-;:35;;40389:140;;;;-1:-1:-1;;;40389:140:0;;14445:2:1;40389:140:0;;;14427:21:1;14484:2;14464:18;;;14457:30;-1:-1:-1;;;14503:18:1;;;14496:49;14562:18;;40389:140:0;14243:343:1;40389:140:0;40036:1147;;;-1:-1:-1;;;;;40627:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40682:37:0;;;;;;:31;:37;;;;;;;;40681:38;40627:92;40601:582;;;40806:20;;40796:6;:30;;40762:170;;;;-1:-1:-1;;;40762:170:0;;14793:2:1;40762:170:0;;;14775:21:1;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:52;14984:19;;40762:170:0;14591:418:1;40601:582:0;-1:-1:-1;;;;;40963:35:0;;;;;;:31;:35;;;;;;;;40958:225;;41083:9;;-1:-1:-1;;;;;10570:18:0;;10543:7;10570:18;;;;;;;;;;;41057:22;;:6;:22;:::i;:::-;:35;;41023:140;;;;-1:-1:-1;;;41023:140:0;;14445:2:1;41023:140:0;;;14427:21:1;14484:2;14464:18;;;14457:30;-1:-1:-1;;;14503:18:1;;;14496:49;14562:18;;41023:140:0;14243:343:1;41023:140:0;41270:4;41221:28;10570:18;;;;;;;;;;;41328;;41304:42;;;;;;;41377:36;;-1:-1:-1;41401:12:0;;;;;;;41377:36;:62;;;;-1:-1:-1;41431:8:0;;-1:-1:-1;;;41431:8:0;;;;41430:9;41377:62;:111;;;;-1:-1:-1;;;;;;41457:31:0;;;;;;:25;:31;;;;;;;;41456:32;41377:111;:154;;;;-1:-1:-1;;;;;;41506:25:0;;;;;;:19;:25;;;;;;;;41505:26;41377:154;:195;;;;-1:-1:-1;;;;;;41549:23:0;;;;;;:19;:23;;;;;;;;41548:24;41377:195;41359:327;;;41599:8;:15;;-1:-1:-1;;;;41599:15:0;-1:-1:-1;;;41599:15:0;;;41631:10;:8;:10::i;:::-;41658:8;:16;;-1:-1:-1;;;;41658:16:0;;;41359:327;41717:8;;-1:-1:-1;;;41717:8:0;;;;41716:9;:55;;;;-1:-1:-1;;;;;;41742:29:0;;;;;;:25;:29;;;;;;;;41716:55;:85;;;;-1:-1:-1;41788:13:0;;;;41716:85;:153;;;;;41854:15;;41837:14;;:32;;;;:::i;:::-;41818:15;:51;;41716:153;:196;;;;-1:-1:-1;;;;;;41887:25:0;;;;;;:19;:25;;;;;;;;41886:26;41716:196;41698:282;;;41939:29;:27;:29::i;:::-;;41698:282;42008:8;;-1:-1:-1;;;;;42118:25:0;;41992:12;42118:25;;;:19;:25;;;;;;42008:8;-1:-1:-1;;;42008:8:0;;;;;42007:9;;42118:25;;:52;;-1:-1:-1;;;;;;42147:23:0;;;;;;:19;:23;;;;;;;;42118:52;42114:100;;;-1:-1:-1;42197:5:0;42114:100;42226:12;42331:7;42327:969;;;-1:-1:-1;;;;;42383:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42432:1;42416:13;;:17;42383:50;42379:768;;;42461:34;42491:3;42461:25;42472:13;;42461:6;:10;;:25;;;;:::i;:34::-;42454:41;;42564:13;;42544:16;;42537:4;:23;;;;:::i;:::-;42536:41;;;;:::i;:::-;42514:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42634:13:0;;42620:10;;42613:17;;:4;:17;:::i;:::-;42612:35;;;;:::i;:::-;42596:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42716:13:0;;42696:16;;42689:23;;:4;:23;:::i;:::-;42688:41;;;;:::i;:::-;42666:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42379:768:0;;-1:-1:-1;42379:768:0;;-1:-1:-1;;;;;42791:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42841:1;42826:12;;:16;42791:51;42787:360;;;42870:33;42899:3;42870:24;42881:12;;42870:6;:10;;:24;;;;:::i;:33::-;42863:40;;42971:12;;42952:15;;42945:4;:22;;;;:::i;:::-;42944:39;;;;:::i;:::-;42922:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43039:12:0;;43026:9;;43019:16;;:4;:16;:::i;:::-;43018:33;;;;:::i;:::-;43002:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43119:12:0;;43100:15;;43093:22;;:4;:22;:::i;:::-;43092:39;;;;:::i;:::-;43070:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42787:360:0;43167:8;;43163:91;;43196:42;43212:4;43226;43233;43196:15;:42::i;:::-;43270:14;43280:4;43270:14;;:::i;:::-;;;42327:969;43308:33;43324:4;43330:2;43334:6;43308:15;:33::i;:::-;38453:4896;;;;38340:5009;;;:::o;3032:191::-;3125:6;;;-1:-1:-1;;;;;3142:17:0;;;-1:-1:-1;;;;;;3142:17:0;;;;;;;3175:40;;3125:6;;;3142:17;3125:6;;3175:40;;3106:16;;3175:40;3095:128;3032:191;:::o;37566:188::-;-1:-1:-1;;;;;37649:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37649:39:0;;;;;;;;;;37706:40;;37649:39;;:31;37706:40;;;37566:188;;:::o;22752:98::-;22810:7;22837:5;22841:1;22837;:5;:::i;:::-;22830:12;22752:98;-1:-1:-1;;;22752:98:0:o;23151:::-;23209:7;23236:5;23240:1;23236;:5;:::i;14518:733::-;-1:-1:-1;;;;;14658:20:0;;14650:70;;;;-1:-1:-1;;;14650:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14739:23:0;;14731:71;;;;-1:-1:-1;;;14731:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14899:17:0;;14875:21;14899:17;;;;;;;;;;;14935:23;;;;14927:74;;;;-1:-1:-1;;;14927:74:0;;15346:2:1;14927:74:0;;;15328:21:1;15385:2;15365:18;;;15358:30;15424:34;15404:18;;;15397:62;-1:-1:-1;;;15475:18:1;;;15468:36;15521:19;;14927:74:0;15144:402:1;14927:74:0;-1:-1:-1;;;;;15037:17:0;;;:9;:17;;;;;;;;;;;15057:22;;;15037:42;;15101:20;;;;;;;;:30;;15073:6;;15037:9;15101:30;;15073:6;;15101:30;:::i;:::-;;;;;;;;15166:9;-1:-1:-1;;;;;15149:35:0;15158:6;-1:-1:-1;;;;;15149:35:0;;15177:6;15149:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15149:35:0;;;;;;;;14639:612;14518:733;;;:::o;44479:1756::-;44562:4;44518:23;10570:18;;;;;;;;;;;44518:50;;44579:25;44675:12;;44641:18;;44607;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44579:108;-1:-1:-1;44698:12:0;44727:20;;;:46;;-1:-1:-1;44751:22:0;;44727:46;44723:85;;;44790:7;;;44479:1756::o;44723:85::-;44842:18;;:23;;44863:2;44842:23;:::i;:::-;44824:15;:41;44820:115;;;44900:18;;:23;;44921:2;44900:23;:::i;:::-;44882:41;;44820:115;44996:23;45109:1;45076:17;45041:18;;45023:15;:36;;;;:::i;:::-;45022:71;;;;:::i;:::-;:88;;;;:::i;:::-;44996:114;-1:-1:-1;45121:26:0;45150:36;:15;44996:114;45150:19;:36::i;:::-;45121:65;-1:-1:-1;45227:21:0;45261:36;45121:65;45261:16;:36::i;:::-;45310:18;45331:44;:21;45357:17;45331:25;:44::i;:::-;45310:65;;45388:23;45414:81;45467:17;45414:34;45429:18;;45414:10;:14;;:34;;;;:::i;:81::-;45388:107;;45506:17;45526:51;45559:17;45526:28;45541:12;;45526:10;:14;;:28;;;;:::i;:51::-;45506:71;-1:-1:-1;45590:23:0;45506:71;45616:28;45629:15;45616:10;:28;:::i;:::-;:40;;;;:::i;:::-;45690:1;45669:18;:22;;;45702:18;:22;;;45735:12;:16;;;45786:9;;45778:45;;45590:66;;-1:-1:-1;;;;;;45786:9:0;;45809;;45778:45;45690:1;45778:45;45809:9;45786;45778:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45764:59:0;;-1:-1:-1;;45840:19:0;;;;;:42;;;45881:1;45863:15;:19;45840:42;45836:278;;;45899:46;45912:15;45929;45899:12;:46::i;:::-;46069:18;;45965:137;;;15963:25:1;;;16019:2;16004:18;;15997:34;;;16047:18;;;16040:34;;;;45965:137:0;;;;;;15951:2:1;45965:137:0;;;45836:278;46148:15;;46140:87;;-1:-1:-1;;;;;46148:15:0;;;;46191:21;;46140:87;;;;46191:21;46148:15;46140:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44479:1756:0:o;46806:788::-;46897:15;46880:14;:32;46998:29;;-1:-1:-1;;;46998:29:0;;-1:-1:-1;;;;;47013:13:0;1707:32:1;46998:29:0;;;1689:51:1;46863:4:0;;;;46998;;:14;;1662:18:1;;46998:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46967:60;;47077:20;47100:77;47161:5;47100:42;47125:16;;47100:20;:24;;:42;;;;:::i;:77::-;47077:100;-1:-1:-1;47282:16:0;;47278:110;;47315:61;47331:13;47354:6;47363:12;47315:15;:61::i;:::-;47463:19;47500:13;47463:51;;47525:4;-1:-1:-1;;;;;47525:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47552:12:0;;;;-1:-1:-1;47552:12:0;;-1:-1:-1;47552:12:0;47582:4;47575:11;;;;;46806:788;:::o;22395:98::-;22453:7;22480:5;22484:1;22480;:5;:::i;43357:589::-;43507:16;;;43521:1;43507:16;;;;;;;;43483:21;;43507:16;;;;;;;;;;-1:-1:-1;43507:16:0;43483:40;;43552:4;43534;43539:1;43534:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43534:23:0;;;-1:-1:-1;;;;;43534:23:0;;;;;43578:15;-1:-1:-1;;;;;43578:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43568:4;43573:1;43568:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43568:32:0;;;-1:-1:-1;;;;;43568:32:0;;;;;43613:62;43630:4;43645:15;43663:11;43613:8;:62::i;:::-;43714:224;;-1:-1:-1;;;43714:224:0;;-1:-1:-1;;;;;43714:15:0;:66;;;;:224;;43795:11;;43821:1;;43865:4;;43892;;43912:15;;43714:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43412:534;43357:589;:::o;43954:517::-;44102:62;44119:4;44134:15;44152:11;44102:8;:62::i;:::-;44207:256;;-1:-1:-1;;;44207:256:0;;44279:4;44207:256;;;17931:34:1;17981:18;;;17974:34;;;44325:1:0;18024:18:1;;;18017:34;;;18067:18;;;18060:34;29816:6:0;18110:19:1;;;18103:44;44437:15:0;18163:19:1;;;18156:35;44207:15:0;-1:-1:-1;;;;;44207:31:0;;;;44246:9;;17865:19:1;;44207:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43954:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2602:180::-;2661:6;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;-1:-1:-1;2753:23:1;;2602:180;-1:-1:-1;2602:180:1:o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:388::-;4171:6;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;-1:-1:-1;4413:2:1;4398:18;;4385:32;4426:33;4385:32;4426:33;:::i;:::-;4478:7;4468:17;;;4103:388;;;;;:::o;4496:380::-;4575:1;4571:12;;;;4618;;;4639:61;;4693:4;4685:6;4681:17;4671:27;;4639:61;4746:2;4738:6;4735:14;4715:18;4712:38;4709:161;;;4792:10;4787:3;4783:20;4780:1;4773:31;4827:4;4824:1;4817:15;4855:4;4852:1;4845:15;4709:161;;4496:380;;;:::o;4881:356::-;5083:2;5065:21;;;5102:18;;;5095:30;5161:34;5156:2;5141:18;;5134:62;5228:2;5213:18;;4881:356::o;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:168;5823:7;5889:1;5885;5881:6;5877:14;5874:1;5871:21;5866:1;5859:9;5852:17;5848:45;5845:71;;;5896:18;;:::i;:::-;-1:-1:-1;5936:9:1;;5783:168::o;5956:217::-;5996:1;6022;6012:132;;6066:10;6061:3;6057:20;6054:1;6047:31;6101:4;6098:1;6091:15;6129:4;6126:1;6119:15;6012:132;-1:-1:-1;6158:9:1;;5956:217::o;6594:128::-;6634:3;6665:1;6661:6;6658:1;6655:13;6652:39;;;6671:18;;:::i;:::-;-1:-1:-1;6707:9:1;;6594:128::o;11181:184::-;11251:6;11304:2;11292:9;11283:7;11279:23;11275:32;11272:52;;;11320:1;11317;11310:12;11272:52;-1:-1:-1;11343:16:1;;11181:184;-1:-1:-1;11181:184:1:o;12178:401::-;12380:2;12362:21;;;12419:2;12399:18;;;12392:30;12458:34;12453:2;12438:18;;12431:62;-1:-1:-1;;;12524:2:1;12509:18;;12502:35;12569:3;12554:19;;12178:401::o;12584:399::-;12786:2;12768:21;;;12825:2;12805:18;;;12798:30;12864:34;12859:2;12844:18;;12837:62;-1:-1:-1;;;12930:2:1;12915:18;;12908:33;12973:3;12958:19;;12584:399::o;15014:125::-;15054:4;15082:1;15079;15076:8;15073:34;;;15087:18;;:::i;:::-;-1:-1:-1;15124:9:1;;15014:125::o;16217:127::-;16278:10;16273:3;16269:20;16266:1;16259:31;16309:4;16306:1;16299:15;16333:4;16330:1;16323:15;16349:251;16419:6;16472:2;16460:9;16451:7;16447:23;16443:32;16440:52;;;16488:1;16485;16478:12;16440:52;16520:9;16514:16;16539:31;16564:5;16539:31;:::i;16605:980::-;16867:4;16915:3;16904:9;16900:19;16946:6;16935:9;16928:25;16972:2;17010:6;17005:2;16994:9;16990:18;16983:34;17053:3;17048:2;17037:9;17033:18;17026:31;17077:6;17112;17106:13;17143:6;17135;17128:22;17181:3;17170:9;17166:19;17159:26;;17220:2;17212:6;17208:15;17194:29;;17241:1;17251:195;17265:6;17262:1;17259:13;17251:195;;;17330:13;;-1:-1:-1;;;;;17326:39:1;17314:52;;17421:15;;;;17386:12;;;;17362:1;17280:9;17251:195;;;-1:-1:-1;;;;;;;17502:32:1;;;;17497:2;17482:18;;17475:60;-1:-1:-1;;;17566:3:1;17551:19;17544:35;17463:3;16605:980;-1:-1:-1;;;16605:980:1:o;18202:306::-;18290:6;18298;18306;18359:2;18347:9;18338:7;18334:23;18330:32;18327:52;;;18375:1;18372;18365:12;18327:52;18404:9;18398:16;18388:26;;18454:2;18443:9;18439:18;18433:25;18423:35;;18498:2;18487:9;18483:18;18477:25;18467:35;;18202:306;;;;;:::o
Swarm Source
ipfs://1621d52891090384f7c22b118ad74800a456418848a1e4858b0f0288fb6d8086
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.