Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 METH
Holders
117
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,290.668153853785981634 METHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BLACKOUT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-12 */ /** Website: https://blackouterc.com/ --------------------------------------------------------------------------------- -------------------B--L----A----C-----K-----O-----U-------T---------------------- --------------------------------------------------------------------------------- Twitter: twitter.com/blackouterc Telegram: t.me/blackouterc */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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); } 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 BLACKOUT is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromLimit; uint256 private _tTotal = 1000000 * 10**18; address payable _marketingAddress = payable(address(0x91B2c2d988aBE574bd4a8fe60FF588EaEC1944cd)); string private _name = "BLACKOUT"; string private _symbol = "METH"; uint8 private _decimals = 18; struct BuyFee { uint8 liquidity; uint8 marketing; } struct SellFee { uint8 liquidity; uint8 marketing; } BuyFee public buyFee; SellFee public sellFee; uint8 private _liquidityFee; uint8 private _marketingFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = _tTotal.div(1000).mul(10); //1% uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3% uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2% event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } uint256 deadBlocks = 1; uint256 launchedAt = 0; bool tradingOpen = false; mapping (address => uint256) _lastTrade; constructor() { _rOwned[_msgSender()] = _tTotal; buyFee.liquidity = 1; buyFee.marketing = 2; sellFee.liquidity = 2; sellFee.marketing = 4; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner, and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingAddress] = true; _isExcludedFromLimit[_marketingAddress] = true; _isExcludedFromLimit[owner()] = true; _isExcludedFromLimit[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _rOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function setBothFees( uint8 buy_liquidity, uint8 buy_marketing, uint8 sell_liquidity, uint8 sell_marketing ) external onlyOwner { buyFee.marketing = buy_marketing; buyFee.liquidity = buy_liquidity; sellFee.marketing = sell_marketing; sellFee.liquidity = sell_liquidity; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256 ) { uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tLiquidity).sub(tWallet); return (tTransferAmount, tLiquidity, tWallet); } function _takeLiquidity(uint256 tLiquidity) private { _rOwned[address(this)] = _rOwned[address(this)].add(tLiquidity); } function _takeWalletFee(uint256 tWallet) private { _rOwned[address(this)] = _rOwned[address(this)].add(tWallet); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function removeAllFee() private { _liquidityFee = 0; _marketingFee = 0; } function setBuy() private { _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; } function setSell() private { _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function isExcludedFromLimit(address account) public view returns (bool) { return _isExcludedFromLimit[account]; } function _approve( address owner, address spender, uint256 amount ) private { 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 _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } if (takeFee) { if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { require( amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); if (to != uniswapV2Pair) { require( amount + balanceOf(to) <= _maxWalletSize, "Recipient exceeds max wallet size." ); } } } //transfer amount, it will take liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 tokens) private lockTheSwap { // Split the contract balance into halves uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2; uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator; uint256 toSwap = tokens - tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; swapTokensForEth(toSwap); uint256 deltaBalance = address(this).balance - initialBalance; uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)); uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity); if (ethToAddLiquidityWith > 0) { // Add liquidity to uniswap addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith); } // Send ETH to marketing uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing); if (marketingAmt > 0) { payable(_marketingAddress).transfer(marketingAmt); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (takeFee) { removeAllFee(); if (sender == uniswapV2Pair) { setBuy(); } if (recipient == uniswapV2Pair) { setSell(); } } _transferStandard(sender, recipient, amount); removeAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tLiquidity, uint256 tWallet ) = _getTValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(tAmount); _rOwned[recipient] = _rOwned[recipient].add(tTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); emit Transfer(sender, recipient, tTransferAmount); } function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() { tradingOpen = _status; if(tradingOpen && launchedAt == 0){ launchedAt = block.number; deadBlocks = _deadBlocks; } } }
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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":"buyFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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
69d3c21bcecceda1000000600655600780546001600160a01b0319167391b2c2d988abe574bd4a8fe60ff588eaec1944cd179055610100604052600860c08181526710931050d2d3d55560c21b60e0526200005b908262000639565b5060408051808201909152600481526309a8aa8960e31b602082015260099062000086908262000639565b50600a805460ff19166012178155600d805463ff00000019166301000000179055600654620000e19190620000cd906103e86200092762000477602090811b91909117901c565b620004ca60201b620009701790919060201c565b600e55620001086003620000cd6103e86006546200047760201b620009271790919060201c565b600f556200012f6014620000cd6103e86006546200047760201b620009271790919060201c565b601055600160115560006012556013805460ff191690553480156200015357600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360009081526002602090815260409182902092909255600b805461ffff1990811661020117909155600c8054909116610402179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000705565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b5919062000705565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000303573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000329919062000705565b6001600160a01b0390811660a0528116608052600160046000620003556000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600484528281208054861660019081179091556007805484168352848320805488168317905554909216815260059384905291822080549094168117909355620003d86000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004203390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200046891815260200190565b60405180910390a350620007c9565b6000620004c183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200055860201b60201c565b90505b92915050565b600082600003620004de57506000620004c4565b6000620004ec838562000730565b905082620004fb858362000756565b14620004c15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b600081836200057c5760405162461bcd60e51b81526004016200054f919062000779565b5060006200058b848662000756565b95945050505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005bf57607f821691505b602082108103620005e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063457600081815260208120601f850160051c810160208610156200060f5750805b601f850160051c820191505b8181101562000630578281556001016200061b565b5050505b505050565b81516001600160401b0381111562000655576200065562000594565b6200066d81620006668454620005aa565b84620005e6565b602080601f831160018114620006a557600084156200068c5750858301515b600019600386901b1c1916600185901b17855562000630565b600085815260208120601f198616915b82811015620006d657888601518255948401946001909101908401620006b5565b5085821015620006f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071857600080fd5b81516001600160a01b0381168114620004c157600080fd5b8082028115828204841417620004c457634e487b7160e01b600052601160045260246000fd5b6000826200077457634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b81811015620007a8578581018301518582016040015282016200078a565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a051611b616200082e6000396000818161031701528181610d0501528181610e5f0152818161116201526111c80152600081816101c8015281816112a40152818161135d015281816113990152818161140b01526114670152611b616000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb1461041c578063c49b9a801461043c578063d94160e01461045c578063dd62ed3e14610495578063f0f165af146104db578063f2fde38b146104fb57600080fd5b806370a0823114610372578063715018a6146103a85780637d1db4a5146103bd5780638da5cb5b146103d35780638f9a55c0146103f157806395d89b411461040757600080fd5b80632d4103d6116101085780632d4103d61461027e578063313ce567146102a05780633a17304a146102c257806347062402146102e257806349bd5a5e146103055780635342acb41461033957600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd146102215780632b14ca561461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017061051b565b60405161017d919061171e565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004611784565b6105ad565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506006545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c3660046117b0565b6105c4565b34801561024d57600080fd5b50600c546102649060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161017d565b34801561028a57600080fd5b5061029e610299366004611806565b61062d565b005b3480156102ac57600080fd5b50600a5460405160ff909116815260200161017d565b3480156102ce57600080fd5b5061029e6102dd366004611833565b610693565b3480156102ee57600080fd5b50600b546102649060ff8082169161010090041682565b34801561031157600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b34801561034557600080fd5b506101a6610354366004611887565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561037e57600080fd5b5061021361038d366004611887565b6001600160a01b031660009081526002602052604090205490565b3480156103b457600080fd5b5061029e6106fc565b3480156103c957600080fd5b50610213600e5481565b3480156103df57600080fd5b506000546001600160a01b03166101ea565b3480156103fd57600080fd5b5061021360105481565b34801561041357600080fd5b50610170610770565b34801561042857600080fd5b506101a6610437366004611784565b61077f565b34801561044857600080fd5b5061029e6104573660046118a4565b61078c565b34801561046857600080fd5b506101a6610477366004611887565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104a157600080fd5b506102136104b03660046118bf565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156104e757600080fd5b5061029e6104f63660046118f8565b61080e565b34801561050757600080fd5b5061029e610516366004611887565b61083d565b60606008805461052a90611911565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611911565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105ba3384846109f2565b5060015b92915050565b60006105d1848484610b16565b610623843361061e85604051806060016040528060288152602001611b04602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610f29565b6109f2565b5060019392505050565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016106579061194b565b60405180910390fd5b6013805460ff191683151590811790915560ff1680156106805750601254155b1561068f574360125560118190555b5050565b6000546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106579061194b565b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b6000546001600160a01b031633146107265760405162461bcd60e51b81526004016106579061194b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606009805461052a90611911565b60006105ba338484610b16565b6000546001600160a01b031633146107b65760405162461bcd60e51b81526004016106579061194b565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061080390831515815260200190565b60405180910390a150565b6000546001600160a01b031633146108385760405162461bcd60e51b81526004016106579061194b565b600f55565b6000546001600160a01b031633146108675760405162461bcd60e51b81526004016106579061194b565b6001600160a01b0381166108cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061096983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f63565b9392505050565b600082600003610982575060006105be565b600061098e8385611996565b90508261099b85836119ad565b146109695760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610657565b6001600160a01b038316610a545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610657565b6001600160a01b038216610ab55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610657565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6001600160a01b038216610bdc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610657565b60008111610c3e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610657565b6000546001600160a01b03848116911614801590610c6a57506000546001600160a01b03838116911614155b15610cc15760135460ff16610cc15760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610657565b30600090815260026020526040902054600e548110610cdf5750600e545b600f5481108015908190610cfc5750600d5462010000900460ff16155b8015610d3a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610d4f5750600d546301000000900460ff165b15610d6257600f549150610d6282610f91565b6001600160a01b03851660009081526004602052604090205460019060ff1680610da457506001600160a01b03851660009081526004602052604090205460ff165b15610dad575060005b8015610f15576001600160a01b03861660009081526005602052604090205460ff16158015610df557506001600160a01b03851660009081526005602052604090205460ff16155b15610f1557600e54841115610e5d5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610657565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614610f15576010546001600160a01b038616600090815260026020526040902054610ebc90866119cf565b1115610f155760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610657565b610f218686868461114a565b505050505050565b60008184841115610f4d5760405162461bcd60e51b8152600401610657919061171e565b506000610f5a84866119e2565b95945050505050565b60008183610f845760405162461bcd60e51b8152600401610657919061171e565b506000610f5a84866119ad565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610fcb9290821691166119f5565b610fd591906119f5565b610fdf91906119f5565b610fea906002611a0e565b600c54600b5460ff9283169350600092849261100a9290821691166119f5565b6110179060ff1685611996565b61102191906119ad565b9050600061102f82856119e2565b90504761103b8261124d565b600061104782476119e2565b600c54600b549192506000916110639160ff90811691166119f5565b6110709060ff16876119e2565b61107a90836119ad565b600c54600b549192506000916110969160ff90811691166119f5565b6110a39060ff1683611996565b905080156110b5576110b58682611405565b600c54600b546000916110d79160ff61010092839004811692909104166119f5565b60ff166110e5846002611996565b6110ef9190611996565b90508015611133576007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611131573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b801561122c57611160600d805461ffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036111c6576111c6600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361122c5761122c600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6112378484846114e5565b611247600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061128257611282611a31565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113249190611a47565b8160018151811061133757611337611a31565b60200260200101906001600160a01b031690816001600160a01b031681525050611382307f0000000000000000000000000000000000000000000000000000000000000000846109f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906113d7908590600090869030904290600401611a64565b600060405180830381600087803b1580156113f157600080fd5b505af1158015610f21573d6000803e3d6000fd5b611430307f0000000000000000000000000000000000000000000000000000000000000000846109f2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156114b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114de9190611ad5565b5050505050565b60008060006114f3846115cd565b6001600160a01b038916600090815260026020526040902054929550909350915061151e908561160f565b6001600160a01b03808816600090815260026020526040808220939093559087168152205461154d9084611651565b6001600160a01b03861660009081526002602052604090205561156f826116b0565b611578816116b0565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516115bd91815260200190565b60405180910390a3505050505050565b6000806000806115dc856116dd565b905060006115e9866116fe565b90506000611601826115fb898661160f565b9061160f565b979296509094509092505050565b600061096983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f29565b60008061165e83856119cf565b9050838110156109695760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610657565b306000908152600260205260409020546116ca9082611651565b3060009081526002602052604090205550565b600d546000906105be906064906116f890859060ff16610970565b90610927565b600d546000906105be906064906116f8908590610100900460ff16610970565b600060208083528351808285015260005b8181101561174b5785810183015185820160400152820161172f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461178157600080fd5b50565b6000806040838503121561179757600080fd5b82356117a28161176c565b946020939093013593505050565b6000806000606084860312156117c557600080fd5b83356117d08161176c565b925060208401356117e08161176c565b929592945050506040919091013590565b8035801515811461180157600080fd5b919050565b6000806040838503121561181957600080fd5b6117a2836117f1565b803560ff8116811461180157600080fd5b6000806000806080858703121561184957600080fd5b61185285611822565b935061186060208601611822565b925061186e60408601611822565b915061187c60608601611822565b905092959194509250565b60006020828403121561189957600080fd5b81356109698161176c565b6000602082840312156118b657600080fd5b610969826117f1565b600080604083850312156118d257600080fd5b82356118dd8161176c565b915060208301356118ed8161176c565b809150509250929050565b60006020828403121561190a57600080fd5b5035919050565b600181811c9082168061192557607f821691505b60208210810361194557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105be576105be611980565b6000826119ca57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156105be576105be611980565b818103818111156105be576105be611980565b60ff81811683821601908111156105be576105be611980565b60ff8181168382160290811690818114611a2a57611a2a611980565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a5957600080fd5b81516109698161176c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ab45784516001600160a01b031683529383019391830191600101611a8f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611aea57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203377a30fa2f9a420acb27ee47a5fdf2b62b119ac051567caf3e7a9e9fc90f26964736f6c63430008110033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb1461041c578063c49b9a801461043c578063d94160e01461045c578063dd62ed3e14610495578063f0f165af146104db578063f2fde38b146104fb57600080fd5b806370a0823114610372578063715018a6146103a85780637d1db4a5146103bd5780638da5cb5b146103d35780638f9a55c0146103f157806395d89b411461040757600080fd5b80632d4103d6116101085780632d4103d61461027e578063313ce567146102a05780633a17304a146102c257806347062402146102e257806349bd5a5e146103055780635342acb41461033957600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd146102215780632b14ca561461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017061051b565b60405161017d919061171e565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004611784565b6105ad565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506006545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c3660046117b0565b6105c4565b34801561024d57600080fd5b50600c546102649060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161017d565b34801561028a57600080fd5b5061029e610299366004611806565b61062d565b005b3480156102ac57600080fd5b50600a5460405160ff909116815260200161017d565b3480156102ce57600080fd5b5061029e6102dd366004611833565b610693565b3480156102ee57600080fd5b50600b546102649060ff8082169161010090041682565b34801561031157600080fd5b506101ea7f0000000000000000000000004da990b7d539ff54b42584d9f59ea314eb991f5781565b34801561034557600080fd5b506101a6610354366004611887565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561037e57600080fd5b5061021361038d366004611887565b6001600160a01b031660009081526002602052604090205490565b3480156103b457600080fd5b5061029e6106fc565b3480156103c957600080fd5b50610213600e5481565b3480156103df57600080fd5b506000546001600160a01b03166101ea565b3480156103fd57600080fd5b5061021360105481565b34801561041357600080fd5b50610170610770565b34801561042857600080fd5b506101a6610437366004611784565b61077f565b34801561044857600080fd5b5061029e6104573660046118a4565b61078c565b34801561046857600080fd5b506101a6610477366004611887565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104a157600080fd5b506102136104b03660046118bf565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156104e757600080fd5b5061029e6104f63660046118f8565b61080e565b34801561050757600080fd5b5061029e610516366004611887565b61083d565b60606008805461052a90611911565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611911565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105ba3384846109f2565b5060015b92915050565b60006105d1848484610b16565b610623843361061e85604051806060016040528060288152602001611b04602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610f29565b6109f2565b5060019392505050565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016106579061194b565b60405180910390fd5b6013805460ff191683151590811790915560ff1680156106805750601254155b1561068f574360125560118190555b5050565b6000546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106579061194b565b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b6000546001600160a01b031633146107265760405162461bcd60e51b81526004016106579061194b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606009805461052a90611911565b60006105ba338484610b16565b6000546001600160a01b031633146107b65760405162461bcd60e51b81526004016106579061194b565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061080390831515815260200190565b60405180910390a150565b6000546001600160a01b031633146108385760405162461bcd60e51b81526004016106579061194b565b600f55565b6000546001600160a01b031633146108675760405162461bcd60e51b81526004016106579061194b565b6001600160a01b0381166108cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061096983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f63565b9392505050565b600082600003610982575060006105be565b600061098e8385611996565b90508261099b85836119ad565b146109695760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610657565b6001600160a01b038316610a545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610657565b6001600160a01b038216610ab55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610657565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6001600160a01b038216610bdc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610657565b60008111610c3e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610657565b6000546001600160a01b03848116911614801590610c6a57506000546001600160a01b03838116911614155b15610cc15760135460ff16610cc15760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610657565b30600090815260026020526040902054600e548110610cdf5750600e545b600f5481108015908190610cfc5750600d5462010000900460ff16155b8015610d3a57507f0000000000000000000000004da990b7d539ff54b42584d9f59ea314eb991f576001600160a01b0316856001600160a01b031614155b8015610d4f5750600d546301000000900460ff165b15610d6257600f549150610d6282610f91565b6001600160a01b03851660009081526004602052604090205460019060ff1680610da457506001600160a01b03851660009081526004602052604090205460ff165b15610dad575060005b8015610f15576001600160a01b03861660009081526005602052604090205460ff16158015610df557506001600160a01b03851660009081526005602052604090205460ff16155b15610f1557600e54841115610e5d5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610657565b7f0000000000000000000000004da990b7d539ff54b42584d9f59ea314eb991f576001600160a01b0316856001600160a01b031614610f15576010546001600160a01b038616600090815260026020526040902054610ebc90866119cf565b1115610f155760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610657565b610f218686868461114a565b505050505050565b60008184841115610f4d5760405162461bcd60e51b8152600401610657919061171e565b506000610f5a84866119e2565b95945050505050565b60008183610f845760405162461bcd60e51b8152600401610657919061171e565b506000610f5a84866119ad565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610fcb9290821691166119f5565b610fd591906119f5565b610fdf91906119f5565b610fea906002611a0e565b600c54600b5460ff9283169350600092849261100a9290821691166119f5565b6110179060ff1685611996565b61102191906119ad565b9050600061102f82856119e2565b90504761103b8261124d565b600061104782476119e2565b600c54600b549192506000916110639160ff90811691166119f5565b6110709060ff16876119e2565b61107a90836119ad565b600c54600b549192506000916110969160ff90811691166119f5565b6110a39060ff1683611996565b905080156110b5576110b58682611405565b600c54600b546000916110d79160ff61010092839004811692909104166119f5565b60ff166110e5846002611996565b6110ef9190611996565b90508015611133576007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611131573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b801561122c57611160600d805461ffff19169055565b7f0000000000000000000000004da990b7d539ff54b42584d9f59ea314eb991f576001600160a01b0316846001600160a01b0316036111c6576111c6600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f0000000000000000000000004da990b7d539ff54b42584d9f59ea314eb991f576001600160a01b0316836001600160a01b03160361122c5761122c600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6112378484846114e5565b611247600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061128257611282611a31565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113249190611a47565b8160018151811061133757611337611a31565b60200260200101906001600160a01b031690816001600160a01b031681525050611382307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906113d7908590600090869030904290600401611a64565b600060405180830381600087803b1580156113f157600080fd5b505af1158015610f21573d6000803e3d6000fd5b611430307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109f2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156114b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114de9190611ad5565b5050505050565b60008060006114f3846115cd565b6001600160a01b038916600090815260026020526040902054929550909350915061151e908561160f565b6001600160a01b03808816600090815260026020526040808220939093559087168152205461154d9084611651565b6001600160a01b03861660009081526002602052604090205561156f826116b0565b611578816116b0565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516115bd91815260200190565b60405180910390a3505050505050565b6000806000806115dc856116dd565b905060006115e9866116fe565b90506000611601826115fb898661160f565b9061160f565b979296509094509092505050565b600061096983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f29565b60008061165e83856119cf565b9050838110156109695760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610657565b306000908152600260205260409020546116ca9082611651565b3060009081526002602052604090205550565b600d546000906105be906064906116f890859060ff16610970565b90610927565b600d546000906105be906064906116f8908590610100900460ff16610970565b600060208083528351808285015260005b8181101561174b5785810183015185820160400152820161172f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461178157600080fd5b50565b6000806040838503121561179757600080fd5b82356117a28161176c565b946020939093013593505050565b6000806000606084860312156117c557600080fd5b83356117d08161176c565b925060208401356117e08161176c565b929592945050506040919091013590565b8035801515811461180157600080fd5b919050565b6000806040838503121561181957600080fd5b6117a2836117f1565b803560ff8116811461180157600080fd5b6000806000806080858703121561184957600080fd5b61185285611822565b935061186060208601611822565b925061186e60408601611822565b915061187c60608601611822565b905092959194509250565b60006020828403121561189957600080fd5b81356109698161176c565b6000602082840312156118b657600080fd5b610969826117f1565b600080604083850312156118d257600080fd5b82356118dd8161176c565b915060208301356118ed8161176c565b809150509250929050565b60006020828403121561190a57600080fd5b5035919050565b600181811c9082168061192557607f821691505b60208210810361194557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105be576105be611980565b6000826119ca57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156105be576105be611980565b818103818111156105be576105be611980565b60ff81811683821601908111156105be576105be611980565b60ff8181168382160290811690818114611a2a57611a2a611980565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a5957600080fd5b81516109698161176c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ab45784516001600160a01b031683529383019391830191600101611a8f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611aea57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203377a30fa2f9a420acb27ee47a5fdf2b62b119ac051567caf3e7a9e9fc90f26964736f6c63430008110033
Deployed Bytecode Sourcemap
25486:13350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28351:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29255:193;;;;;;;;;;-1:-1:-1;29255:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29255:193:0;1023:187:1;26418:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;26418:51:0;1215:230:1;28628:95:0;;;;;;;;;;-1:-1:-1;28708:7:0;;28628:95;;;1596:25:1;;;1584:2;1569:18;28628:95:0;1450:177:1;29456:446:0;;;;;;;;;;-1:-1:-1;29456:446:0;;;;;:::i;:::-;;:::i;26317:22::-;;;;;;;;;;-1:-1:-1;26317:22:0;;;;;;;;;;;;;;;;;;;2289:4:1;2277:17;;;2259:36;;2331:17;;;;2326:2;2311:18;;2304:45;2232:18;26317:22:0;2093:262:1;38582:251:0;;;;;;;;;;-1:-1:-1;38582:251:0;;;;;:::i;:::-;;:::i;:::-;;28537:83;;;;;;;;;;-1:-1:-1;28603:9:0;;28537:83;;28603:9;;;;2920:36:1;;2908:2;2893:18;28537:83:0;2778:184:1;29914:357:0;;;;;;;;;;-1:-1:-1;29914:357:0;;;;;:::i;:::-;;:::i;26290:20::-;;;;;;;;;;-1:-1:-1;26290:20:0;;;;;;;;;;;;;;;26476:38;;;;;;;;;;;;;;;32172:124;;;;;;;;;;-1:-1:-1;32172:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;32261:27:0;32237:4;32261:27;;;:18;:27;;;;;;;;;32172:124;28731:117;;;;;;;;;;-1:-1:-1;28731:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;28824:16:0;28797:7;28824:16;;;:7;:16;;;;;;;28731:117;15550:148;;;;;;;;;;;;;:::i;26593:55::-;;;;;;;;;;;;;;;;14908:79;;;;;;;;;;-1:-1:-1;14946:7:0;14973:6;-1:-1:-1;;;;;14973:6:0;14908:79;;26746:57;;;;;;;;;;;;;;;;28442:87;;;;;;;;;;;;;:::i;28856:199::-;;;;;;;;;;-1:-1:-1;28856:199:0;;;;;:::i;:::-;;:::i;30429:171::-;;;;;;;;;;-1:-1:-1;30429:171:0;;;;;:::i;:::-;;:::i;32304:128::-;;;;;;;;;;-1:-1:-1;32304:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;32395:29:0;32371:4;32395:29;;;:20;:29;;;;;;;;;32304:128;29063:184;;;;;;;;;;-1:-1:-1;29063:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29212:18:0;;;29180:7;29212:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29063:184;30279:140;;;;;;;;;;-1:-1:-1;30279:140:0;;;;;:::i;:::-;;:::i;15853:281::-;;;;;;;;;;-1:-1:-1;15853:281:0;;;;;:::i;:::-;;:::i;28351:83::-;28388:13;28421:5;28414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28351:83;:::o;29255:193::-;29357:4;29379:39;7752:10;29402:7;29411:6;29379:8;:39::i;:::-;-1:-1:-1;29436:4:0;29255:193;;;;;:::o;29456:446::-;29588:4;29605:36;29615:6;29623:9;29634:6;29605:9;:36::i;:::-;29652:220;29675:6;7752:10;29723:138;29779:6;29723:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29723:19:0;;;;;;:11;:19;;;;;;;;7752:10;29723:33;;;;;;;;;;:37;:138::i;:::-;29652:8;:220::i;:::-;-1:-1:-1;29890:4:0;29456:446;;;;;:::o;38582:251::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;;;;;;;;;38669:11:::1;:21:::0;;-1:-1:-1;;38669:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;38704:11:::0;:30;::::1;;;-1:-1:-1::0;38719:10:0::1;::::0;:15;38704:30:::1;38701:125;;;38763:12;38750:10;:25:::0;38790:10:::1;:24:::0;;;38701:125:::1;38582:251:::0;;:::o;29914:357::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;30096:6:::1;:32:::0;;-1:-1:-1;;30139:32:0;;;30096::::1;;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;30139:32:0;;;;;;;;;::::1;::::0;;;::::1;::::0;;;30184:7:::1;:34:::0;;30229;;;30184;;::::1;::::0;;::::1;30229::::0;;;::::1;;::::0;;29914:357::o;15550:148::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;15657:1:::1;15641:6:::0;;15620:40:::1;::::0;-1:-1:-1;;;;;15641:6:0;;::::1;::::0;15620:40:::1;::::0;15657:1;;15620:40:::1;15688:1;15671:19:::0;;-1:-1:-1;;;;;;15671:19:0::1;::::0;;15550:148::o;28442:87::-;28481:13;28514:7;28507:14;;;;;:::i;28856:199::-;28961:4;28983:42;7752:10;29007:9;29018:6;28983:9;:42::i;30429:171::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;30506:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30506:32:0;;::::1;;::::0;;30554:38:::1;::::0;::::1;::::0;::::1;::::0;30530:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;30554:38:0::1;;;;;;;;30429:171:::0;:::o;30279:140::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;30370:29:::1;:41:::0;30279:140::o;15853:281::-;15120:6;;-1:-1:-1;;;;;15120:6:0;7752:10;15120:22;15112:67;;;;-1:-1:-1;;;15112:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15956:22:0;::::1;15934:110;;;::::0;-1:-1:-1;;;15934:110:0;;5697:2:1;15934:110:0::1;::::0;::::1;5679:21:1::0;5736:2;5716:18;;;5709:30;5775:34;5755:18;;;5748:62;-1:-1:-1;;;5826:18:1;;;5819:36;5872:19;;15934:110:0::1;5495:402:1::0;15934:110:0::1;16081:6;::::0;;16060:38:::1;::::0;-1:-1:-1;;;;;16060:38:0;;::::1;::::0;16081:6;::::1;::::0;16060:38:::1;::::0;::::1;16109:6;:17:::0;;-1:-1:-1;;;;;;16109:17:0::1;-1:-1:-1::0;;;;;16109:17:0;;;::::1;::::0;;;::::1;::::0;;15853:281::o;5396:132::-;5454:7;5481:39;5485:1;5488;5481:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5474:46;5396:132;-1:-1:-1;;;5396:132:0:o;4901:252::-;4959:7;4985:1;4990;4985:6;4981:47;;-1:-1:-1;5015:1:0;5008:8;;4981:47;5040:9;5052:5;5056:1;5052;:5;:::i;:::-;5040:17;-1:-1:-1;5085:1:0;5076:5;5080:1;5040:17;5076:5;:::i;:::-;:10;5068:56;;;;-1:-1:-1;;;5068:56:0;;6631:2:1;5068:56:0;;;6613:21:1;6670:2;6650:18;;;6643:30;6709:34;6689:18;;;6682:62;-1:-1:-1;;;6760:18:1;;;6753:31;6801:19;;5068:56:0;6429:397:1;32440:371:0;-1:-1:-1;;;;;32567:19:0;;32559:68;;;;-1:-1:-1;;;32559:68:0;;7033:2:1;32559:68:0;;;7015:21:1;7072:2;7052:18;;;7045:30;7111:34;7091:18;;;7084:62;-1:-1:-1;;;7162:18:1;;;7155:34;7206:19;;32559:68:0;6831:400:1;32559:68:0;-1:-1:-1;;;;;32646:21:0;;32638:68;;;;-1:-1:-1;;;32638:68:0;;7438:2:1;32638:68:0;;;7420:21:1;7477:2;7457:18;;;7450:30;7516:34;7496:18;;;7489:62;-1:-1:-1;;;7567:18:1;;;7560:32;7609:19;;32638:68:0;7236:398:1;32638:68:0;-1:-1:-1;;;;;32719:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32771:32;;1596:25:1;;;32771:32:0;;1569:18:1;32771:32:0;;;;;;;32440:371;;;:::o;32819:2331::-;-1:-1:-1;;;;;32941:18:0;;32933:68;;;;-1:-1:-1;;;32933:68:0;;7841:2:1;32933:68:0;;;7823:21:1;7880:2;7860:18;;;7853:30;7919:34;7899:18;;;7892:62;-1:-1:-1;;;7970:18:1;;;7963:35;8015:19;;32933:68:0;7639:401:1;32933:68:0;-1:-1:-1;;;;;33020:16:0;;33012:64;;;;-1:-1:-1;;;33012:64:0;;8247:2:1;33012:64:0;;;8229:21:1;8286:2;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;-1:-1:-1;;;8376:18:1;;;8369:33;8419:19;;33012:64:0;8045:399:1;33012:64:0;33104:1;33095:6;:10;33087:64;;;;-1:-1:-1;;;33087:64:0;;8651:2:1;33087:64:0;;;8633:21:1;8690:2;8670:18;;;8663:30;8729:34;8709:18;;;8702:62;-1:-1:-1;;;8780:18:1;;;8773:39;8829:19;;33087:64:0;8449:405:1;33087:64:0;14946:7;14973:6;-1:-1:-1;;;;;33177:15:0;;;14973:6;;33177:15;;;;:32;;-1:-1:-1;14946:7:0;14973:6;-1:-1:-1;;;;;33196:13:0;;;14973:6;;33196:13;;33177:32;33172:88;;;33220:11;;;;33212:48;;;;-1:-1:-1;;;33212:48:0;;9061:2:1;33212:48:0;;;9043:21:1;9100:2;9080:18;;;9073:30;9139:26;9119:18;;;9112:54;9183:18;;33212:48:0;8859:348:1;33212:48:0;33644:4;33595:28;28824:16;;;:7;:16;;;;;;33691:12;;33667:36;;33663:104;;-1:-1:-1;33743:12:0;;33663:104;33843:29;;33806:66;;;;;;;33901:53;;-1:-1:-1;33938:16:0;;;;;;;33937:17;33901:53;:91;;;;;33979:13;-1:-1:-1;;;;;33971:21:0;:4;-1:-1:-1;;;;;33971:21:0;;;33901:91;:129;;;;-1:-1:-1;34009:21:0;;;;;;;33901:129;33883:318;;;34080:29;;34057:52;;34153:36;34168:20;34153:14;:36::i;:::-;-1:-1:-1;;;;;34394:24:0;;34274:12;34394:24;;;:18;:24;;;;;;34289:4;;34394:24;;;:50;;-1:-1:-1;;;;;;34422:22:0;;;;;;:18;:22;;;;;;;;34394:50;34390:98;;;-1:-1:-1;34471:5:0;34390:98;34502:7;34498:536;;;-1:-1:-1;;;;;34531:26:0;;;;;;:20;:26;;;;;;;;34530:27;:56;;;;-1:-1:-1;;;;;;34562:24:0;;;;;;:20;:24;;;;;;;;34561:25;34530:56;34526:497;;;34647:12;;34637:6;:22;;34607:136;;;;-1:-1:-1;;;34607:136:0;;9414:2:1;34607:136:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:38;9591:19;;34607:136:0;9212:404:1;34607:136:0;34772:13;-1:-1:-1;;;;;34766:19:0;:2;-1:-1:-1;;;;;34766:19:0;;34762:228;;34870:14;;-1:-1:-1;;;;;28824:16:0;;28797:7;28824:16;;;:7;:16;;;;;;34844:22;;:6;:22;:::i;:::-;:40;;34810:160;;;;-1:-1:-1;;;34810:160:0;;9953:2:1;34810:160:0;;;9935:21:1;9992:2;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;-1:-1:-1;;;10082:18:1;;;10075:32;10124:19;;34810:160:0;9751:398:1;34810:160:0;35101:41;35116:4;35122:2;35126:6;35134:7;35101:14;:41::i;:::-;32922:2228;;;32819:2331;;;:::o;4416:226::-;4536:7;4572:12;4564:6;;;;4556:29;;;;-1:-1:-1;;;4556:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4596:9:0;4608:5;4612:1;4608;:5;:::i;:::-;4596:17;4416:226;-1:-1:-1;;;;;4416:226:0:o;6024:312::-;6144:7;6179:12;6172:5;6164:28;;;;-1:-1:-1;;;6164:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6203:9:0;6215:5;6219:1;6215;:5;:::i;35158:1195::-;27110:16;:23;;-1:-1:-1;;27110:23:0;;;;;35361:7:::1;:17:::0;35342:6:::1;:16:::0;27110:23;;;35361:17;;::::1;27110:23:::0;35361:17;;::::1;::::0;35342:16;;::::1;::::0;::::1;::::0;35303:36:::1;::::0;35322:17;;::::1;::::0;35303:16:::1;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;35302:81;::::0;35382:1:::1;35302:81;:::i;:::-;35459:7;:17:::0;35440:6:::1;:16:::0;35280:103:::1;::::0;;::::1;::::0;-1:-1:-1;35394:32:0::1;::::0;35280:103;;35440:36:::1;::::0;35459:17;;::::1;::::0;35440:16:::1;:36;:::i;:::-;35430:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;35429:63;;;;:::i;:::-;35394:98:::0;-1:-1:-1;35503:14:0::1;35520:33;35394:98:::0;35520:6;:33:::1;:::i;:::-;35503:50:::0;-1:-1:-1;35591:21:0::1;35625:24;35503:50:::0;35625:16:::1;:24::i;:::-;35662:20;35685:38;35709:14:::0;35685:21:::1;:38;:::i;:::-;35806:7;:17:::0;35787:6:::1;:16:::0;35662:61;;-1:-1:-1;35734:19:0::1;::::0;35787:36:::1;::::0;35806:17:::1;::::0;;::::1;::::0;35787:16:::1;:36;:::i;:::-;35772:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35756:69;::::0;:12;:69:::1;:::i;:::-;35902:7;:17:::0;35883:6:::1;:16:::0;35734:91;;-1:-1:-1;35836:29:0::1;::::0;35883:36:::1;::::0;35902:17:::1;::::0;;::::1;::::0;35883:16:::1;:36;:::i;:::-;35868:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35836:84:::0;-1:-1:-1;35937:25:0;;35933:160:::1;;36020:61;36033:24;36059:21;36020:12;:61::i;:::-;36200:7;:17:::0;36181:6:::1;:16:::0;36139:20:::1;::::0;36181:36:::1;::::0;36200:17:::1;;::::0;;;::::1;::::0;::::1;::::0;36181:16;;::::1;;:36;:::i;:::-;36162:56;;:15;:11:::0;36176:1:::1;36162:15;:::i;:::-;:56;;;;:::i;:::-;36139:79:::0;-1:-1:-1;36244:16:0;;36240:98:::1;;36285:17;::::0;36277:49:::1;::::0;-1:-1:-1;;;;;36285:17:0;;::::1;::::0;36277:49;::::1;;;::::0;36313:12;;36285:17:::1;36277:49:::0;36285:17;36277:49;36313:12;36285:17;36277:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36240:98;-1:-1:-1::0;;27156:16:0;:24;;-1:-1:-1;;27156:24:0;;;-1:-1:-1;;;;;;;35158:1195:0:o;37558:472::-;37713:7;37709:230;;;37737:14;31829:13;:17;;-1:-1:-1;;31857:17:0;;;31786:103;37737:14;37780:13;-1:-1:-1;;;;;37770:23:0;:6;-1:-1:-1;;;;;37770:23:0;;37766:72;;37814:8;31950:6;:16;31934:13;:32;;31950:16;31993;;;31950;31993;;;31977:32;;;-1:-1:-1;;31977:32:0;;;31950:16;;31977:32;;;;;;;;;;31897:128;37814:8;37869:13;-1:-1:-1;;;;;37856:26:0;:9;-1:-1:-1;;;;;37856:26:0;;37852:76;;37903:9;32087:7;:17;32071:13;:33;;32087:17;32131;;;32087;32131;;;32115:33;;;-1:-1:-1;;32115:33:0;;;32087:17;;32115:33;;;;;;;;;;32033:131;37903:9;37951:44;37969:6;37977:9;37988:6;37951:17;:44::i;:::-;38008:14;31829:13;:17;;-1:-1:-1;;31857:17:0;;;31786:103;38008:14;37558:472;;;;:::o;36361:589::-;36511:16;;;36525:1;36511:16;;;;;;;;36487:21;;36511:16;;;;;;;;;;-1:-1:-1;36511:16:0;36487:40;;36556:4;36538;36543:1;36538:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36538:23:0;;;-1:-1:-1;;;;;36538:23:0;;;;;36582:15;-1:-1:-1;;;;;36582:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36572:4;36577:1;36572:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36572:32:0;;;-1:-1:-1;;;;;36572:32:0;;;;;36617:62;36634:4;36649:15;36667:11;36617:8;:62::i;:::-;36718:224;;-1:-1:-1;;;36718:224:0;;-1:-1:-1;;;;;36718:15:0;:66;;;;:224;;36799:11;;36825:1;;36869:4;;36896;;36916:15;;36718:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36958:519;37106:62;37123:4;37138:15;37156:11;37106:8;:62::i;:::-;37211:258;;-1:-1:-1;;;37211:258:0;;37283:4;37211:258;;;12516:34:1;;;12566:18;;;12559:34;;;37329:1:0;12609:18:1;;;12602:34;;;12652:18;;;12645:34;12695:19;;;12688:44;37443:15:0;12748:19:1;;;12741:35;37211:15:0;-1:-1:-1;;;;;37211:31:0;;;;37250:9;;12450:19:1;;37211:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36958:519;;:::o;38038:536::-;38185:23;38223:18;38256:15;38285:20;38297:7;38285:11;:20::i;:::-;-1:-1:-1;;;;;38336:15:0;;;;;;:7;:15;;;;;;38170:135;;-1:-1:-1;38170:135:0;;-1:-1:-1;38170:135:0;-1:-1:-1;38336:28:0;;38356:7;38336:19;:28::i;:::-;-1:-1:-1;;;;;38318:15:0;;;;;;;:7;:15;;;;;;:46;;;;38396:18;;;;;;;:39;;38419:15;38396:22;:39::i;:::-;-1:-1:-1;;;;;38375:18:0;;;;;;:7;:18;;;;;:60;38446:26;38461:10;38446:14;:26::i;:::-;38483:23;38498:7;38483:14;:23::i;:::-;38539:9;-1:-1:-1;;;;;38522:44:0;38531:6;-1:-1:-1;;;;;38522:44:0;;38550:15;38522:44;;;;1596:25:1;;1584:2;1569:18;;1450:177;38522:44:0;;;;;;;;38159:415;;;38038:536;;;:::o;30702:429::-;30803:7;30825;30847;30882:18;30903:30;30925:7;30903:21;:30::i;:::-;30882:51;;30944:15;30962:30;30984:7;30962:21;:30::i;:::-;30944:48;-1:-1:-1;31003:23:0;31029:36;30944:48;31029:23;:7;31041:10;31029:11;:23::i;:::-;:27;;:36::i;:::-;31003:62;31103:10;;-1:-1:-1;31115:7:0;;-1:-1:-1;30702:429:0;;-1:-1:-1;;;30702:429:0:o;3977:136::-;4035:7;4062:43;4066:1;4069;4062:43;;;;;;;;;;;;;;;;;:3;:43::i;3513:181::-;3571:7;;3603:5;3607:1;3603;:5;:::i;:::-;3591:17;;3632:1;3627;:6;;3619:46;;;;-1:-1:-1;;;3619:46:0;;13300:2:1;3619:46:0;;;13282:21:1;13339:2;13319:18;;;13312:30;13378:29;13358:18;;;13351:57;13425:18;;3619:46:0;13098:351:1;31139:134:0;31243:4;31227:22;;;;:7;:22;;;;;;:38;;31254:10;31227:26;:38::i;:::-;31218:4;31202:22;;;;:7;:22;;;;;:63;-1:-1:-1;31139:134:0:o;31417:174::-;31558:13;;31514:7;;31546:37;;31577:5;;31546:26;;:7;;31558:13;;31546:11;:26::i;:::-;:30;;:37::i;31599:174::-;31740:13;;31696:7;;31728:37;;31759:5;;31728:26;;:7;;31740:13;;;;;31728:11;:26::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2454:60;2360:160;;;:::o;2525:248::-;2590:6;2598;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;2690:26;2706:9;2690:26;:::i;2967:156::-;3033:20;;3093:4;3082:16;;3072:27;;3062:55;;3113:1;3110;3103:12;3128:393;3206:6;3214;3222;3230;3283:3;3271:9;3262:7;3258:23;3254:33;3251:53;;;3300:1;3297;3290:12;3251:53;3323:27;3340:9;3323:27;:::i;:::-;3313:37;;3369:36;3401:2;3390:9;3386:18;3369:36;:::i;:::-;3359:46;;3424:36;3456:2;3445:9;3441:18;3424:36;:::i;:::-;3414:46;;3479:36;3511:2;3500:9;3496:18;3479:36;:::i;:::-;3469:46;;3128:393;;;;;;;:::o;3734:247::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;3901:9;3888:23;3920:31;3945:5;3920:31;:::i;3986:180::-;4042:6;4095:2;4083:9;4074:7;4070:23;4066:32;4063:52;;;4111:1;4108;4101:12;4063:52;4134:26;4150:9;4134:26;:::i;4171:388::-;4239:6;4247;4300:2;4288:9;4279:7;4275:23;4271:32;4268:52;;;4316:1;4313;4306:12;4268:52;4355:9;4342:23;4374:31;4399:5;4374:31;:::i;:::-;4424:5;-1:-1:-1;4481:2:1;4466:18;;4453:32;4494:33;4453:32;4494:33;:::i;:::-;4546:7;4536:17;;;4171:388;;;;;:::o;4564:180::-;4623:6;4676:2;4664:9;4655:7;4651:23;4647:32;4644:52;;;4692:1;4689;4682:12;4644:52;-1:-1:-1;4715:23:1;;4564:180;-1:-1:-1;4564:180:1:o;4749:380::-;4828:1;4824:12;;;;4871;;;4892:61;;4946:4;4938:6;4934:17;4924:27;;4892:61;4999:2;4991:6;4988:14;4968:18;4965:38;4962:161;;5045:10;5040:3;5036:20;5033:1;5026:31;5080:4;5077:1;5070:15;5108:4;5105:1;5098:15;4962:161;;4749:380;;;:::o;5134:356::-;5336:2;5318:21;;;5355:18;;;5348:30;5414:34;5409:2;5394:18;;5387:62;5481:2;5466:18;;5134:356::o;5902:127::-;5963:10;5958:3;5954:20;5951:1;5944:31;5994:4;5991:1;5984:15;6018:4;6015:1;6008:15;6034:168;6107:9;;;6138;;6155:15;;;6149:22;;6135:37;6125:71;;6176:18;;:::i;6207:217::-;6247:1;6273;6263:132;;6317:10;6312:3;6308:20;6305:1;6298:31;6352:4;6349:1;6342:15;6380:4;6377:1;6370:15;6263:132;-1:-1:-1;6409:9:1;;6207:217::o;9621:125::-;9686:9;;;9707:10;;;9704:36;;;9720:18;;:::i;10154:128::-;10221:9;;;10242:11;;;10239:37;;;10256:18;;:::i;10287:148::-;10375:4;10354:12;;;10368;;;10350:31;;10393:13;;10390:39;;;10409:18;;:::i;10440:225::-;10544:4;10523:12;;;10537;;;10519:31;10570:22;;;;10611:24;;;10601:58;;10639:18;;:::i;:::-;10601:58;10440:225;;;;:::o;10802:127::-;10863:10;10858:3;10854:20;10851:1;10844:31;10894:4;10891:1;10884:15;10918:4;10915:1;10908:15;10934:251;11004:6;11057:2;11045:9;11036:7;11032:23;11028:32;11025:52;;;11073:1;11070;11063:12;11025:52;11105:9;11099:16;11124:31;11149:5;11124:31;:::i;11190:980::-;11452:4;11500:3;11489:9;11485:19;11531:6;11520:9;11513:25;11557:2;11595:6;11590:2;11579:9;11575:18;11568:34;11638:3;11633:2;11622:9;11618:18;11611:31;11662:6;11697;11691:13;11728:6;11720;11713:22;11766:3;11755:9;11751:19;11744:26;;11805:2;11797:6;11793:15;11779:29;;11826:1;11836:195;11850:6;11847:1;11844:13;11836:195;;;11915:13;;-1:-1:-1;;;;;11911:39:1;11899:52;;12006:15;;;;11971:12;;;;11947:1;11865:9;11836:195;;;-1:-1:-1;;;;;;;12087:32:1;;;;12082:2;12067:18;;12060:60;-1:-1:-1;;;12151:3:1;12136:19;12129:35;12048:3;11190:980;-1:-1:-1;;;11190:980:1:o;12787:306::-;12875:6;12883;12891;12944:2;12932:9;12923:7;12919:23;12915:32;12912:52;;;12960:1;12957;12950:12;12912:52;12989:9;12983:16;12973:26;;13039:2;13028:9;13024:18;13018:25;13008:35;;13083:2;13072:9;13068:18;13062:25;13052:35;;12787:306;;;;;:::o
Swarm Source
ipfs://3377a30fa2f9a420acb27ee47a5fdf2b62b119ac051567caf3e7a9e9fc90f269
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.