Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 BREED
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,209,481.362236642264537057 BREEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
UnprotectedIntercourse
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ // File: Unprotected Intercourse.sol pragma solidity 0.8.15; // BE PART OF THE CHANGE. // A project by Zunebra the Dev // t.me/unprotectedintercourse /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. */ 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 Implementation of the {IERC20} interface. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. */ 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. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. */ function _createInitialTotalSupply(address account, uint256 amount) internal virtual { require(account != address(0)); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } contract UnprotectedIntercourse is ERC20, Ownable { using SafeMath for uint256; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool private isOpen = false; uint256 public liquidityFee = 1; uint256 public marketingFee = 1; uint256 public devFee = 1; uint256 public sellLiquidityFee = 1; uint256 public sellMarketingFee = 2; uint256 public sellDevFee = 2; uint256 public maxTransactionAmount = 20000000 * (10**18); uint256 public maxWalletToken = 30000000 * (10**18); uint256 public swapTokensAtAmount = 500000 * (10**18); IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; address payable public marketingWallet = payable(0x21BA3d97c46F720992131Ce73872f9Cde42C5a35); address payable public devWallet = payable(0xFd6C72bd8Ff7EC942605660208fBea016a3Ff8A0); // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapETHForTokens(uint256 amountIn, address[] path); event ExcludeFromFees(address indexed account, bool isExcluded); constructor() ERC20("Unprotected Intercourse", "BREED") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; // exclude from paying fees and max transaction amount excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); /* an internal function that is only called here, and CANNOT be called ever again */ _createInitialTotalSupply(owner(), 1000000000 * (10**18)); } 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"); bool excludedAccount = _isExcludedFromFees[from] || _isExcludedFromFees[to]; require(isOpen || excludedAccount, "trading is yet Open"); if(amount == 0) { super._transfer(from, to, 0); return; } if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){ uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount."); } if(to==uniswapV2Pair && !excludedAccount) { require(amount <= maxTransactionAmount, "amount exceeds the maxTransactionAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if(overMinTokenBalance && !inSwapAndLiquify && to==uniswapV2Pair && swapAndLiquifyEnabled) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } // if any account belongs to _isExcludedFromFee account then remove the fee if(!excludedAccount) { uint256 fees; if(from==uniswapV2Pair) { fees = amount.mul(liquidityFee.add(marketingFee).add(devFee)).div(100); } if(to==uniswapV2Pair) { fees = amount.mul(sellLiquidityFee.add(sellMarketingFee).add(sellDevFee)).div(100); } amount = amount.sub(fees); if(fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance.mul(sellLiquidityFee).div(sellMarketingFee.add(sellLiquidityFee).add(sellDevFee)); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // swap and Send eth to wallets swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity)); devWallet.transfer(address(this).balance.mul(sellDevFee).div(sellMarketingFee.add(sellDevFee))); marketingWallet.transfer(address(this).balance); emit SwapAndLiquify(half, newBalance); } 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(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function openTrade() external onlyOwner { isOpen = true; } function setMaxWalletLimit(uint256 _newLimit) public onlyOwner { maxWalletToken = _newLimit; require(maxWalletToken >= totalSupply().div(200), "value too low"); } function setMaxTxAmount(uint256 _maxTx) public onlyOwner { maxTransactionAmount = _maxTx; require(maxTransactionAmount >= totalSupply().div(1000000000), "value too low"); } function updateBuyFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner { require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high"); liquidityFee = _liquidityFee; marketingFee = _marketingFee; devFee = _devFee; } function updateSellFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner { require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high"); sellLiquidityFee = _liquidityFee; sellMarketingFee = _marketingFee; sellDevFee = _devFee; } function updateWallets(address payable _marketingWallet, address payable _devWallet) public onlyOwner { marketingWallet = _marketingWallet; devWallet = _devWallet; } function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } receive() external payable { } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","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":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","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":[{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526006805461ffff60a81b1916600160a81b1790556001600781905560088190556009819055600a556002600b819055600c556a108b2a2c28029094000000600d556a18d0bf423c03d8de000000600e556969e10de76676d0800000600f55601180546001600160a01b03199081167321ba3d97c46f720992131ce73872f9cde42c5a35179091556012805490911673fd6c72bd8ff7ec942605660208fbea016a3ff8a0179055348015620000b757600080fd5b506040518060400160405280601781526020017f556e70726f74656374656420496e746572636f7572736500000000000000000081525060405180604001604052806005815260200164109491515160da1b81525081600390816200011d919062000640565b5060046200012c828262000640565b505050600062000141620003ae60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020f91906200070c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028391906200070c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f791906200070c565b601080546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200033d620003356005546001600160a01b031690565b6001620003b2565b60115462000356906001600160a01b03166001620003b2565b6012546200036f906001600160a01b03166001620003b2565b6200037c306001620003b2565b620003a6620003936005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620004f6565b505062000765565b3390565b6005546001600160a01b03163314620004125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526013602052604090205481151560ff909116151503620004975760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000409565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200050a57600080fd5b80600260008282546200051e91906200073e565b90915550506001600160a01b038216600090815260208190526040812080548392906200054d9084906200073e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005c757607f821691505b602082108103620005e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059757600081815260208120601f850160051c81016020861015620006175750805b601f850160051c820191505b81811015620006385782815560010162000623565b505050505050565b81516001600160401b038111156200065c576200065c6200059c565b62000674816200066d8454620005b2565b84620005ee565b602080601f831160018114620006ac5760008415620006935750858301515b600019600386901b1c1916600185901b17855562000638565b600085815260208120601f198616915b82811015620006dd57888601518255948401946001909101908401620006bc565b5085821015620006fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071f57600080fd5b81516001600160a01b03811681146200073757600080fd5b9392505050565b600082198211156200076057634e487b7160e01b600052601160045260246000fd5b500190565b608051611b52620007a46000396000818161030901528181610e7501528181610f7b01528181611057015281816110bc01526111240152611b526000f3fe6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f000000000000000000000000000000000000000000000000000000000000000081565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220875de0e2947bb1ea17538bddd92707e519b5fb8f99ac29a13fed2eb3f78391b864736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f81565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f6001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f6001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f6001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f6001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f000000000000000000000000c6162273668ca80ad5688660b116490841d3758f6001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220875de0e2947bb1ea17538bddd92707e519b5fb8f99ac29a13fed2eb3f78391b864736f6c634300080f0033
Deployed Bytecode Sourcemap
29533:8885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3390:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5025:169;;;;;;;;;;-1:-1:-1;5025:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;5025:169:0;1072:187:1;30156:41:0;;;;;;;;;;-1:-1:-1;30156:41:0;;;;-1:-1:-1;;;;;30156:41:0;;;;;;-1:-1:-1;;;;;1454:32:1;;;1436:51;;1424:2;1409:18;30156:41:0;1264:229:1;3978:108:0;;;;;;;;;;-1:-1:-1;4066:12:0;;3978:108;;;1644:25:1;;;1632:2;1617:18;3978:108:0;1498:177:1;5419:492:0;;;;;;;;;;-1:-1:-1;5419:492:0;;;;;:::i;:::-;;:::i;3820:93::-;;;;;;;;;;-1:-1:-1;3820:93:0;;3903:2;2283:36:1;;2271:2;2256:18;3820:93:0;2141:184:1;30204:38:0;;;;;;;;;;;;;;;29661:40;;;;;;;;;;-1:-1:-1;29661:40:0;;;;-1:-1:-1;;;29661:40:0;;;;;;36629:125;;;;;;;;;;-1:-1:-1;36629:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;36718:28:0;36694:4;36718:28;;;:19;:28;;;;;;;;;36629:125;29820:25;;;;;;;;;;;;;;;;29782:31;;;;;;;;;;;;;;;;4149:127;;;;;;;;;;-1:-1:-1;4149:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;4250:18:0;4223:7;4250:18;;;;;;;;;;;;4149:127;36842:185;;;;;;;;;;-1:-1:-1;36842:185:0;;;;;:::i;:::-;;:::i;:::-;;38068:119;;;;;;;;;;-1:-1:-1;38068:119:0;;;;;:::i;:::-;;:::i;30251:92::-;;;;;;;;;;-1:-1:-1;30251:92:0;;;;-1:-1:-1;;;;;30251:92:0;;;37238:302;;;;;;;;;;-1:-1:-1;37238:302:0;;;;;:::i;:::-;;:::i;2489:79::-;;;;;;;;;;-1:-1:-1;2554:6:0;;-1:-1:-1;;;;;2554:6:0;2489:79;;30351:86;;;;;;;;;;-1:-1:-1;30351:86:0;;;;-1:-1:-1;;;;;30351:86:0;;;29894:35;;;;;;;;;;;;;;;;3609:104;;;;;;;;;;;;;:::i;29744:31::-;;;;;;;;;;;;;;;;29936:29;;;;;;;;;;;;;;;;4489:175;;;;;;;;;;-1:-1:-1;4489:175:0;;;;;:::i;:::-;;:::i;36329:288::-;;;;;;;;;;-1:-1:-1;36329:288:0;;;;;:::i;:::-;;:::i;37549:315::-;;;;;;;;;;-1:-1:-1;37549:315:0;;;;;:::i;:::-;;:::i;38195:171::-;;;;;;;;;;-1:-1:-1;38195:171:0;;;;;:::i;:::-;;:::i;29972:57::-;;;;;;;;;;;;;;;;4727:151;;;;;;;;;;-1:-1:-1;4727:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;4843:18:0;;;4816:7;4843:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4727:151;30094:53;;;;;;;;;;;;;;;;30036:51;;;;;;;;;;;;;;;;37872:188;;;;;;;;;;-1:-1:-1;37872:188:0;;;;;:::i;:::-;;:::i;37035:195::-;;;;;;;;;;-1:-1:-1;37035:195:0;;;;;:::i;:::-;;:::i;29852:35::-;;;;;;;;;;;;;;;;36762:72;;;;;;;;;;;;;:::i;3390:100::-;3444:13;3477:5;3470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3390:100;:::o;5025:169::-;5108:4;5125:39;1637:10;5148:7;5157:6;5125:8;:39::i;:::-;-1:-1:-1;5182:4:0;5025:169;;;;:::o;5419:492::-;5559:4;5576:36;5586:6;5594:9;5605:6;5576:9;:36::i;:::-;-1:-1:-1;;;;;5652:19:0;;5625:24;5652:19;;;:11;:19;;;;;;;;1637:10;5652:33;;;;;;;;5704:26;;;;5696:79;;;;-1:-1:-1;;;5696:79:0;;5579:2:1;5696:79:0;;;5561:21:1;5618:2;5598:18;;;5591:30;5657:34;5637:18;;;5630:62;-1:-1:-1;;;5708:18:1;;;5701:38;5756:19;;5696:79:0;;;;;;;;;5811:57;5820:6;1637:10;5861:6;5842:16;:25;5811:8;:57::i;:::-;-1:-1:-1;5899:4:0;;5419:492;-1:-1:-1;;;;5419:492:0:o;36842:185::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;36916:14:::1;:26:::0;;;36979:22:::1;36997:3;36979:13;4066:12:::0;;;3978:108;36979:13:::1;:17:::0;::::1;:22::i;:::-;36961:14;;:40;;36953:66;;;::::0;-1:-1:-1;;;36953:66:0;;6349:2:1;36953:66:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;36953:66:0::1;6147:337:1::0;36953:66:0::1;36842:185:::0;:::o;38068:119::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;38148:18:::1;:31:::0;38068:119::o;37238:302::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;37409:1:::1;37360:45;37397:7:::0;37360:32:::1;:13:::0;37378;37360:17:::1;:32::i;:::-;:36:::0;::::1;:45::i;:::-;:50;;37352:75;;;::::0;-1:-1:-1;;;37352:75:0;;6691:2:1;37352:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37352:75:0::1;6489:336:1::0;37352:75:0::1;37438:12;:28:::0;;;;37477:12:::1;:28:::0;37516:6:::1;:16:::0;37238:302::o;3609:104::-;3665:13;3698:7;3691:14;;;;;:::i;4489:175::-;4575:4;4592:42;1637:10;4616:9;4627:6;4592:9;:42::i;36329:288::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36422:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;36414:95:::1;;;::::0;-1:-1:-1;;;36414:95:0;;7032:2:1;36414:95:0::1;::::0;::::1;7014:21:1::0;7071:2;7051:18;;;7044:30;7110:34;7090:18;;;7083:62;-1:-1:-1;;;7161:18:1;;;7154:40;7211:19;;36414:95:0::1;6830:406:1::0;36414:95:0::1;-1:-1:-1::0;;;;;36520:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36520:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36575:34;;1212:41:1;;;36575:34:0::1;::::0;1185:18:1;36575:34:0::1;;;;;;;36329:288:::0;;:::o;37549:315::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;37721:1:::1;37672:45;37709:7:::0;37672:32:::1;:13:::0;37690;37672:17:::1;:32::i;:45::-;:50;;37664:75;;;::::0;-1:-1:-1;;;37664:75:0;;6691:2:1;37664:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37664:75:0::1;6489:336:1::0;37664:75:0::1;37750:16;:32:::0;;;;37793:16:::1;:32:::0;37836:10:::1;:20:::0;37549:315::o;38195:171::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;38272:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;38272:32:0::1;-1:-1:-1::0;;;;38272:32:0;;::::1;;::::0;;38320:38:::1;::::0;::::1;::::0;::::1;::::0;38296:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;38320:38:0::1;;;;;;;;38195:171:::0;:::o;37872:188::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;37985:15:::1;:34:::0;;-1:-1:-1;;;;;37985:34:0;;::::1;-1:-1:-1::0;;;;;;37985:34:0;;::::1;;::::0;;;38030:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;37872:188::o;37035:195::-;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;37103:20:::1;:29:::0;;;37175::::1;37193:10;37175:13;4066:12:::0;;;3978:108;37175:29:::1;37151:20;;:53;;37143:79;;;::::0;-1:-1:-1;;;37143:79:0;;6349:2:1;37143:79:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;37143:79:0::1;6147:337:1::0;36762:72:0;2701:6;;-1:-1:-1;;;;;2701:6:0;1637:10;2701:22;2693:67;;;;-1:-1:-1;;;2693:67:0;;;;;;;:::i;:::-;36813:6:::1;:13:::0;;-1:-1:-1;;;;36813:13:0::1;-1:-1:-1::0;;;36813:13:0::1;::::0;;36762:72::o;7359:380::-;-1:-1:-1;;;;;7495:19:0;;7487:68;;;;-1:-1:-1;;;7487:68:0;;7443:2:1;7487:68:0;;;7425:21:1;7482:2;7462:18;;;7455:30;7521:34;7501:18;;;7494:62;-1:-1:-1;;;7572:18:1;;;7565:34;7616:19;;7487:68:0;7241:400:1;7487:68:0;-1:-1:-1;;;;;7574:21:0;;7566:68;;;;-1:-1:-1;;;7566:68:0;;7848:2:1;7566:68:0;;;7830:21:1;7887:2;7867:18;;;7860:30;7926:34;7906:18;;;7899:62;-1:-1:-1;;;7977:18:1;;;7970:32;8019:19;;7566:68:0;7646:398:1;7566:68:0;-1:-1:-1;;;;;7647:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7699:32;;1644:25:1;;;7699:32:0;;1617:18:1;7699:32:0;;;;;;;7359:380;;;:::o;31863:2029::-;-1:-1:-1;;;;;31995:18:0;;31987:68;;;;-1:-1:-1;;;31987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32074:16:0;;32066:64;;;;-1:-1:-1;;;32066:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32164:25:0;;32141:20;32164:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32193:23:0;;;;;;:19;:23;;;;;;;;32164:52;32235:6;;32141:75;;-1:-1:-1;;;;32235:6:0;;;;;:25;;;32245:15;32235:25;32227:57;;;;-1:-1:-1;;;32227:57:0;;9061:2:1;32227:57:0;;;9043:21:1;9100:2;9080:18;;;9073:30;-1:-1:-1;;;9119:18:1;;;9112:49;9178:18;;32227:57:0;8859:343:1;32227:57:0;32300:6;32310:1;32300:11;32297:92;;32328:28;32344:4;32350:2;32354:1;32328:15;:28::i;:::-;32371:7;31863:2029;;;:::o;32297:92::-;32411:13;-1:-1:-1;;;;;32405:19:0;:4;-1:-1:-1;;;;;32405:19:0;;:49;;;;-1:-1:-1;;;;;;32429:25:0;;;;;;:19;:25;;;;;;;;32428:26;32405:49;:77;;;;-1:-1:-1;;;;;;32459:23:0;;;;;;:19;:23;;;;;;;;32458:24;32405:77;32402:271;;;-1:-1:-1;;;;;4250:18:0;;32498:32;4250:18;;;;;;;;;;;32606:14;;32569:33;32596:6;4250:18;32569:33;:::i;:::-;:51;;32561:100;;;;-1:-1:-1;;;32561:100:0;;9674:2:1;32561:100:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:34;9732:18;;;9725:62;-1:-1:-1;;;9803:18:1;;;9796:34;9847:19;;32561:100:0;9472:400:1;32561:100:0;32483:190;32402:271;32700:13;-1:-1:-1;;;;;32696:17:0;:2;-1:-1:-1;;;;;32696:17:0;;:37;;;;;32718:15;32717:16;32696:37;32693:152;;;32768:20;;32758:6;:30;;32750:83;;;;-1:-1:-1;;;32750:83:0;;10079:2:1;32750:83:0;;;10061:21:1;10118:2;10098:18;;;10091:30;10157:34;10137:18;;;10130:62;-1:-1:-1;;;10208:18:1;;;10201:38;10256:19;;32750:83:0;9877:404:1;32750:83:0;32911:4;32862:28;4250:18;;;;;;;;;;;32989;;32965:42;;;;;;;33030:40;;-1:-1:-1;33054:16:0;;-1:-1:-1;;;33054:16:0;;;;33053:17;33030:40;:61;;;;;33078:13;-1:-1:-1;;;;;33074:17:0;:2;-1:-1:-1;;;;;33074:17:0;;33030:61;:86;;;;-1:-1:-1;33095:21:0;;-1:-1:-1;;;33095:21:0;;;;33030:86;33027:212;;;33156:18;;33133:41;;33189:36;33204:20;33189:14;:36::i;:::-;33341:15;33337:500;;33373:12;33409:13;-1:-1:-1;;;;;33403:19:0;:4;-1:-1:-1;;;;;33403:19:0;;33400:128;;33449:63;33508:3;33449:54;33460:42;33495:6;;33460:30;33477:12;;33460;;:16;;:30;;;;:::i;:42::-;33449:6;;:10;:54::i;:63::-;33441:71;;33400:128;33551:13;-1:-1:-1;;;;;33547:17:0;:2;-1:-1:-1;;;;;33547:17:0;;33544:138;;33591:75;33662:3;33591:66;33602:54;33645:10;;33602:38;33623:16;;33602;;:20;;:38;;;;:::i;33591:75::-;33583:83;;33544:138;33704:16;:6;33715:4;33704:10;:16::i;:::-;33695:25;-1:-1:-1;33738:8:0;;33735:91;;33767:42;33783:4;33797;33804;33767:15;:42::i;:::-;33358:479;33337:500;33849:33;33865:4;33871:2;33875:6;33849:15;:33::i;:::-;31976:1916;;;31863:2029;;;:::o;19184:98::-;19242:7;19269:5;19273:1;19269;:5;:::i;:::-;19262:12;19184:98;-1:-1:-1;;;19184:98:0:o;18047:::-;18105:7;18132:5;18136:1;18132;:5;:::i;6009:733::-;-1:-1:-1;;;;;6149:20:0;;6141:70;;;;-1:-1:-1;;;6141:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6230:23:0;;6222:71;;;;-1:-1:-1;;;6222:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6390:17:0;;6366:21;6390:17;;;;;;;;;;;6426:23;;;;6418:74;;;;-1:-1:-1;;;6418:74:0;;10710:2:1;6418:74:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:36;10885:19;;6418:74:0;10508:402:1;6418:74:0;-1:-1:-1;;;;;6528:17:0;;;:9;:17;;;;;;;;;;;6548:22;;;6528:42;;6592:20;;;;;;;;:30;;6564:6;;6528:9;6592:30;;6564:6;;6592:30;:::i;:::-;;;;;;;;6657:9;-1:-1:-1;;;;;6640:35:0;6649:6;-1:-1:-1;;;;;6640:35:0;;6668:6;6640:35;;;;1644:25:1;;1632:2;1617:18;;1498:177;6640:35:0;;;;;;;;6688:46;7828:125;33901:1330;30593:16;:23;;-1:-1:-1;;;;30593:23:0;-1:-1:-1;;;30593:23:0;;;34105:10:::1;::::0;34083:16:::1;::::0;34062::::1;::::0;30593:23;;34015:102:::1;::::0;34062:54:::1;::::0;:38:::1;::::0;:20:::1;:38::i;:54::-;34040:16;::::0;34015:42:::1;::::0;:20;;:24:::1;:42::i;:102::-;33986:131:::0;-1:-1:-1;34186:12:0::1;34201:25;33986:131:::0;34224:1:::1;34201:22;:25::i;:::-;34186:40:::0;-1:-1:-1;34237:17:0::1;34257:28;:18:::0;34186:40;34257:22:::1;:28::i;:::-;34237:48:::0;-1:-1:-1;34588:21:0::1;34654:22;34671:4:::0;34654:16:::1;:22::i;:::-;34738:18;34759:41;:21;34785:14:::0;34759:25:::1;:41::i;:::-;34738:62;;34850:35;34863:9;34874:10;34850:12;:35::i;:::-;34939:62;34956:44;:20:::0;34981:18;34956:24:::1;:44::i;:::-;34939:16;:62::i;:::-;35012:9;::::0;35094:10:::1;::::0;35073:16:::1;::::0;-1:-1:-1;;;;;35012:9:0;;::::1;::::0;:95:::1;::::0;35031:75:::1;::::0;35073:32:::1;::::0;:20:::1;:32::i;:::-;35057:10;::::0;35031:37:::1;::::0;:21:::1;::::0;:25:::1;:37::i;:75::-;35012:95;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35118:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;35118:15:0;;::::1;::::0;35143:21:::1;35118:47:::0;::::1;;;::::0;:15:::1;:47:::0;:15;:47;35143:21;35118:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35190:32:0::1;::::0;;11089:25:1;;;11145:2;11130:18;;11123:34;;;35190:32:0::1;::::0;11062:18:1;35190:32:0::1;;;;;;;-1:-1:-1::0;;30639:16:0;:24;;-1:-1:-1;;;;30639:24:0;;;-1:-1:-1;;;;33901:1330:0:o;18785:98::-;18843:7;18870:5;18874:1;18870;:5;:::i;18428:98::-;18486:7;18513:5;18517:1;18513;:5;:::i;35239:692::-;35389:16;;;35403:1;35389:16;;;;;;;;35365:21;;35389:16;;;;;;;;;;-1:-1:-1;35389:16:0;35365:40;;35434:4;35416;35421:1;35416:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35416:23:0;;;:7;;;;;;;;;;:23;;;;35460:15;;:22;;;-1:-1:-1;;;35460:22:0;;;;:15;;;;;:20;;:22;;;;;35416:7;;35460:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35450:4;35455:1;35450:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35450:32:0;;;:7;;;;;;;;;;:32;;;;35531:15;;35516:4;4816:7;4843:18;;;:11;:18;;;;;;35531:15;;;;4843:27;;;;;;35551:11;-1:-1:-1;35495:156:0;;;35609:15;;35577:62;;35594:4;;-1:-1:-1;;;;;35609:15:0;-1:-1:-1;;35577:8:0;:62::i;:::-;35689:15;;:224;;-1:-1:-1;;;35689:224:0;;-1:-1:-1;;;;;35689:15:0;;;;:66;;:224;;35770:11;;35689:15;;35840:4;;35867;;35887:15;;35689:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35939:381;36050:15;;-1:-1:-1;;;;;36050:15:0;:31;36089:9;36122:4;36142:11;36050:15;;36254:7;2554:6;;-1:-1:-1;;;;;2554:6:0;;2489:79;36254:7;36050:252;;;;;;-1:-1:-1;;;;;;36050:252:0;;;-1:-1:-1;;;;;13335:15:1;;;36050:252:0;;;13317:34:1;13367:18;;;13360:34;;;;13410:18;;;13403:34;;;;13453:18;;;13446:34;13517:15;;;13496:19;;;13489:44;36276:15:0;13549:19:1;;;13542:35;13251:19;;36050:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35939:381;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1680:456::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;1680:456;;2072:7;;-1:-1:-1;;;2126:2:1;2111:18;;;;2098:32;;1680:456::o;2538:247::-;2597:6;2650:2;2638:9;2629:7;2625:23;2621:32;2618:52;;;2666:1;2663;2656:12;2618:52;2705:9;2692:23;2724:31;2749:5;2724:31;:::i;2790:180::-;2849:6;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;-1:-1:-1;2941:23:1;;2790:180;-1:-1:-1;2790:180:1:o;3199:316::-;3276:6;3284;3292;3345:2;3333:9;3324:7;3320:23;3316:32;3313:52;;;3361:1;3358;3351:12;3313:52;-1:-1:-1;;3384:23:1;;;3454:2;3439:18;;3426:32;;-1:-1:-1;3505:2:1;3490:18;;;3477:32;;3199:316;-1:-1:-1;3199:316:1:o;3520:160::-;3585:20;;3641:13;;3634:21;3624:32;;3614:60;;3670:1;3667;3660:12;3614:60;3520:160;;;:::o;3685:315::-;3750:6;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3866:9;3853:23;3885:31;3910:5;3885:31;:::i;:::-;3935:5;-1:-1:-1;3959:35:1;3990:2;3975:18;;3959:35;:::i;:::-;3949:45;;3685:315;;;;;:::o;4005:180::-;4061:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;4153:26;4169:9;4153:26;:::i;4190:388::-;4258:6;4266;4319:2;4307:9;4298:7;4294:23;4290:32;4287:52;;;4335:1;4332;4325:12;4287:52;4374:9;4361:23;4393:31;4418:5;4393:31;:::i;:::-;4443:5;-1:-1:-1;4500:2:1;4485:18;;4472:32;4513:33;4472:32;4513:33;:::i;:::-;4565:7;4555:17;;;4190:388;;;;;:::o;4992:380::-;5071:1;5067:12;;;;5114;;;5135:61;;5189:4;5181:6;5177:17;5167:27;;5135:61;5242:2;5234:6;5231:14;5211:18;5208:38;5205:161;;5288:10;5283:3;5279:20;5276:1;5269:31;5323:4;5320:1;5313:15;5351:4;5348:1;5341:15;5205:161;;4992:380;;;:::o;5786:356::-;5988:2;5970:21;;;6007:18;;;6000:30;6066:34;6061:2;6046:18;;6039:62;6133:2;6118:18;;5786:356::o;8049:401::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:35;8440:3;8425:19;;8049:401::o;8455:399::-;8657:2;8639:21;;;8696:2;8676:18;;;8669:30;8735:34;8730:2;8715:18;;8708:62;-1:-1:-1;;;8801:2:1;8786:18;;8779:33;8844:3;8829:19;;8455:399::o;9207:127::-;9268:10;9263:3;9259:20;9256:1;9249:31;9299:4;9296:1;9289:15;9323:4;9320:1;9313:15;9339:128;9379:3;9410:1;9406:6;9403:1;9400:13;9397:39;;;9416:18;;:::i;:::-;-1:-1:-1;9452:9:1;;9339:128::o;10286:217::-;10326:1;10352;10342:132;;10396:10;10391:3;10387:20;10384:1;10377:31;10431:4;10428:1;10421:15;10459:4;10456:1;10449:15;10342:132;-1:-1:-1;10488:9:1;;10286:217::o;11168:168::-;11208:7;11274:1;11270;11266:6;11262:14;11259:1;11256:21;11251:1;11244:9;11237:17;11233:45;11230:71;;;11281:18;;:::i;:::-;-1:-1:-1;11321:9:1;;11168:168::o;11341:125::-;11381:4;11409:1;11406;11403:8;11400:34;;;11414:18;;:::i;:::-;-1:-1:-1;11451:9:1;;11341:125::o;11603:127::-;11664:10;11659:3;11655:20;11652:1;11645:31;11695:4;11692:1;11685:15;11719:4;11716:1;11709:15;11735:251;11805:6;11858:2;11846:9;11837:7;11833:23;11829:32;11826:52;;;11874:1;11871;11864:12;11826:52;11906:9;11900:16;11925:31;11950:5;11925:31;:::i;11991:980::-;12253:4;12301:3;12290:9;12286:19;12332:6;12321:9;12314:25;12358:2;12396:6;12391:2;12380:9;12376:18;12369:34;12439:3;12434:2;12423:9;12419:18;12412:31;12463:6;12498;12492:13;12529:6;12521;12514:22;12567:3;12556:9;12552:19;12545:26;;12606:2;12598:6;12594:15;12580:29;;12627:1;12637:195;12651:6;12648:1;12645:13;12637:195;;;12716:13;;-1:-1:-1;;;;;12712:39:1;12700:52;;12807:15;;;;12772:12;;;;12748:1;12666:9;12637:195;;;-1:-1:-1;;;;;;;12888:32:1;;;;12883:2;12868:18;;12861:60;-1:-1:-1;;;12952:3:1;12937:19;12930:35;12849:3;11991:980;-1:-1:-1;;;11991:980:1:o;13588:306::-;13676:6;13684;13692;13745:2;13733:9;13724:7;13720:23;13716:32;13713:52;;;13761:1;13758;13751:12;13713:52;13790:9;13784:16;13774:26;;13840:2;13829:9;13825:18;13819:25;13809:35;;13884:2;13873:9;13869:18;13863:25;13853:35;;13588:306;;;;;:::o
Swarm Source
ipfs://875de0e2947bb1ea17538bddd92707e519b5fb8f99ac29a13fed2eb3f78391b8
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.