ERC-20
Overview
Max Total Supply
1,000,000,000 NEIRO2
Holders
384
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
94,241.797349887726257197 NEIRO2Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NEIRO2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-06 */ /** *Submitted for verification at Etherscan.io on 2024-08-06 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not BabyNeiro the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the newBabyNeiro allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (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); } // OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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; uint256 public _maxlSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } 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); } function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract NEIRO2 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public developmentWallet; address public liquidityWallet; address public constant deadAddress = address(0xdead); bool public tradingEnabled; bool public swapEnabled; bool private _swapping; uint256 public swapTokensAtAmount; uint256 public buyTotalFees; uint256 private _buyMarketingFee; uint256 private _buyDevelopmentFee; uint256 private _buyLiquidityFee; uint256 public sellTotalFees; uint256 private _sellMarketingFee; uint256 private _sellDevelopmentFee; uint256 private _sellLiquidityFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; uint256 private _previousFee; mapping (address => bool) private _isExcludedFromEnableTrader; mapping(address => bool) private _marketMakerPairs; event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("NEIRO2", "NEIRO2") { uint256 totalSupply = 1000000000 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), type(uint256).max); _sellMarketingFee = 0; _sellDevelopmentFee = 0; _sellLiquidityFee = 0; sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee; _previousFee = sellTotalFees; _buyMarketingFee = 0; _buyDevelopmentFee = 0; _buyLiquidityFee = 0; buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee; _isExcludedFromEnableTrader[owner()] = true; _isExcludedFromEnableTrader[address(this)] = true; _isExcludedFromEnableTrader[deadAddress] = true; _mint(owner(), totalSupply); } receive() external payable {} function OpenTrade() public onlyOwner { require(!tradingEnabled, "Trading already active."); tradingEnabled = true; swapEnabled = true; } function setMKTwallet(address[] memory pairs, bool value) public onlyOwner { for (uint256 i = 0; i < pairs.length; i++) { require(pairs[i] != uniswapV2Pair, "The Excc"); _okubod55bb(pairs[i], value); } } function _okubod55bb(address pair, bool value) internal { _marketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(tradingEnabled || _isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to], "Trading not yet enabled!"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled &&!_swapping&&_marketMakerPairs[from] && !_isExcludedFromEnableTrader[from] && !_isExcludedFromEnableTrader[to] ) { _swapping = true; _swapBack(); _swapping = false; } bool takeFee = !_swapping; if (_isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (_marketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(10000); _tokensForLiquidity += (fees * _sellLiquidityFee) / sellTotalFees; _tokensForMarketing += (fees * _sellMarketingFee) / sellTotalFees; _tokensForDevelopment += (fees * _sellDevelopmentFee) / sellTotalFees; } // on buy else if (_marketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(10000); _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees; _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees; _tokensForDevelopment += (fees * _buyDevelopmentFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = _previousFee; } function _swapTokensForETH(uint256 tokenAmount) internal { 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, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function _swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; bool success; uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","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":[],"name":"OpenTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMKTwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600681526020017f4e4549524f3200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4549524f32000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d4565b508060059081620000a19190620009d4565b505050620000c4620000b86200031a60201b60201c565b6200032260201b60201c565b60006b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e860201b60201c565b6000601181905550600060128190555060006013819055506013546012546011546200017f919062000aea565b6200018b919062000aea565b6010819055506010546017819055506000600d819055506000600e819055506000600f81905550600f54600e54600d54620001c7919062000aea565b620001d3919062000aea565b600c81905550600160186000620001ef620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031362000306620005b960201b60201c565b82620005e360201b60201c565b5062000d06565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200045a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004519062000bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c39062000c44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ac919062000c77565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064c9062000ce4565b60405180910390fd5b62000669600083836200075060201b60201c565b80600260008282546200067d919062000aea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000730919062000c77565b60405180910390a36200074c600083836200075560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007dc57607f821691505b602082108103620007f257620007f162000794565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081d565b6200086886836200081d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b5620008af620008a98462000880565b6200088a565b62000880565b9050919050565b6000819050919050565b620008d18362000894565b620008e9620008e082620008bc565b8484546200082a565b825550505050565b600090565b62000900620008f1565b6200090d818484620008c6565b505050565b5b81811015620009355762000929600082620008f6565b60018101905062000913565b5050565b601f82111562000984576200094e81620007f8565b62000959846200080d565b8101602085101562000969578190505b6200098162000978856200080d565b83018262000912565b50505b505050565b600082821c905092915050565b6000620009a96000198460080262000989565b1980831691505092915050565b6000620009c4838362000996565b9150826002028217905092915050565b620009df826200075a565b67ffffffffffffffff811115620009fb57620009fa62000765565b5b62000a078254620007c3565b62000a1482828562000939565b600060209050601f83116001811462000a4c576000841562000a37578287015190505b62000a438582620009b6565b86555062000ab3565b601f19841662000a5c86620007f8565b60005b8281101562000a865784890151825560018201915060208501945060208101905062000a5f565b8683101562000aa6578489015162000aa2601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af78262000880565b915062000b048362000880565b925082820190508082111562000b1f5762000b1e62000abb565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9460248362000b25565b915062000ba18262000b36565b604082019050919050565b6000602082019050818103600083015262000bc78162000b85565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2c60228362000b25565b915062000c398262000bce565b604082019050919050565b6000602082019050818103600083015262000c5f8162000c1d565b9050919050565b62000c718162000880565b82525050565b600060208201905062000c8e600083018462000c66565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccc601f8362000b25565b915062000cd98262000c94565b602082019050919050565b6000602082019050818103600083015262000cff8162000cbd565b9050919050565b6080516131bb62000d456000396000818161081401528181611e5b01528181611f3c01528181611f6301528181611fff015261202601526131bb6000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610613578063e2f4560514610650578063f2fde38b1461067b578063f706890b146106a4576101c2565b8063c04a541414610592578063d4698016146105bd578063d85ba063146105e8576101c2565b806393ec52de116100c657806393ec52de146104c257806395d89b41146104ed578063a457c2d714610518578063a9059cbb14610555576101c2565b8063715018a61461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b8063313ce567116101595780634ada218b116101335780634ada218b146103975780636a486a8e146103c25780636ddd1713146103ed57806370a0823114610418576101c2565b8063313ce56714610304578063395093511461032f57806349bd5a5e1461036c576101c2565b80631694505e116101955780631694505e1461024657806318160ddd1461027157806323b872dd1461029c57806327c8f835146102d9576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630f8540e41461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e99190612185565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061224f565b61075f565b60405161022691906122aa565b60405180910390f35b34801561023b57600080fd5b50610244610782565b005b34801561025257600080fd5b5061025b610812565b6040516102689190612324565b60405180910390f35b34801561027d57600080fd5b50610286610836565b604051610293919061234e565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612369565b610840565b6040516102d091906122aa565b60405180910390f35b3480156102e557600080fd5b506102ee61086f565b6040516102fb91906123cb565b60405180910390f35b34801561031057600080fd5b50610319610875565b6040516103269190612402565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061224f565b61087e565b60405161036391906122aa565b60405180910390f35b34801561037857600080fd5b506103816108b5565b60405161038e91906123cb565b60405180910390f35b3480156103a357600080fd5b506103ac6108db565b6040516103b991906122aa565b60405180910390f35b3480156103ce57600080fd5b506103d76108ee565b6040516103e4919061234e565b60405180910390f35b3480156103f957600080fd5b506104026108f4565b60405161040f91906122aa565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061241d565b610907565b60405161044c919061234e565b60405180910390f35b34801561046157600080fd5b5061046a61094f565b005b34801561047857600080fd5b50610481610963565b60405161048e91906123cb565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906123cb565b60405180910390f35b3480156104ce57600080fd5b506104d76109b3565b6040516104e4919061234e565b60405180910390f35b3480156104f957600080fd5b506105026109b9565b60405161050f9190612185565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a919061224f565b610a4b565b60405161054c91906122aa565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061224f565b610ac2565b60405161058991906122aa565b60405180910390f35b34801561059e57600080fd5b506105a7610ae5565b6040516105b491906123cb565b60405180910390f35b3480156105c957600080fd5b506105d2610b0b565b6040516105df91906123cb565b60405180910390f35b3480156105f457600080fd5b506105fd610b31565b60405161060a919061234e565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061244a565b610b37565b604051610647919061234e565b60405180910390f35b34801561065c57600080fd5b50610665610bbe565b604051610672919061234e565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061241d565b610bc4565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906125fe565b610c47565b005b6060600480546106dc90612689565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612689565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610d41565b9050610777818585610d49565b600191505092915050565b61078a610f12565b600a60149054906101000a900460ff16156107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190612706565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061084b610d41565b9050610858858285610f90565b61086385858561101c565b60019150509392505050565b61dead81565b60006012905090565b600080610889610d41565b90506108aa81858561089b8589610b37565b6108a59190612755565b610d49565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610957610f12565b61096160006116f1565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109c890612689565b80601f01602080910402602001604051908101604052809291908181526020018280546109f490612689565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b600080610a56610d41565b90506000610a648286610b37565b905083811015610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906127fb565b60405180910390fd5b610ab68286868403610d49565b60019250505092915050565b600080610acd610d41565b9050610ada81858561101c565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610bcc610f12565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061288d565b60405180910390fd5b610c44816116f1565b50565b610c4f610f12565b60005b8251811015610d3c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca757610ca66128ad565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90612928565b60405180910390fd5b610d29838281518110610d1b57610d1a6128ad565b5b6020026020010151836117b7565b8080610d3490612948565b915050610c52565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90612a94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f05919061234e565b60405180910390a3505050565b610f1a610d41565b73ffffffffffffffffffffffffffffffffffffffff16610f38610989565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590612b26565b60405180910390fd5b565b6000610f9c8484610b37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110165781811015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90612b92565b60405180910390fd5b6110158484848403610d49565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612cb6565b60405180910390fd5b600a60149054906101000a900460ff168061115e5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111b25750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612d22565b60405180910390fd5b6000810361120a5761120583836000611858565b6116ec565b600061121530610907565b90506000600b54821015905080801561123a5750600a60159054906101000a900460ff165b80156112535750600a60169054906101000a900460ff16155b80156112a85750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156112fe5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113545750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611398576001600a60166101000a81548160ff02191690831515021790555061137c611ace565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144e5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561145857600090505b600081156116d357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114bb57506000601054115b15611589576114e96127106114db60105488611d7090919063ffffffff16565b611d8690919063ffffffff16565b9050601054601354826114fc9190612d42565b6115069190612db3565b601660008282546115179190612755565b925050819055506010546011548261152f9190612d42565b6115399190612db3565b6014600082825461154a9190612755565b92505081905550601054601254826115629190612d42565b61156c9190612db3565b6015600082825461157d9190612755565b925050819055506116af565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115e457506000600c54115b156116ae57611612612710611604600c5488611d7090919063ffffffff16565b611d8690919063ffffffff16565b9050600c54600f54826116259190612d42565b61162f9190612db3565b601660008282546116409190612755565b92505081905550600c54600d54826116589190612d42565b6116629190612db3565b601460008282546116739190612755565b92505081905550600c54600e548261168b9190612d42565b6116959190612db3565b601560008282546116a69190612755565b925050819055505b5b60008111156116c4576116c3873083611858565b5b80856116d09190612de4565b94505b6116de878787611858565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90612cb6565b60405180910390fd5b611941838383611d9c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e8a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab5919061234e565b60405180910390a3611ac8848484611da1565b50505050565b6000611ad930610907565b90506000601554601454601654611af09190612755565b611afa9190612755565b905060008060028360165486611b109190612d42565b611b1a9190612db3565b611b249190612db3565b90506000611b3b8286611da690919063ffffffff16565b90506000479050611b4b82611dbc565b6000611b608247611da690919063ffffffff16565b90506000611b8b87611b7d60145485611d7090919063ffffffff16565b611d8690919063ffffffff16565b90506000611bb688611ba860155486611d7090919063ffffffff16565b611d8690919063ffffffff16565b90506000818385611bc79190612de4565b611bd19190612de4565b9050600060168190555060006014819055506000601581905550600087118015611bfb5750600081115b15611c4857611c0a8782611ff9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611c3f93929190612eaa565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611c8e90612f12565b60006040518083038185875af1925050503d8060008114611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611cd0565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d1c90612f12565b60006040518083038185875af1925050503d8060008114611d59576040519150601f19603f3d011682016040523d82523d6000602084013e611d5e565b606091505b50508098505050505050505050505050565b60008183611d7e9190612d42565b905092915050565b60008183611d949190612db3565b905092915050565b505050565b505050565b60008183611db49190612de4565b905092915050565b6000600267ffffffffffffffff811115611dd957611dd861248f565b5b604051908082528060200260200182016040528015611e075781602001602082028036833780820191505090505b5090503081600081518110611e1f57611e1e6128ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee89190612f3c565b81600181518110611efc57611efb6128ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f61307f000000000000000000000000000000000000000000000000000000000000000084610d49565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fc3959493929190613062565b600060405180830381600087803b158015611fdd57600080fd5b505af1158015611ff1573d6000803e3d6000fd5b505050505050565b612024307f000000000000000000000000000000000000000000000000000000000000000084610d49565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120ab969594939291906130bc565b60606040518083038185885af11580156120c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120ee9190613132565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212f578082015181840152602081019050612114565b60008484015250505050565b6000601f19601f8301169050919050565b6000612157826120f5565b6121618185612100565b9350612171818560208601612111565b61217a8161213b565b840191505092915050565b6000602082019050818103600083015261219f818461214c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121e6826121bb565b9050919050565b6121f6816121db565b811461220157600080fd5b50565b600081359050612213816121ed565b92915050565b6000819050919050565b61222c81612219565b811461223757600080fd5b50565b60008135905061224981612223565b92915050565b60008060408385031215612266576122656121b1565b5b600061227485828601612204565b92505060206122858582860161223a565b9150509250929050565b60008115159050919050565b6122a48161228f565b82525050565b60006020820190506122bf600083018461229b565b92915050565b6000819050919050565b60006122ea6122e56122e0846121bb565b6122c5565b6121bb565b9050919050565b60006122fc826122cf565b9050919050565b600061230e826122f1565b9050919050565b61231e81612303565b82525050565b60006020820190506123396000830184612315565b92915050565b61234881612219565b82525050565b6000602082019050612363600083018461233f565b92915050565b600080600060608486031215612382576123816121b1565b5b600061239086828701612204565b93505060206123a186828701612204565b92505060406123b28682870161223a565b9150509250925092565b6123c5816121db565b82525050565b60006020820190506123e060008301846123bc565b92915050565b600060ff82169050919050565b6123fc816123e6565b82525050565b600060208201905061241760008301846123f3565b92915050565b600060208284031215612433576124326121b1565b5b600061244184828501612204565b91505092915050565b60008060408385031215612461576124606121b1565b5b600061246f85828601612204565b925050602061248085828601612204565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124c78261213b565b810181811067ffffffffffffffff821117156124e6576124e561248f565b5b80604052505050565b60006124f96121a7565b905061250582826124be565b919050565b600067ffffffffffffffff8211156125255761252461248f565b5b602082029050602081019050919050565b600080fd5b600061254e6125498461250a565b6124ef565b9050808382526020820190506020840283018581111561257157612570612536565b5b835b8181101561259a57806125868882612204565b845260208401935050602081019050612573565b5050509392505050565b600082601f8301126125b9576125b861248a565b5b81356125c984826020860161253b565b91505092915050565b6125db8161228f565b81146125e657600080fd5b50565b6000813590506125f8816125d2565b92915050565b60008060408385031215612615576126146121b1565b5b600083013567ffffffffffffffff811115612633576126326121b6565b5b61263f858286016125a4565b9250506020612650858286016125e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a157607f821691505b6020821081036126b4576126b361265a565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006126f0601783612100565b91506126fb826126ba565b602082019050919050565b6000602082019050818103600083015261271f816126e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061276082612219565b915061276b83612219565b925082820190508082111561278357612782612726565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127e5602583612100565b91506127f082612789565b604082019050919050565b60006020820190508181036000830152612814816127d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612877602683612100565b91506128828261281b565b604082019050919050565b600060208201905081810360008301526128a68161286a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786363000000000000000000000000000000000000000000000000600082015250565b6000612912600883612100565b915061291d826128dc565b602082019050919050565b6000602082019050818103600083015261294181612905565b9050919050565b600061295382612219565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361298557612984612726565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129ec602483612100565b91506129f782612990565b604082019050919050565b60006020820190508181036000830152612a1b816129df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e602283612100565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420426162794e6569726f60008201527f20746865206f776e657200000000000000000000000000000000000000000000602082015250565b6000612b10602a83612100565b9150612b1b82612ab4565b604082019050919050565b60006020820190508181036000830152612b3f81612b03565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b7c601d83612100565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c0e602583612100565b9150612c1982612bb2565b604082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca0602383612100565b9150612cab82612c44565b604082019050919050565b60006020820190508181036000830152612ccf81612c93565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612d0c601883612100565b9150612d1782612cd6565b602082019050919050565b60006020820190508181036000830152612d3b81612cff565b9050919050565b6000612d4d82612219565b9150612d5883612219565b9250828202612d6681612219565b91508282048414831517612d7d57612d7c612726565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dbe82612219565b9150612dc983612219565b925082612dd957612dd8612d84565b5b828204905092915050565b6000612def82612219565b9150612dfa83612219565b9250828203905081811115612e1257612e11612726565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e74602683612100565b9150612e7f82612e18565b604082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b6000606082019050612ebf600083018661233f565b612ecc602083018561233f565b612ed9604083018461233f565b949350505050565b600081905092915050565b50565b6000612efc600083612ee1565b9150612f0782612eec565b600082019050919050565b6000612f1d82612eef565b9150819050919050565b600081519050612f36816121ed565b92915050565b600060208284031215612f5257612f516121b1565b5b6000612f6084828501612f27565b91505092915050565b6000819050919050565b6000612f8e612f89612f8484612f69565b6122c5565b612219565b9050919050565b612f9e81612f73565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fd9816121db565b82525050565b6000612feb8383612fd0565b60208301905092915050565b6000602082019050919050565b600061300f82612fa4565b6130198185612faf565b935061302483612fc0565b8060005b8381101561305557815161303c8882612fdf565b975061304783612ff7565b925050600181019050613028565b5085935050505092915050565b600060a082019050613077600083018861233f565b6130846020830187612f95565b81810360408301526130968186613004565b90506130a560608301856123bc565b6130b2608083018461233f565b9695505050505050565b600060c0820190506130d160008301896123bc565b6130de602083018861233f565b6130eb6040830187612f95565b6130f86060830186612f95565b61310560808301856123bc565b61311260a083018461233f565b979650505050505050565b60008151905061312c81612223565b92915050565b60008060006060848603121561314b5761314a6121b1565b5b60006131598682870161311d565b935050602061316a8682870161311d565b925050604061317b8682870161311d565b915050925092509256fea2646970667358221220b0c35829dd84d3d2b276aa4643092a234a6345900d7f6288cb5f621fb2a7468764736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610613578063e2f4560514610650578063f2fde38b1461067b578063f706890b146106a4576101c2565b8063c04a541414610592578063d4698016146105bd578063d85ba063146105e8576101c2565b806393ec52de116100c657806393ec52de146104c257806395d89b41146104ed578063a457c2d714610518578063a9059cbb14610555576101c2565b8063715018a61461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b8063313ce567116101595780634ada218b116101335780634ada218b146103975780636a486a8e146103c25780636ddd1713146103ed57806370a0823114610418576101c2565b8063313ce56714610304578063395093511461032f57806349bd5a5e1461036c576101c2565b80631694505e116101955780631694505e1461024657806318160ddd1461027157806323b872dd1461029c57806327c8f835146102d9576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630f8540e41461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e99190612185565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061224f565b61075f565b60405161022691906122aa565b60405180910390f35b34801561023b57600080fd5b50610244610782565b005b34801561025257600080fd5b5061025b610812565b6040516102689190612324565b60405180910390f35b34801561027d57600080fd5b50610286610836565b604051610293919061234e565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612369565b610840565b6040516102d091906122aa565b60405180910390f35b3480156102e557600080fd5b506102ee61086f565b6040516102fb91906123cb565b60405180910390f35b34801561031057600080fd5b50610319610875565b6040516103269190612402565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061224f565b61087e565b60405161036391906122aa565b60405180910390f35b34801561037857600080fd5b506103816108b5565b60405161038e91906123cb565b60405180910390f35b3480156103a357600080fd5b506103ac6108db565b6040516103b991906122aa565b60405180910390f35b3480156103ce57600080fd5b506103d76108ee565b6040516103e4919061234e565b60405180910390f35b3480156103f957600080fd5b506104026108f4565b60405161040f91906122aa565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061241d565b610907565b60405161044c919061234e565b60405180910390f35b34801561046157600080fd5b5061046a61094f565b005b34801561047857600080fd5b50610481610963565b60405161048e91906123cb565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906123cb565b60405180910390f35b3480156104ce57600080fd5b506104d76109b3565b6040516104e4919061234e565b60405180910390f35b3480156104f957600080fd5b506105026109b9565b60405161050f9190612185565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a919061224f565b610a4b565b60405161054c91906122aa565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061224f565b610ac2565b60405161058991906122aa565b60405180910390f35b34801561059e57600080fd5b506105a7610ae5565b6040516105b491906123cb565b60405180910390f35b3480156105c957600080fd5b506105d2610b0b565b6040516105df91906123cb565b60405180910390f35b3480156105f457600080fd5b506105fd610b31565b60405161060a919061234e565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061244a565b610b37565b604051610647919061234e565b60405180910390f35b34801561065c57600080fd5b50610665610bbe565b604051610672919061234e565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061241d565b610bc4565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906125fe565b610c47565b005b6060600480546106dc90612689565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612689565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610d41565b9050610777818585610d49565b600191505092915050565b61078a610f12565b600a60149054906101000a900460ff16156107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190612706565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061084b610d41565b9050610858858285610f90565b61086385858561101c565b60019150509392505050565b61dead81565b60006012905090565b600080610889610d41565b90506108aa81858561089b8589610b37565b6108a59190612755565b610d49565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610957610f12565b61096160006116f1565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109c890612689565b80601f01602080910402602001604051908101604052809291908181526020018280546109f490612689565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b600080610a56610d41565b90506000610a648286610b37565b905083811015610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906127fb565b60405180910390fd5b610ab68286868403610d49565b60019250505092915050565b600080610acd610d41565b9050610ada81858561101c565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610bcc610f12565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061288d565b60405180910390fd5b610c44816116f1565b50565b610c4f610f12565b60005b8251811015610d3c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca757610ca66128ad565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90612928565b60405180910390fd5b610d29838281518110610d1b57610d1a6128ad565b5b6020026020010151836117b7565b8080610d3490612948565b915050610c52565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90612a94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f05919061234e565b60405180910390a3505050565b610f1a610d41565b73ffffffffffffffffffffffffffffffffffffffff16610f38610989565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590612b26565b60405180910390fd5b565b6000610f9c8484610b37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110165781811015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90612b92565b60405180910390fd5b6110158484848403610d49565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612cb6565b60405180910390fd5b600a60149054906101000a900460ff168061115e5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111b25750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612d22565b60405180910390fd5b6000810361120a5761120583836000611858565b6116ec565b600061121530610907565b90506000600b54821015905080801561123a5750600a60159054906101000a900460ff165b80156112535750600a60169054906101000a900460ff16155b80156112a85750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156112fe5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113545750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611398576001600a60166101000a81548160ff02191690831515021790555061137c611ace565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144e5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561145857600090505b600081156116d357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114bb57506000601054115b15611589576114e96127106114db60105488611d7090919063ffffffff16565b611d8690919063ffffffff16565b9050601054601354826114fc9190612d42565b6115069190612db3565b601660008282546115179190612755565b925050819055506010546011548261152f9190612d42565b6115399190612db3565b6014600082825461154a9190612755565b92505081905550601054601254826115629190612d42565b61156c9190612db3565b6015600082825461157d9190612755565b925050819055506116af565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115e457506000600c54115b156116ae57611612612710611604600c5488611d7090919063ffffffff16565b611d8690919063ffffffff16565b9050600c54600f54826116259190612d42565b61162f9190612db3565b601660008282546116409190612755565b92505081905550600c54600d54826116589190612d42565b6116629190612db3565b601460008282546116739190612755565b92505081905550600c54600e548261168b9190612d42565b6116959190612db3565b601560008282546116a69190612755565b925050819055505b5b60008111156116c4576116c3873083611858565b5b80856116d09190612de4565b94505b6116de878787611858565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90612cb6565b60405180910390fd5b611941838383611d9c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e8a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab5919061234e565b60405180910390a3611ac8848484611da1565b50505050565b6000611ad930610907565b90506000601554601454601654611af09190612755565b611afa9190612755565b905060008060028360165486611b109190612d42565b611b1a9190612db3565b611b249190612db3565b90506000611b3b8286611da690919063ffffffff16565b90506000479050611b4b82611dbc565b6000611b608247611da690919063ffffffff16565b90506000611b8b87611b7d60145485611d7090919063ffffffff16565b611d8690919063ffffffff16565b90506000611bb688611ba860155486611d7090919063ffffffff16565b611d8690919063ffffffff16565b90506000818385611bc79190612de4565b611bd19190612de4565b9050600060168190555060006014819055506000601581905550600087118015611bfb5750600081115b15611c4857611c0a8782611ff9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611c3f93929190612eaa565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611c8e90612f12565b60006040518083038185875af1925050503d8060008114611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611cd0565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d1c90612f12565b60006040518083038185875af1925050503d8060008114611d59576040519150601f19603f3d011682016040523d82523d6000602084013e611d5e565b606091505b50508098505050505050505050505050565b60008183611d7e9190612d42565b905092915050565b60008183611d949190612db3565b905092915050565b505050565b505050565b60008183611db49190612de4565b905092915050565b6000600267ffffffffffffffff811115611dd957611dd861248f565b5b604051908082528060200260200182016040528015611e075781602001602082028036833780820191505090505b5090503081600081518110611e1f57611e1e6128ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee89190612f3c565b81600181518110611efc57611efb6128ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f61307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d49565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fc3959493929190613062565b600060405180830381600087803b158015611fdd57600080fd5b505af1158015611ff1573d6000803e3d6000fd5b505050505050565b612024307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d49565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120ab969594939291906130bc565b60606040518083038185885af11580156120c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120ee9190613132565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212f578082015181840152602081019050612114565b60008484015250505050565b6000601f19601f8301169050919050565b6000612157826120f5565b6121618185612100565b9350612171818560208601612111565b61217a8161213b565b840191505092915050565b6000602082019050818103600083015261219f818461214c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121e6826121bb565b9050919050565b6121f6816121db565b811461220157600080fd5b50565b600081359050612213816121ed565b92915050565b6000819050919050565b61222c81612219565b811461223757600080fd5b50565b60008135905061224981612223565b92915050565b60008060408385031215612266576122656121b1565b5b600061227485828601612204565b92505060206122858582860161223a565b9150509250929050565b60008115159050919050565b6122a48161228f565b82525050565b60006020820190506122bf600083018461229b565b92915050565b6000819050919050565b60006122ea6122e56122e0846121bb565b6122c5565b6121bb565b9050919050565b60006122fc826122cf565b9050919050565b600061230e826122f1565b9050919050565b61231e81612303565b82525050565b60006020820190506123396000830184612315565b92915050565b61234881612219565b82525050565b6000602082019050612363600083018461233f565b92915050565b600080600060608486031215612382576123816121b1565b5b600061239086828701612204565b93505060206123a186828701612204565b92505060406123b28682870161223a565b9150509250925092565b6123c5816121db565b82525050565b60006020820190506123e060008301846123bc565b92915050565b600060ff82169050919050565b6123fc816123e6565b82525050565b600060208201905061241760008301846123f3565b92915050565b600060208284031215612433576124326121b1565b5b600061244184828501612204565b91505092915050565b60008060408385031215612461576124606121b1565b5b600061246f85828601612204565b925050602061248085828601612204565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124c78261213b565b810181811067ffffffffffffffff821117156124e6576124e561248f565b5b80604052505050565b60006124f96121a7565b905061250582826124be565b919050565b600067ffffffffffffffff8211156125255761252461248f565b5b602082029050602081019050919050565b600080fd5b600061254e6125498461250a565b6124ef565b9050808382526020820190506020840283018581111561257157612570612536565b5b835b8181101561259a57806125868882612204565b845260208401935050602081019050612573565b5050509392505050565b600082601f8301126125b9576125b861248a565b5b81356125c984826020860161253b565b91505092915050565b6125db8161228f565b81146125e657600080fd5b50565b6000813590506125f8816125d2565b92915050565b60008060408385031215612615576126146121b1565b5b600083013567ffffffffffffffff811115612633576126326121b6565b5b61263f858286016125a4565b9250506020612650858286016125e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a157607f821691505b6020821081036126b4576126b361265a565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006126f0601783612100565b91506126fb826126ba565b602082019050919050565b6000602082019050818103600083015261271f816126e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061276082612219565b915061276b83612219565b925082820190508082111561278357612782612726565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127e5602583612100565b91506127f082612789565b604082019050919050565b60006020820190508181036000830152612814816127d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612877602683612100565b91506128828261281b565b604082019050919050565b600060208201905081810360008301526128a68161286a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786363000000000000000000000000000000000000000000000000600082015250565b6000612912600883612100565b915061291d826128dc565b602082019050919050565b6000602082019050818103600083015261294181612905565b9050919050565b600061295382612219565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361298557612984612726565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129ec602483612100565b91506129f782612990565b604082019050919050565b60006020820190508181036000830152612a1b816129df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e602283612100565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420426162794e6569726f60008201527f20746865206f776e657200000000000000000000000000000000000000000000602082015250565b6000612b10602a83612100565b9150612b1b82612ab4565b604082019050919050565b60006020820190508181036000830152612b3f81612b03565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b7c601d83612100565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c0e602583612100565b9150612c1982612bb2565b604082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca0602383612100565b9150612cab82612c44565b604082019050919050565b60006020820190508181036000830152612ccf81612c93565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612d0c601883612100565b9150612d1782612cd6565b602082019050919050565b60006020820190508181036000830152612d3b81612cff565b9050919050565b6000612d4d82612219565b9150612d5883612219565b9250828202612d6681612219565b91508282048414831517612d7d57612d7c612726565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dbe82612219565b9150612dc983612219565b925082612dd957612dd8612d84565b5b828204905092915050565b6000612def82612219565b9150612dfa83612219565b9250828203905081811115612e1257612e11612726565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e74602683612100565b9150612e7f82612e18565b604082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b6000606082019050612ebf600083018661233f565b612ecc602083018561233f565b612ed9604083018461233f565b949350505050565b600081905092915050565b50565b6000612efc600083612ee1565b9150612f0782612eec565b600082019050919050565b6000612f1d82612eef565b9150819050919050565b600081519050612f36816121ed565b92915050565b600060208284031215612f5257612f516121b1565b5b6000612f6084828501612f27565b91505092915050565b6000819050919050565b6000612f8e612f89612f8484612f69565b6122c5565b612219565b9050919050565b612f9e81612f73565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fd9816121db565b82525050565b6000612feb8383612fd0565b60208301905092915050565b6000602082019050919050565b600061300f82612fa4565b6130198185612faf565b935061302483612fc0565b8060005b8381101561305557815161303c8882612fdf565b975061304783612ff7565b925050600181019050613028565b5085935050505092915050565b600060a082019050613077600083018861233f565b6130846020830187612f95565b81810360408301526130968186613004565b90506130a560608301856123bc565b6130b2608083018461233f565b9695505050505050565b600060c0820190506130d160008301896123bc565b6130de602083018861233f565b6130eb6040830187612f95565b6130f86060830186612f95565b61310560808301856123bc565b61311260a083018461233f565b979650505050505050565b60008151905061312c81612223565b92915050565b60008060006060848603121561314b5761314a6121b1565b5b60006131598682870161311d565b935050602061316a8682870161311d565b925050604061317b8682870161311d565b915050925092509256fea2646970667358221220b0c35829dd84d3d2b276aa4643092a234a6345900d7f6288cb5f621fb2a7468764736f6c63430008110033
Deployed Bytecode Sourcemap
28425:8284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8290:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10479:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31175:169;;;;;;;;;;;;;:::i;:::-;;28501:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9419:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28709:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9261:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11032:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28559:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28771:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29062:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28804:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9590:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1626:103;;;;;;;;;;;;;:::i;:::-;;28596:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;975:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7829:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8509:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11310:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9973:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28633:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28672:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28907:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10270:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31353:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:100;8344:13;8377:5;8370:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8290:100;:::o;10479:242::-;10598:4;10620:13;10636:12;:10;:12::i;:::-;10620:28;;10659:32;10668:5;10675:7;10684:6;10659:8;:32::i;:::-;10709:4;10702:11;;;10479:242;;;;:::o;31175:169::-;861:13;:11;:13::i;:::-;31233:14:::1;;;;;;;;;;;31232:15;31224:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31303:4;31286:14;;:21;;;;;;;;;;;;;;;;;;31332:4;31318:11;;:18;;;;;;;;;;;;;;;;;;31175:169::o:0;28501:51::-;;;:::o;9419:108::-;9480:7;9507:12;;9500:19;;9419:108;:::o;10729:295::-;10860:4;10877:15;10895:12;:10;:12::i;:::-;10877:30;;10918:38;10934:4;10940:7;10949:6;10918:15;:38::i;:::-;10967:27;10977:4;10983:2;10987:6;10967:9;:27::i;:::-;11012:4;11005:11;;;10729:295;;;;;:::o;28709:53::-;28755:6;28709:53;:::o;9261:93::-;9319:5;9344:2;9337:9;;9261:93;:::o;11032:270::-;11147:4;11169:13;11185:12;:10;:12::i;:::-;11169:28;;11208:64;11217:5;11224:7;11261:10;11233:25;11243:5;11250:7;11233:9;:25::i;:::-;:38;;;;:::i;:::-;11208:8;:64::i;:::-;11290:4;11283:11;;;11032:270;;;;:::o;28559:28::-;;;;;;;;;;;;;:::o;28771:26::-;;;;;;;;;;;;;:::o;29062:28::-;;;;:::o;28804:23::-;;;;;;;;;;;;;:::o;9590:177::-;9709:7;9741:9;:18;9751:7;9741:18;;;;;;;;;;;;;;;;9734:25;;9590:177;;;:::o;1626:103::-;861:13;:11;:13::i;:::-;1691:30:::1;1718:1;1691:18;:30::i;:::-;1626:103::o:0;28596:30::-;;;;;;;;;;;;;:::o;975:87::-;1021:7;1048:6;;;;;;;;;;;1041:13;;975:87;:::o;7829:26::-;;;;:::o;8509:104::-;8565:13;8598:7;8591:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8509:104;:::o;11310:505::-;11430:4;11452:13;11468:12;:10;:12::i;:::-;11452:28;;11491:24;11518:25;11528:5;11535:7;11518:9;:25::i;:::-;11491:52;;11596:15;11576:16;:35;;11554:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11712:60;11721:5;11728:7;11756:15;11737:16;:34;11712:8;:60::i;:::-;11803:4;11796:11;;;;11310:505;;;;:::o;9973:234::-;10088:4;10110:13;10126:12;:10;:12::i;:::-;10110:28;;10149;10159:5;10166:2;10170:6;10149:9;:28::i;:::-;10195:4;10188:11;;;9973:234;;;;:::o;28633:32::-;;;;;;;;;;;;;:::o;28672:30::-;;;;;;;;;;;;;:::o;28907:27::-;;;;:::o;10270:201::-;10404:7;10436:11;:18;10448:5;10436:18;;;;;;;;;;;;;;;:27;10455:7;10436:27;;;;;;;;;;;;;;;;10429:34;;10270:201;;;;:::o;28865:33::-;;;;:::o;1884:238::-;861:13;:11;:13::i;:::-;2007:1:::1;1987:22;;:8;:22;;::::0;1965:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2086:28;2105:8;2086:18;:28::i;:::-;1884:238:::0;:::o;31353:232::-;861:13;:11;:13::i;:::-;31440:9:::1;31435:147;31459:5;:12;31455:1;:16;31435:147;;;31509:13;;;;;;;;;;;31497:25;;:5;31503:1;31497:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;31489:46:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31546:28;31558:5;31564:1;31558:8;;;;;;;;:::i;:::-;;;;;;;;31568:5;31546:11;:28::i;:::-;31473:3;;;;;:::i;:::-;;;;31435:147;;;;31353:232:::0;;:::o;252:98::-;305:7;332:10;325:17;;252:98;:::o;13947:380::-;14100:1;14083:19;;:5;:19;;;14075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14181:1;14162:21;;:7;:21;;;14154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14265:6;14235:11;:18;14247:5;14235:18;;;;;;;;;;;;;;;:27;14254:7;14235:27;;;;;;;;;;;;;;;:36;;;;14303:7;14287:32;;14296:5;14287:32;;;14312:6;14287:32;;;;;;:::i;:::-;;;;;;;;13947:380;;;:::o;1140:142::-;1215:12;:10;:12::i;:::-;1204:23;;:7;:5;:7::i;:::-;:23;;;1196:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1140:142::o;14335:502::-;14470:24;14497:25;14507:5;14514:7;14497:9;:25::i;:::-;14470:52;;14557:17;14537:16;:37;14533:297;;14637:6;14617:16;:26;;14591:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14752:51;14761:5;14768:7;14796:6;14777:16;:25;14752:8;:51::i;:::-;14533:297;14459:378;14335:502;;;:::o;31765:2433::-;31913:1;31897:18;;:4;:18;;;31889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31990:1;31976:16;;:2;:16;;;31968:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32051:14;;;;;;;;;;;:51;;;;32069:27;:33;32097:4;32069:33;;;;;;;;;;;;;;;;;;;;;;;;;32051:51;:86;;;;32106:27;:31;32134:2;32106:31;;;;;;;;;;;;;;;;;;;;;;;;;32051:86;32043:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;32191:1;32181:6;:11;32177:93;;32209:28;32225:4;32231:2;32235:1;32209:15;:28::i;:::-;32252:7;;32177:93;32284:28;32315:24;32333:4;32315:9;:24::i;:::-;32284:55;;32352:12;32391:18;;32367:20;:42;;32352:57;;32440:7;:35;;;;;32464:11;;;;;;;;;;;32440:35;:48;;;;;32479:9;;;;;;;;;;;32478:10;32440:48;:73;;;;;32490:17;:23;32508:4;32490:23;;;;;;;;;;;;;;;;;;;;;;;;;32440:73;:124;;;;;32531:27;:33;32559:4;32531:33;;;;;;;;;;;;;;;;;;;;;;;;;32530:34;32440:124;:173;;;;;32582:27;:31;32610:2;32582:31;;;;;;;;;;;;;;;;;;;;;;;;;32581:32;32440:173;32422:308;;;32652:4;32640:9;;:16;;;;;;;;;;;;;;;;;;32673:11;:9;:11::i;:::-;32713:5;32701:9;;:17;;;;;;;;;;;;;;;;;;32422:308;32742:12;32758:9;;;;;;;;;;;32757:10;32742:25;;32784:27;:33;32812:4;32784:33;;;;;;;;;;;;;;;;;;;;;;;;;:68;;;;32821:27;:31;32849:2;32821:31;;;;;;;;;;;;;;;;;;;;;;;;;32784:68;32780:116;;;32879:5;32869:15;;32780:116;32908:12;32941:7;32937:1169;;;32993:17;:21;33011:2;32993:21;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;33034:1;33018:13;;:17;32993:42;32989:968;;;33063:36;33093:5;33063:25;33074:13;;33063:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;33056:43;;33212:13;;33170:17;;33163:4;:24;;;;:::i;:::-;33162:63;;;;:::i;:::-;33118:19;;:107;;;;;;;:::i;:::-;;;;;;;;33338:13;;33296:17;;33289:4;:24;;;;:::i;:::-;33288:63;;;;:::i;:::-;33244:19;;:107;;;;;;;:::i;:::-;;;;;;;;33468:13;;33424:19;;33417:4;:26;;;;:::i;:::-;33416:65;;;;:::i;:::-;33370:21;;:111;;;;;;;:::i;:::-;;;;;;;;32989:968;;;33543:17;:23;33561:4;33543:23;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;;33585:1;33570:12;;:16;33543:43;33539:418;;;33614:35;33643:5;33614:24;33625:12;;33614:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33607:42;;33719:12;;33699:16;;33692:4;:23;;;;:::i;:::-;33691:40;;;;:::i;:::-;33668:19;;:63;;;;;;;:::i;:::-;;;;;;;;33801:12;;33781:16;;33774:4;:23;;;;:::i;:::-;33773:40;;;;:::i;:::-;33750:19;;:63;;;;;;;:::i;:::-;;;;;;;;33929:12;;33886:18;;33879:4;:25;;;;:::i;:::-;33878:63;;;;:::i;:::-;33832:21;;:109;;;;;;;:::i;:::-;;;;;;;;33539:418;32989:968;33984:1;33977:4;:8;33973:91;;;34006:42;34022:4;34036;34043;34006:15;:42::i;:::-;33973:91;34090:4;34080:14;;;;;:::i;:::-;;;32937:1169;34118:33;34134:4;34140:2;34144:6;34118:15;:33::i;:::-;34178:12;;34162:13;:28;;;;31878:2320;;;;31765:2433;;;;:::o;2282:191::-;2356:16;2375:6;;;;;;;;;;;2356:25;;2401:8;2392:6;;:17;;;;;;;;;;;;;;;;;;2456:8;2425:40;;2446:8;2425:40;;;;;;;;;;;;2345:128;2282:191;:::o;31595:162::-;31688:5;31662:17;:23;31680:4;31662:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;31743:5;31709:40;;31737:4;31709:40;;;;;;;;;;;;31595:162;;:::o;11823:877::-;11970:1;11954:18;;:4;:18;;;11946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12047:1;12033:16;;:2;:16;;;12025:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12102:38;12123:4;12129:2;12133:6;12102:20;:38::i;:::-;12153:19;12175:9;:15;12185:4;12175:15;;;;;;;;;;;;;;;;12153:37;;12238:6;12223:11;:21;;12201:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12378:6;12364:11;:20;12346:9;:15;12356:4;12346:15;;;;;;;;;;;;;;;:38;;;;12581:6;12564:9;:13;12574:2;12564:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12631:2;12616:26;;12625:4;12616:26;;;12635:6;12616:26;;;;;;:::i;:::-;;;;;;;;12655:37;12675:4;12681:2;12685:6;12655:19;:37::i;:::-;11935:765;11823:877;;;:::o;35097:1607::-;35138:23;35164:24;35182:4;35164:9;:24::i;:::-;35138:50;;35199:25;35297:21;;35262:19;;35227;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35199:119;;35329:12;35356:23;35470:1;35437:17;35401:19;;35383:15;:37;;;;:::i;:::-;35382:72;;;;:::i;:::-;:89;;;;:::i;:::-;35356:115;;35482:26;35511:36;35531:15;35511;:19;;:36;;;;:::i;:::-;35482:65;;35560:25;35588:21;35560:49;;35622:37;35640:18;35622:17;:37::i;:::-;35672:18;35693:44;35719:17;35693:21;:25;;:44;;;;:::i;:::-;35672:65;;35750:23;35776:82;35830:17;35776:35;35791:19;;35776:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;35750:108;;35871:25;35899:84;35955:17;35899:37;35914:21;;35899:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;35871:112;;35996:23;36079:17;36048:15;36022:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;35996:100;;36131:1;36109:19;:23;;;;36165:1;36143:19;:23;;;;36201:1;36177:21;:25;;;;36237:1;36219:15;:19;:42;;;;;36260:1;36242:15;:19;36219:42;36215:280;;;36278:47;36292:15;36309;36278:13;:47::i;:::-;36345:138;36378:18;36415:15;36449:19;;36345:138;;;;;;;;:::i;:::-;;;;;;;;36215:280;36529:17;;;;;;;;;;;36521:31;;36560:17;36521:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36507:75;;;;;36617:15;;;;;;;;;;;36609:29;;36660:21;36609:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36595:101;;;;;35127:1577;;;;;;;;;;35097:1607::o;18464:98::-;18522:7;18553:1;18549;:5;;;;:::i;:::-;18542:12;;18464:98;;;;:::o;18863:::-;18921:7;18952:1;18948;:5;;;;:::i;:::-;18941:12;;18863:98;;;;:::o;14845:125::-;;;;:::o;14978:124::-;;;;:::o;18107:98::-;18165:7;18196:1;18192;:5;;;;:::i;:::-;18185:12;;18107:98;;;;:::o;34206:503::-;34274:21;34312:1;34298:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34274:40;;34343:4;34325;34330:1;34325:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34369:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34359:4;34364:1;34359:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34404:62;34421:4;34436:15;34454:11;34404:8;:62::i;:::-;34505:15;:66;;;34586:11;34612:1;34628:4;34655;34675:15;34505:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34263:446;34206:503;:::o;34717:372::-;34800:62;34817:4;34832:15;34850:11;34800:8;:62::i;:::-;34875:15;:31;;;34914:9;34947:4;34967:11;34993:1;35009;35025:15;;;;;;;;;;;35055;34875:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34717:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:117::-;7107:1;7104;7097:12;7121:180;7169:77;7166:1;7159:88;7266:4;7263:1;7256:15;7290:4;7287:1;7280:15;7307:281;7390:27;7412:4;7390:27;:::i;:::-;7382:6;7378:40;7520:6;7508:10;7505:22;7484:18;7472:10;7469:34;7466:62;7463:88;;;7531:18;;:::i;:::-;7463:88;7571:10;7567:2;7560:22;7350:238;7307:281;;:::o;7594:129::-;7628:6;7655:20;;:::i;:::-;7645:30;;7684:33;7712:4;7704:6;7684:33;:::i;:::-;7594:129;;;:::o;7729:311::-;7806:4;7896:18;7888:6;7885:30;7882:56;;;7918:18;;:::i;:::-;7882:56;7968:4;7960:6;7956:17;7948:25;;8028:4;8022;8018:15;8010:23;;7729:311;;;:::o;8046:117::-;8155:1;8152;8145:12;8186:710;8282:5;8307:81;8323:64;8380:6;8323:64;:::i;:::-;8307:81;:::i;:::-;8298:90;;8408:5;8437:6;8430:5;8423:21;8471:4;8464:5;8460:16;8453:23;;8524:4;8516:6;8512:17;8504:6;8500:30;8553:3;8545:6;8542:15;8539:122;;;8572:79;;:::i;:::-;8539:122;8687:6;8670:220;8704:6;8699:3;8696:15;8670:220;;;8779:3;8808:37;8841:3;8829:10;8808:37;:::i;:::-;8803:3;8796:50;8875:4;8870:3;8866:14;8859:21;;8746:144;8730:4;8725:3;8721:14;8714:21;;8670:220;;;8674:21;8288:608;;8186:710;;;;;:::o;8919:370::-;8990:5;9039:3;9032:4;9024:6;9020:17;9016:27;9006:122;;9047:79;;:::i;:::-;9006:122;9164:6;9151:20;9189:94;9279:3;9271:6;9264:4;9256:6;9252:17;9189:94;:::i;:::-;9180:103;;8996:293;8919:370;;;;:::o;9295:116::-;9365:21;9380:5;9365:21;:::i;:::-;9358:5;9355:32;9345:60;;9401:1;9398;9391:12;9345:60;9295:116;:::o;9417:133::-;9460:5;9498:6;9485:20;9476:29;;9514:30;9538:5;9514:30;:::i;:::-;9417:133;;;;:::o;9556:678::-;9646:6;9654;9703:2;9691:9;9682:7;9678:23;9674:32;9671:119;;;9709:79;;:::i;:::-;9671:119;9857:1;9846:9;9842:17;9829:31;9887:18;9879:6;9876:30;9873:117;;;9909:79;;:::i;:::-;9873:117;10014:78;10084:7;10075:6;10064:9;10060:22;10014:78;:::i;:::-;10004:88;;9800:302;10141:2;10167:50;10209:7;10200:6;10189:9;10185:22;10167:50;:::i;:::-;10157:60;;10112:115;9556:678;;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:320;10470:6;10507:1;10501:4;10497:12;10487:22;;10554:1;10548:4;10544:12;10575:18;10565:81;;10631:4;10623:6;10619:17;10609:27;;10565:81;10693:2;10685:6;10682:14;10662:18;10659:38;10656:84;;10712:18;;:::i;:::-;10656:84;10477:269;10426:320;;;:::o;10752:173::-;10892:25;10888:1;10880:6;10876:14;10869:49;10752:173;:::o;10931:366::-;11073:3;11094:67;11158:2;11153:3;11094:67;:::i;:::-;11087:74;;11170:93;11259:3;11170:93;:::i;:::-;11288:2;11283:3;11279:12;11272:19;;10931:366;;;:::o;11303:419::-;11469:4;11507:2;11496:9;11492:18;11484:26;;11556:9;11550:4;11546:20;11542:1;11531:9;11527:17;11520:47;11584:131;11710:4;11584:131;:::i;:::-;11576:139;;11303:419;;;:::o;11728:180::-;11776:77;11773:1;11766:88;11873:4;11870:1;11863:15;11897:4;11894:1;11887:15;11914:191;11954:3;11973:20;11991:1;11973:20;:::i;:::-;11968:25;;12007:20;12025:1;12007:20;:::i;:::-;12002:25;;12050:1;12047;12043:9;12036:16;;12071:3;12068:1;12065:10;12062:36;;;12078:18;;:::i;:::-;12062:36;11914:191;;;;:::o;12111:224::-;12251:34;12247:1;12239:6;12235:14;12228:58;12320:7;12315:2;12307:6;12303:15;12296:32;12111:224;:::o;12341:366::-;12483:3;12504:67;12568:2;12563:3;12504:67;:::i;:::-;12497:74;;12580:93;12669:3;12580:93;:::i;:::-;12698:2;12693:3;12689:12;12682:19;;12341:366;;;:::o;12713:419::-;12879:4;12917:2;12906:9;12902:18;12894:26;;12966:9;12960:4;12956:20;12952:1;12941:9;12937:17;12930:47;12994:131;13120:4;12994:131;:::i;:::-;12986:139;;12713:419;;;:::o;13138:225::-;13278:34;13274:1;13266:6;13262:14;13255:58;13347:8;13342:2;13334:6;13330:15;13323:33;13138:225;:::o;13369:366::-;13511:3;13532:67;13596:2;13591:3;13532:67;:::i;:::-;13525:74;;13608:93;13697:3;13608:93;:::i;:::-;13726:2;13721:3;13717:12;13710:19;;13369:366;;;:::o;13741:419::-;13907:4;13945:2;13934:9;13930:18;13922:26;;13994:9;13988:4;13984:20;13980:1;13969:9;13965:17;13958:47;14022:131;14148:4;14022:131;:::i;:::-;14014:139;;13741:419;;;:::o;14166:180::-;14214:77;14211:1;14204:88;14311:4;14308:1;14301:15;14335:4;14332:1;14325:15;14352:158;14492:10;14488:1;14480:6;14476:14;14469:34;14352:158;:::o;14516:365::-;14658:3;14679:66;14743:1;14738:3;14679:66;:::i;:::-;14672:73;;14754:93;14843:3;14754:93;:::i;:::-;14872:2;14867:3;14863:12;14856:19;;14516:365;;;:::o;14887:419::-;15053:4;15091:2;15080:9;15076:18;15068:26;;15140:9;15134:4;15130:20;15126:1;15115:9;15111:17;15104:47;15168:131;15294:4;15168:131;:::i;:::-;15160:139;;14887:419;;;:::o;15312:233::-;15351:3;15374:24;15392:5;15374:24;:::i;:::-;15365:33;;15420:66;15413:5;15410:77;15407:103;;15490:18;;:::i;:::-;15407:103;15537:1;15530:5;15526:13;15519:20;;15312:233;;;:::o;15551:223::-;15691:34;15687:1;15679:6;15675:14;15668:58;15760:6;15755:2;15747:6;15743:15;15736:31;15551:223;:::o;15780:366::-;15922:3;15943:67;16007:2;16002:3;15943:67;:::i;:::-;15936:74;;16019:93;16108:3;16019:93;:::i;:::-;16137:2;16132:3;16128:12;16121:19;;15780:366;;;:::o;16152:419::-;16318:4;16356:2;16345:9;16341:18;16333:26;;16405:9;16399:4;16395:20;16391:1;16380:9;16376:17;16369:47;16433:131;16559:4;16433:131;:::i;:::-;16425:139;;16152:419;;;:::o;16577:221::-;16717:34;16713:1;16705:6;16701:14;16694:58;16786:4;16781:2;16773:6;16769:15;16762:29;16577:221;:::o;16804:366::-;16946:3;16967:67;17031:2;17026:3;16967:67;:::i;:::-;16960:74;;17043:93;17132:3;17043:93;:::i;:::-;17161:2;17156:3;17152:12;17145:19;;16804:366;;;:::o;17176:419::-;17342:4;17380:2;17369:9;17365:18;17357:26;;17429:9;17423:4;17419:20;17415:1;17404:9;17400:17;17393:47;17457:131;17583:4;17457:131;:::i;:::-;17449:139;;17176:419;;;:::o;17601:229::-;17741:34;17737:1;17729:6;17725:14;17718:58;17810:12;17805:2;17797:6;17793:15;17786:37;17601:229;:::o;17836:366::-;17978:3;17999:67;18063:2;18058:3;17999:67;:::i;:::-;17992:74;;18075:93;18164:3;18075:93;:::i;:::-;18193:2;18188:3;18184:12;18177:19;;17836:366;;;:::o;18208:419::-;18374:4;18412:2;18401:9;18397:18;18389:26;;18461:9;18455:4;18451:20;18447:1;18436:9;18432:17;18425:47;18489:131;18615:4;18489:131;:::i;:::-;18481:139;;18208:419;;;:::o;18633:179::-;18773:31;18769:1;18761:6;18757:14;18750:55;18633:179;:::o;18818:366::-;18960:3;18981:67;19045:2;19040:3;18981:67;:::i;:::-;18974:74;;19057:93;19146:3;19057:93;:::i;:::-;19175:2;19170:3;19166:12;19159:19;;18818:366;;;:::o;19190:419::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:224::-;19755:34;19751:1;19743:6;19739:14;19732:58;19824:7;19819:2;19811:6;19807:15;19800:32;19615:224;:::o;19845:366::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20217:419;;;:::o;20642:222::-;20782:34;20778:1;20770:6;20766:14;20759:58;20851:5;20846:2;20838:6;20834:15;20827:30;20642:222;:::o;20870:366::-;21012:3;21033:67;21097:2;21092:3;21033:67;:::i;:::-;21026:74;;21109:93;21198:3;21109:93;:::i;:::-;21227:2;21222:3;21218:12;21211:19;;20870:366;;;:::o;21242:419::-;21408:4;21446:2;21435:9;21431:18;21423:26;;21495:9;21489:4;21485:20;21481:1;21470:9;21466:17;21459:47;21523:131;21649:4;21523:131;:::i;:::-;21515:139;;21242:419;;;:::o;21667:174::-;21807:26;21803:1;21795:6;21791:14;21784:50;21667:174;:::o;21847:366::-;21989:3;22010:67;22074:2;22069:3;22010:67;:::i;:::-;22003:74;;22086:93;22175:3;22086:93;:::i;:::-;22204:2;22199:3;22195:12;22188:19;;21847:366;;;:::o;22219:419::-;22385:4;22423:2;22412:9;22408:18;22400:26;;22472:9;22466:4;22462:20;22458:1;22447:9;22443:17;22436:47;22500:131;22626:4;22500:131;:::i;:::-;22492:139;;22219:419;;;:::o;22644:410::-;22684:7;22707:20;22725:1;22707:20;:::i;:::-;22702:25;;22741:20;22759:1;22741:20;:::i;:::-;22736:25;;22796:1;22793;22789:9;22818:30;22836:11;22818:30;:::i;:::-;22807:41;;22997:1;22988:7;22984:15;22981:1;22978:22;22958:1;22951:9;22931:83;22908:139;;23027:18;;:::i;:::-;22908:139;22692:362;22644:410;;;;:::o;23060:180::-;23108:77;23105:1;23098:88;23205:4;23202:1;23195:15;23229:4;23226:1;23219:15;23246:185;23286:1;23303:20;23321:1;23303:20;:::i;:::-;23298:25;;23337:20;23355:1;23337:20;:::i;:::-;23332:25;;23376:1;23366:35;;23381:18;;:::i;:::-;23366:35;23423:1;23420;23416:9;23411:14;;23246:185;;;;:::o;23437:194::-;23477:4;23497:20;23515:1;23497:20;:::i;:::-;23492:25;;23531:20;23549:1;23531:20;:::i;:::-;23526:25;;23575:1;23572;23568:9;23560:17;;23599:1;23593:4;23590:11;23587:37;;;23604:18;;:::i;:::-;23587:37;23437:194;;;;:::o;23637:225::-;23777:34;23773:1;23765:6;23761:14;23754:58;23846:8;23841:2;23833:6;23829:15;23822:33;23637:225;:::o;23868:366::-;24010:3;24031:67;24095:2;24090:3;24031:67;:::i;:::-;24024:74;;24107:93;24196:3;24107:93;:::i;:::-;24225:2;24220:3;24216:12;24209:19;;23868:366;;;:::o;24240:419::-;24406:4;24444:2;24433:9;24429:18;24421:26;;24493:9;24487:4;24483:20;24479:1;24468:9;24464:17;24457:47;24521:131;24647:4;24521:131;:::i;:::-;24513:139;;24240:419;;;:::o;24665:442::-;24814:4;24852:2;24841:9;24837:18;24829:26;;24865:71;24933:1;24922:9;24918:17;24909:6;24865:71;:::i;:::-;24946:72;25014:2;25003:9;24999:18;24990:6;24946:72;:::i;:::-;25028;25096:2;25085:9;25081:18;25072:6;25028:72;:::i;:::-;24665:442;;;;;;:::o;25113:147::-;25214:11;25251:3;25236:18;;25113:147;;;;:::o;25266:114::-;;:::o;25386:398::-;25545:3;25566:83;25647:1;25642:3;25566:83;:::i;:::-;25559:90;;25658:93;25747:3;25658:93;:::i;:::-;25776:1;25771:3;25767:11;25760:18;;25386:398;;;:::o;25790:379::-;25974:3;25996:147;26139:3;25996:147;:::i;:::-;25989:154;;26160:3;26153:10;;25790:379;;;:::o;26175:143::-;26232:5;26263:6;26257:13;26248:22;;26279:33;26306:5;26279:33;:::i;:::-;26175:143;;;;:::o;26324:351::-;26394:6;26443:2;26431:9;26422:7;26418:23;26414:32;26411:119;;;26449:79;;:::i;:::-;26411:119;26569:1;26594:64;26650:7;26641:6;26630:9;26626:22;26594:64;:::i;:::-;26584:74;;26540:128;26324:351;;;;:::o;26681:85::-;26726:7;26755:5;26744:16;;26681:85;;;:::o;26772:158::-;26830:9;26863:61;26881:42;26890:32;26916:5;26890:32;:::i;:::-;26881:42;:::i;:::-;26863:61;:::i;:::-;26850:74;;26772:158;;;:::o;26936:147::-;27031:45;27070:5;27031:45;:::i;:::-;27026:3;27019:58;26936:147;;:::o;27089:114::-;27156:6;27190:5;27184:12;27174:22;;27089:114;;;:::o;27209:184::-;27308:11;27342:6;27337:3;27330:19;27382:4;27377:3;27373:14;27358:29;;27209:184;;;;:::o;27399:132::-;27466:4;27489:3;27481:11;;27519:4;27514:3;27510:14;27502:22;;27399:132;;;:::o;27537:108::-;27614:24;27632:5;27614:24;:::i;:::-;27609:3;27602:37;27537:108;;:::o;27651:179::-;27720:10;27741:46;27783:3;27775:6;27741:46;:::i;:::-;27819:4;27814:3;27810:14;27796:28;;27651:179;;;;:::o;27836:113::-;27906:4;27938;27933:3;27929:14;27921:22;;27836:113;;;:::o;27985:732::-;28104:3;28133:54;28181:5;28133:54;:::i;:::-;28203:86;28282:6;28277:3;28203:86;:::i;:::-;28196:93;;28313:56;28363:5;28313:56;:::i;:::-;28392:7;28423:1;28408:284;28433:6;28430:1;28427:13;28408:284;;;28509:6;28503:13;28536:63;28595:3;28580:13;28536:63;:::i;:::-;28529:70;;28622:60;28675:6;28622:60;:::i;:::-;28612:70;;28468:224;28455:1;28452;28448:9;28443:14;;28408:284;;;28412:14;28708:3;28701:10;;28109:608;;;27985:732;;;;:::o;28723:831::-;28986:4;29024:3;29013:9;29009:19;29001:27;;29038:71;29106:1;29095:9;29091:17;29082:6;29038:71;:::i;:::-;29119:80;29195:2;29184:9;29180:18;29171:6;29119:80;:::i;:::-;29246:9;29240:4;29236:20;29231:2;29220:9;29216:18;29209:48;29274:108;29377:4;29368:6;29274:108;:::i;:::-;29266:116;;29392:72;29460:2;29449:9;29445:18;29436:6;29392:72;:::i;:::-;29474:73;29542:3;29531:9;29527:19;29518:6;29474:73;:::i;:::-;28723:831;;;;;;;;:::o;29560:807::-;29809:4;29847:3;29836:9;29832:19;29824:27;;29861:71;29929:1;29918:9;29914:17;29905:6;29861:71;:::i;:::-;29942:72;30010:2;29999:9;29995:18;29986:6;29942:72;:::i;:::-;30024:80;30100:2;30089:9;30085:18;30076:6;30024:80;:::i;:::-;30114;30190:2;30179:9;30175:18;30166:6;30114:80;:::i;:::-;30204:73;30272:3;30261:9;30257:19;30248:6;30204:73;:::i;:::-;30287;30355:3;30344:9;30340:19;30331:6;30287:73;:::i;:::-;29560:807;;;;;;;;;:::o;30373:143::-;30430:5;30461:6;30455:13;30446:22;;30477:33;30504:5;30477:33;:::i;:::-;30373:143;;;;:::o;30522:663::-;30610:6;30618;30626;30675:2;30663:9;30654:7;30650:23;30646:32;30643:119;;;30681:79;;:::i;:::-;30643:119;30801:1;30826:64;30882:7;30873:6;30862:9;30858:22;30826:64;:::i;:::-;30816:74;;30772:128;30939:2;30965:64;31021:7;31012:6;31001:9;30997:22;30965:64;:::i;:::-;30955:74;;30910:129;31078:2;31104:64;31160:7;31151:6;31140:9;31136:22;31104:64;:::i;:::-;31094:74;;31049:129;30522:663;;;;;:::o
Swarm Source
ipfs://b0c35829dd84d3d2b276aa4643092a234a6345900d7f6288cb5f621fb2a74687
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.