Overview
ETH Balance
0.0259089452644732 ETH
Eth Value
$68.94 (@ $2,660.68/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 20 from a total of 20 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exclude From Fee... | 19749926 | 288 days ago | IN | 0 ETH | 0.00022605 | ||||
Exclude From Max... | 19749926 | 288 days ago | IN | 0 ETH | 0.00012545 | ||||
Transfer | 19556118 | 315 days ago | IN | 0.02590894 ETH | 0.00062269 | ||||
Approve | 19539333 | 318 days ago | IN | 0 ETH | 0.00106774 | ||||
Approve | 19531746 | 319 days ago | IN | 0 ETH | 0.00125055 | ||||
Transfer | 19530196 | 319 days ago | IN | 0 ETH | 0.00066236 | ||||
Approve | 19529818 | 319 days ago | IN | 0 ETH | 0.00123438 | ||||
Transfer | 19529144 | 319 days ago | IN | 0 ETH | 0.00079523 | ||||
Approve | 19528934 | 319 days ago | IN | 0 ETH | 0.00178486 | ||||
Approve | 19528725 | 319 days ago | IN | 0 ETH | 0.00152365 | ||||
Approve | 19528701 | 319 days ago | IN | 0 ETH | 0.00202613 | ||||
Approve | 19528659 | 319 days ago | IN | 0 ETH | 0.0028526 | ||||
Exclude From Max... | 19528649 | 319 days ago | IN | 0 ETH | 0.0028155 | ||||
Exclude From Fee... | 19528648 | 319 days ago | IN | 0 ETH | 0.0025833 | ||||
Approve | 19528490 | 319 days ago | IN | 0 ETH | 0.00202708 | ||||
Approve | 19501143 | 323 days ago | IN | 0 ETH | 0.00093514 | ||||
Exclude From Max... | 19500712 | 323 days ago | IN | 0 ETH | 0.0008432 | ||||
Exclude From Fee... | 19500711 | 323 days ago | IN | 0 ETH | 0.00083239 | ||||
Approve | 19500703 | 323 days ago | IN | 0 ETH | 0.00082071 | ||||
Approve | 19490956 | 324 days ago | IN | 0 ETH | 0.00177941 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SWPR
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-22 */ // // // SWPR.FINANCE // Building the future of mass accessible web3 finance. // // Website: https://swpr.finance/ // Twitter: https://twitter.com/swprfinance // Telegram: https://t.me/swprfinance // // // SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** * @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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @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; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SWPR is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public immutable distroWallet; uint256 public maxTransactionAmount; uint256 public immutable swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyShareFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellShareFee; uint256 public sellLiquidityFee; uint256 public tokensForDistro; uint256 public tokensForLiquidity; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("SWPR.finance", "SWPR") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyShareFee = 3; uint256 _buyLiquidityFee = 0; uint256 _sellShareFee = 3; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 20_000 * 1e18; maxWallet = 20_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; buyShareFee = _buyShareFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyShareFee + buyLiquidityFee; sellShareFee = _sellShareFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellShareFee + sellLiquidityFee; distroWallet = address(0x35C98eb9516C147a4c5d50818F30b7867b733b29); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function launchTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDistro += (fees * sellShareFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDistro += (fees * buyShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDistro; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForRevShare = (ethBalance * tokensForDistro) / (totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } tokensForLiquidity = 0; tokensForDistro = 0; (success, ) = address(distroWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distroWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDistro","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040526008805461ffff191690553480156200001c575f80fd5b506040518060400160405280600c81526020016b535750522e66696e616e636560a01b8152506040518060400160405280600481526020016329aba82960e11b8152508160039081620000709190620006a3565b5060046200007f8282620006a3565b5050506200009c620000966200035560201b60201c565b62000359565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be816001620003aa565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000107573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012d91906200076b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000179573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019f91906200076b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ea573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021091906200076b565b6001600160a01b031660a08190526200022b906001620003aa565b60a0516200023b90600162000422565b69043c33c1937564800000600681905560075560035f818169d3c21bcecceda10000006127106200026e826005620007ae565b6200027a9190620007ce565b60e052600a859055600b849055620002938486620007ee565b600955600d839055600e829055620002ac8284620007ee565b600c557335c98eb9516c147a4c5d50818f30b7867b733b2960c052620002e6620002de6005546001600160a01b031690565b600162000475565b620002f330600162000475565b6200030261dead600162000475565b62000321620003196005546001600160a01b031690565b6001620003aa565b6200032e306001620003aa565b6200033d61dead6001620003aa565b6200034933826200051d565b50505050505062000804565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003f85760405162461bcd60e51b815260206004820181905260248201525f80516020620026b083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004bf5760405162461bcd60e51b815260206004820181905260248201525f80516020620026b08339815191526044820152606401620003ef565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ef565b8060025f828254620005889190620007ee565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b6908490620007ee565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062d57607f821691505b6020821081036200064c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005ff575f81815260208120601f850160051c810160208610156200067a5750805b601f850160051c820191505b818110156200069b5782815560010162000686565b505050505050565b81516001600160401b03811115620006bf57620006bf62000604565b620006d781620006d0845462000618565b8462000652565b602080601f8311600181146200070d575f8415620006f55750858301515b5f19600386901b1c1916600185901b1785556200069b565b5f85815260208120601f198616915b828110156200073d578886015182559484019460019091019084016200071c565b50858210156200075b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200077c575f80fd5b81516001600160a01b038116811462000793575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007c857620007c86200079a565b92915050565b5f82620007e957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007c857620007c86200079a565b60805160a05160c05160e051611e326200087e5f395f818161067d015281816110f8015281816115f9015261162b01525f81816104be015261175101525f81816103a4015261098a01525f81816102b80152818161181a015281816118d10152818161190d0152818161198101526119a80152611e325ff3fe608060405260043610610215575f3560e01c806376cb46fd1161011e578063bfcda222116100a8578063e2f456051161006d578063e2f456051461066c578063f11a24d31461069f578063f2fde38b146106b4578063f6374342146106d3578063f8b45b05146106e8575f80fd5b8063bfcda222146105ca578063c0246668146105df578063c8c8ebe4146105fe578063d85ba06314610613578063dd62ed3e14610628575f80fd5b80639a7a23d6116100ee5780639a7a23d614610526578063a457c2d714610545578063a9059cbb14610564578063b62496f514610583578063bbc0c742146105b1575f80fd5b806376cb46fd146104ad5780638d291c64146104e05780638da5cb5b146104f557806395d89b4114610512575f80fd5b8063395093511161019f5780636ddd17131161016f5780636ddd1713146104125780636fc61a091461043057806370a0823114610446578063715018a61461047a5780637571336a1461048e575f80fd5b8063395093511461037457806349bd5a5e146103935780634fbee193146103c65780636a486a8e146103fd575f80fd5b806318160ddd116101e557806318160ddd146102f25780631a8145bb1461031057806323b872dd14610325578063313ce56714610344578063342a37061461035f575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106fd565b6040516102419190611a7e565b60405180910390f35b348015610255575f80fd5b50610269610264366004611add565b61078d565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611b07565b60126020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b5061030260105481565b348015610330575f80fd5b5061026961033f366004611b29565b6107a3565b34801561034f575f80fd5b5060405160128152602001610241565b34801561036a575f80fd5b50610302600f5481565b34801561037f575f80fd5b5061026961038e366004611add565b610850565b34801561039e575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103d1575f80fd5b506102696103e0366004611b07565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610408575f80fd5b50610302600c5481565b34801561041d575f80fd5b5060085461026990610100900460ff1681565b34801561043b575f80fd5b5061044461088b565b005b348015610451575f80fd5b50610302610460366004611b07565b6001600160a01b03165f9081526020819052604090205490565b348015610485575f80fd5b506104446108c6565b348015610499575f80fd5b506104446104a8366004611b67565b6108fb565b3480156104b8575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104eb575f80fd5b50610302600a5481565b348015610500575f80fd5b506005546001600160a01b03166102da565b34801561051d575f80fd5b5061023461094f565b348015610531575f80fd5b50610444610540366004611b67565b61095e565b348015610550575f80fd5b5061026961055f366004611add565b610a3d565b34801561056f575f80fd5b5061026961057e366004611add565b610ad5565b34801561058e575f80fd5b5061026961059d366004611b07565b60136020525f908152604090205460ff1681565b3480156105bc575f80fd5b506008546102699060ff1681565b3480156105d5575f80fd5b50610302600d5481565b3480156105ea575f80fd5b506104446105f9366004611b67565b610ae1565b348015610609575f80fd5b5061030260065481565b34801561061e575f80fd5b5061030260095481565b348015610633575f80fd5b50610302610642366004611ba2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610677575f80fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b3480156106aa575f80fd5b50610302600b5481565b3480156106bf575f80fd5b506104446106ce366004611b07565b610b69565b3480156106de575f80fd5b50610302600e5481565b3480156106f3575f80fd5b5061030260075481565b60606003805461070c90611bce565b80601f016020809104026020016040519081016040528092919081815260200182805461073890611bce565b80156107835780601f1061075a57610100808354040283529160200191610783565b820191905f5260205f20905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b5f610799338484610c04565b5060015b92915050565b5f6107af848484610d27565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108458533858403610c04565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610799918590610886908690611c1a565b610c04565b6005546001600160a01b031633146108b55760405162461bcd60e51b815260040161082f90611c2d565b6008805461ffff1916610101179055565b6005546001600160a01b031633146108f05760405162461bcd60e51b815260040161082f90611c2d565b6108f95f6113c3565b565b6005546001600160a01b031633146109255760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b60606004805461070c90611bce565b6005546001600160a01b031633146109885760405162461bcd60e51b815260040161082f90611c2d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610a2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161082f565b610a398282611414565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161082f565b610acb3385858403610c04565b5060019392505050565b5f610799338484610d27565b6005546001600160a01b03163314610b0b5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b610c01816113c3565b50565b6001600160a01b038316610c665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b038216610d735760405162461bcd60e51b815260040161082f90611ca7565b805f03610d8a57610d8583835f611467565b505050565b6005546001600160a01b03848116911614801590610db657506005546001600160a01b03838116911614155b8015610dca57506001600160a01b03821615155b8015610de157506001600160a01b03821661dead14155b8015610df75750600554600160a01b900460ff16155b156110e75760085460ff16610e88576001600160a01b0383165f9081526011602052604090205460ff1680610e4357506001600160a01b0382165f9081526011602052604090205460ff165b610e885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b6001600160a01b0383165f9081526013602052604090205460ff168015610ec757506001600160a01b0382165f9081526012602052604090205460ff16155b15610faa57600654811115610f3c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b6007546001600160a01b0383165f90815260208190526040902054610f619083611c1a565b1115610fa55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6110e7565b6001600160a01b0382165f9081526013602052604090205460ff168015610fe957506001600160a01b0383165f9081526012602052604090205460ff16155b1561105f57600654811115610fa55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161082f565b6001600160a01b0382165f9081526012602052604090205460ff166110e7576007546001600160a01b0383165f908152602081905260409020546110a39083611c1a565b11156110e75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b305f908152602081905260409020547f00000000000000000000000000000000000000000000000000000000000000008110801590819061112f5750600854610100900460ff165b80156111455750600554600160a01b900460ff16155b801561116957506001600160a01b0385165f9081526013602052604090205460ff16155b801561118d57506001600160a01b0385165f9081526011602052604090205460ff16155b80156111b157506001600160a01b0384165f9081526011602052604090205460ff16155b156111df576005805460ff60a01b1916600160a01b1790556111d16115ba565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b90920482161591168061122b57506001600160a01b0385165f9081526011602052604090205460ff165b1561123357505f5b5f81156113af576001600160a01b0386165f9081526013602052604090205460ff16801561126257505f600c54115b156112e8576064600c54866112779190611cea565b6112819190611d01565b9050600c54600e54826112949190611cea565b61129e9190611d01565b60105f8282546112ae9190611c1a565b9091555050600c54600d546112c39083611cea565b6112cd9190611d01565b600f5f8282546112dd9190611c1a565b909155506113919050565b6001600160a01b0387165f9081526013602052604090205460ff16801561131057505f600954115b15611391576064600954866113259190611cea565b61132f9190611d01565b9050600954600b54826113429190611cea565b61134c9190611d01565b60105f82825461135c9190611c1a565b9091555050600954600a546113719083611cea565b61137b9190611d01565b600f5f82825461138b9190611c1a565b90915550505b80156113a2576113a2873083611467565b6113ac8186611d20565b94505b6113ba878787611467565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661148d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b0382166114b35760405162461bcd60e51b815260040161082f90611ca7565b6001600160a01b0383165f908152602081905260409020548181101561152a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611560908490611c1a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ac91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f600f546010546115dc9190611c1a565b90505f8215806115ea575081155b156115f457505050565b61161f7f00000000000000000000000000000000000000000000000000000000000000006014611cea565b831115611654576116517f00000000000000000000000000000000000000000000000000000000000000006014611cea565b92505b5f600283601054866116669190611cea565b6116709190611d01565b61167a9190611d01565b90505f6116878286611d20565b905047611693826117c5565b5f61169e8247611d20565b90505f60026010546116b09190611d01565b6116ba9088611d20565b600f546116c79084611cea565b6116d19190611d01565b90505f6116de8284611d20565b90505f861180156116ee57505f81115b15611741576116fd868261197b565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f81146117b2576040519150601f19603f3d011682016040523d82523d5f602084013e6117b7565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117f8576117f8611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611874573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118989190611d47565b816001815181106118ab576118ab611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250506118f6307f000000000000000000000000000000000000000000000000000000000000000084610c04565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061194a9085905f90869030904290600401611d62565b5f604051808303815f87803b158015611961575f80fd5b505af1158015611973573d5f803e3d5ffd5b505050505050565b6119a6307f000000000000000000000000000000000000000000000000000000000000000084610c04565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806119ec6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611a52573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a779190611dd1565b5050505050565b5f6020808352835180828501525f5b81811015611aa957858101830151858201604001528201611a8d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c01575f80fd5b5f8060408385031215611aee575f80fd5b8235611af981611ac9565b946020939093013593505050565b5f60208284031215611b17575f80fd5b8135611b2281611ac9565b9392505050565b5f805f60608486031215611b3b575f80fd5b8335611b4681611ac9565b92506020840135611b5681611ac9565b929592945050506040919091013590565b5f8060408385031215611b78575f80fd5b8235611b8381611ac9565b915060208301358015158114611b97575f80fd5b809150509250929050565b5f8060408385031215611bb3575f80fd5b8235611bbe81611ac9565b91506020830135611b9781611ac9565b600181811c90821680611be257607f821691505b602082108103611c0057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561079d5761079d611c06565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761079d5761079d611c06565b5f82611d1b57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561079d5761079d611c06565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d57575f80fd5b8151611b2281611ac9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611db05784516001600160a01b031683529383019391830191600101611d8b565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611de3575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204eef689d6b1f56cd790a5828525638ca7e9c6b45e144b79de887ed2b43d521ff64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610215575f3560e01c806376cb46fd1161011e578063bfcda222116100a8578063e2f456051161006d578063e2f456051461066c578063f11a24d31461069f578063f2fde38b146106b4578063f6374342146106d3578063f8b45b05146106e8575f80fd5b8063bfcda222146105ca578063c0246668146105df578063c8c8ebe4146105fe578063d85ba06314610613578063dd62ed3e14610628575f80fd5b80639a7a23d6116100ee5780639a7a23d614610526578063a457c2d714610545578063a9059cbb14610564578063b62496f514610583578063bbc0c742146105b1575f80fd5b806376cb46fd146104ad5780638d291c64146104e05780638da5cb5b146104f557806395d89b4114610512575f80fd5b8063395093511161019f5780636ddd17131161016f5780636ddd1713146104125780636fc61a091461043057806370a0823114610446578063715018a61461047a5780637571336a1461048e575f80fd5b8063395093511461037457806349bd5a5e146103935780634fbee193146103c65780636a486a8e146103fd575f80fd5b806318160ddd116101e557806318160ddd146102f25780631a8145bb1461031057806323b872dd14610325578063313ce56714610344578063342a37061461035f575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106fd565b6040516102419190611a7e565b60405180910390f35b348015610255575f80fd5b50610269610264366004611add565b61078d565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611b07565b60126020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b5061030260105481565b348015610330575f80fd5b5061026961033f366004611b29565b6107a3565b34801561034f575f80fd5b5060405160128152602001610241565b34801561036a575f80fd5b50610302600f5481565b34801561037f575f80fd5b5061026961038e366004611add565b610850565b34801561039e575f80fd5b506102da7f0000000000000000000000006a689f06f2bcaff7920adc22d739bce1f4f2f57581565b3480156103d1575f80fd5b506102696103e0366004611b07565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610408575f80fd5b50610302600c5481565b34801561041d575f80fd5b5060085461026990610100900460ff1681565b34801561043b575f80fd5b5061044461088b565b005b348015610451575f80fd5b50610302610460366004611b07565b6001600160a01b03165f9081526020819052604090205490565b348015610485575f80fd5b506104446108c6565b348015610499575f80fd5b506104446104a8366004611b67565b6108fb565b3480156104b8575f80fd5b506102da7f00000000000000000000000035c98eb9516c147a4c5d50818f30b7867b733b2981565b3480156104eb575f80fd5b50610302600a5481565b348015610500575f80fd5b506005546001600160a01b03166102da565b34801561051d575f80fd5b5061023461094f565b348015610531575f80fd5b50610444610540366004611b67565b61095e565b348015610550575f80fd5b5061026961055f366004611add565b610a3d565b34801561056f575f80fd5b5061026961057e366004611add565b610ad5565b34801561058e575f80fd5b5061026961059d366004611b07565b60136020525f908152604090205460ff1681565b3480156105bc575f80fd5b506008546102699060ff1681565b3480156105d5575f80fd5b50610302600d5481565b3480156105ea575f80fd5b506104446105f9366004611b67565b610ae1565b348015610609575f80fd5b5061030260065481565b34801561061e575f80fd5b5061030260095481565b348015610633575f80fd5b50610302610642366004611ba2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610677575f80fd5b506103027f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b3480156106aa575f80fd5b50610302600b5481565b3480156106bf575f80fd5b506104446106ce366004611b07565b610b69565b3480156106de575f80fd5b50610302600e5481565b3480156106f3575f80fd5b5061030260075481565b60606003805461070c90611bce565b80601f016020809104026020016040519081016040528092919081815260200182805461073890611bce565b80156107835780601f1061075a57610100808354040283529160200191610783565b820191905f5260205f20905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b5f610799338484610c04565b5060015b92915050565b5f6107af848484610d27565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108458533858403610c04565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610799918590610886908690611c1a565b610c04565b6005546001600160a01b031633146108b55760405162461bcd60e51b815260040161082f90611c2d565b6008805461ffff1916610101179055565b6005546001600160a01b031633146108f05760405162461bcd60e51b815260040161082f90611c2d565b6108f95f6113c3565b565b6005546001600160a01b031633146109255760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b60606004805461070c90611bce565b6005546001600160a01b031633146109885760405162461bcd60e51b815260040161082f90611c2d565b7f0000000000000000000000006a689f06f2bcaff7920adc22d739bce1f4f2f5756001600160a01b0316826001600160a01b031603610a2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161082f565b610a398282611414565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161082f565b610acb3385858403610c04565b5060019392505050565b5f610799338484610d27565b6005546001600160a01b03163314610b0b5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b610c01816113c3565b50565b6001600160a01b038316610c665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b038216610d735760405162461bcd60e51b815260040161082f90611ca7565b805f03610d8a57610d8583835f611467565b505050565b6005546001600160a01b03848116911614801590610db657506005546001600160a01b03838116911614155b8015610dca57506001600160a01b03821615155b8015610de157506001600160a01b03821661dead14155b8015610df75750600554600160a01b900460ff16155b156110e75760085460ff16610e88576001600160a01b0383165f9081526011602052604090205460ff1680610e4357506001600160a01b0382165f9081526011602052604090205460ff165b610e885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b6001600160a01b0383165f9081526013602052604090205460ff168015610ec757506001600160a01b0382165f9081526012602052604090205460ff16155b15610faa57600654811115610f3c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b6007546001600160a01b0383165f90815260208190526040902054610f619083611c1a565b1115610fa55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6110e7565b6001600160a01b0382165f9081526013602052604090205460ff168015610fe957506001600160a01b0383165f9081526012602052604090205460ff16155b1561105f57600654811115610fa55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161082f565b6001600160a01b0382165f9081526012602052604090205460ff166110e7576007546001600160a01b0383165f908152602081905260409020546110a39083611c1a565b11156110e75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef5000008110801590819061112f5750600854610100900460ff165b80156111455750600554600160a01b900460ff16155b801561116957506001600160a01b0385165f9081526013602052604090205460ff16155b801561118d57506001600160a01b0385165f9081526011602052604090205460ff16155b80156111b157506001600160a01b0384165f9081526011602052604090205460ff16155b156111df576005805460ff60a01b1916600160a01b1790556111d16115ba565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b90920482161591168061122b57506001600160a01b0385165f9081526011602052604090205460ff165b1561123357505f5b5f81156113af576001600160a01b0386165f9081526013602052604090205460ff16801561126257505f600c54115b156112e8576064600c54866112779190611cea565b6112819190611d01565b9050600c54600e54826112949190611cea565b61129e9190611d01565b60105f8282546112ae9190611c1a565b9091555050600c54600d546112c39083611cea565b6112cd9190611d01565b600f5f8282546112dd9190611c1a565b909155506113919050565b6001600160a01b0387165f9081526013602052604090205460ff16801561131057505f600954115b15611391576064600954866113259190611cea565b61132f9190611d01565b9050600954600b54826113429190611cea565b61134c9190611d01565b60105f82825461135c9190611c1a565b9091555050600954600a546113719083611cea565b61137b9190611d01565b600f5f82825461138b9190611c1a565b90915550505b80156113a2576113a2873083611467565b6113ac8186611d20565b94505b6113ba878787611467565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661148d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b0382166114b35760405162461bcd60e51b815260040161082f90611ca7565b6001600160a01b0383165f908152602081905260409020548181101561152a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611560908490611c1a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ac91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f600f546010546115dc9190611c1a565b90505f8215806115ea575081155b156115f457505050565b61161f7f00000000000000000000000000000000000000000000001b1ae4d6e2ef5000006014611cea565b831115611654576116517f00000000000000000000000000000000000000000000001b1ae4d6e2ef5000006014611cea565b92505b5f600283601054866116669190611cea565b6116709190611d01565b61167a9190611d01565b90505f6116878286611d20565b905047611693826117c5565b5f61169e8247611d20565b90505f60026010546116b09190611d01565b6116ba9088611d20565b600f546116c79084611cea565b6116d19190611d01565b90505f6116de8284611d20565b90505f861180156116ee57505f81115b15611741576116fd868261197b565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f00000000000000000000000035c98eb9516c147a4c5d50818f30b7867b733b296001600160a01b03169147919081818185875af1925050503d805f81146117b2576040519150601f19603f3d011682016040523d82523d5f602084013e6117b7565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117f8576117f8611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611874573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118989190611d47565b816001815181106118ab576118ab611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250506118f6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c04565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061194a9085905f90869030904290600401611d62565b5f604051808303815f87803b158015611961575f80fd5b505af1158015611973573d5f803e3d5ffd5b505050505050565b6119a6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c04565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806119ec6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611a52573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a779190611dd1565b5050505050565b5f6020808352835180828501525f5b81811015611aa957858101830151858201604001528201611a8d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c01575f80fd5b5f8060408385031215611aee575f80fd5b8235611af981611ac9565b946020939093013593505050565b5f60208284031215611b17575f80fd5b8135611b2281611ac9565b9392505050565b5f805f60608486031215611b3b575f80fd5b8335611b4681611ac9565b92506020840135611b5681611ac9565b929592945050506040919091013590565b5f8060408385031215611b78575f80fd5b8235611b8381611ac9565b915060208301358015158114611b97575f80fd5b809150509250929050565b5f8060408385031215611bb3575f80fd5b8235611bbe81611ac9565b91506020830135611b9781611ac9565b600181811c90821680611be257607f821691505b602082108103611c0057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561079d5761079d611c06565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761079d5761079d611c06565b5f82611d1b57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561079d5761079d611c06565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d57575f80fd5b8151611b2281611ac9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611db05784516001600160a01b031683529383019391830191600101611d8b565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611de3575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204eef689d6b1f56cd790a5828525638ca7e9c6b45e144b79de887ed2b43d521ff64736f6c63430008140033
Deployed Bytecode Sourcemap
31720:9932:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9419:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11652:194;;;;;;;;;;-1:-1:-1;11652:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11652:194:0;1023:187:1;32496:63:0;;;;;;;;;;-1:-1:-1;32496:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31759:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31759:51:0;1467:230:1;10539:108:0;;;;;;;;;;-1:-1:-1;10627:12:0;;10539:108;;;1848:25:1;;;1836:2;1821:18;10539:108:0;1702:177:1;32395:33:0;;;;;;;;;;;;;;;;12328:529;;;;;;;;;;-1:-1:-1;12328:529:0;;;;;:::i;:::-;;:::i;10381:93::-;;;;;;;;;;-1:-1:-1;10381:93:0;;10464:2;2487:36:1;;2475:2;2460:18;10381:93:0;2345:184:1;32358:30:0;;;;;;;;;;;;;;;;13266:290;;;;;;;;;;-1:-1:-1;13266:290:0;;;;;:::i;:::-;;:::i;31817:38::-;;;;;;;;;;;;;;;35885:126;;;;;;;;;;-1:-1:-1;35885:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35975:28:0;35951:4;35975:28;;;:19;:28;;;;;;;;;35885:126;32249:28;;;;;;;;;;;;;;;;32103:31;;;;;;;;;;-1:-1:-1;32103:31:0;;;;;;;;;;;34888:112;;;;;;;;;;;;;:::i;:::-;;10710:143;;;;;;;;;;-1:-1:-1;10710:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10827:18:0;10800:7;10827:18;;;;;;;;;;;;10710:143;2815:103;;;;;;;;;;;;;:::i;35008:169::-;;;;;;;;;;-1:-1:-1;35008:169:0;;;;;:::i;:::-;;:::i;31892:37::-;;;;;;;;;;;;;;;32177:26;;;;;;;;;;;;;;;;2164:87;;;;;;;;;;-1:-1:-1;2237:6:0;;-1:-1:-1;;;;;2237:6:0;2164:87;;9638:104;;;;;;;;;;;;;:::i;35375:306::-;;;;;;;;;;-1:-1:-1;35375:306:0;;;;;:::i;:::-;;:::i;14059:475::-;;;;;;;;;;-1:-1:-1;14059:475:0;;;;;:::i;:::-;;:::i;11066:200::-;;;;;;;;;;-1:-1:-1;11066:200:0;;;;;:::i;:::-;;:::i;32568:57::-;;;;;;;;;;-1:-1:-1;32568:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32063:33;;;;;;;;;;-1:-1:-1;32063:33:0;;;;;;;;32284:27;;;;;;;;;;;;;;;;35185:182;;;;;;;;;;-1:-1:-1;35185:182:0;;;;;:::i;:::-;;:::i;31938:35::-;;;;;;;;;;;;;;;;32143:27;;;;;;;;;;;;;;;;11329:176;;;;;;;;;;-1:-1:-1;11329:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;11470:18:0;;;11443:7;11470:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11329:176;31980:43;;;;;;;;;;;;;;;32210:30;;;;;;;;;;;;;;;;3073:238;;;;;;;;;;-1:-1:-1;3073:238:0;;;;;:::i;:::-;;:::i;32318:31::-;;;;;;;;;;;;;;;;32030:24;;;;;;;;;;;;;;;;9419:100;9473:13;9506:5;9499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9419:100;:::o;11652:194::-;11760:4;11777:39;1086:10;11800:7;11809:6;11777:8;:39::i;:::-;-1:-1:-1;11834:4:0;11652:194;;;;;:::o;12328:529::-;12468:4;12485:36;12495:6;12503:9;12514:6;12485:9;:36::i;:::-;-1:-1:-1;;;;;12561:19:0;;12534:24;12561:19;;;:11;:19;;;;;;;;1086:10;12561:33;;;;;;;;12627:26;;;;12605:116;;;;-1:-1:-1;;;12605:116:0;;4143:2:1;12605:116:0;;;4125:21:1;4182:2;4162:18;;;4155:30;4221:34;4201:18;;;4194:62;-1:-1:-1;;;4272:18:1;;;4265:38;4320:19;;12605:116:0;;;;;;;;;12757:57;12766:6;1086:10;12807:6;12788:16;:25;12757:8;:57::i;:::-;-1:-1:-1;12845:4:0;;12328:529;-1:-1:-1;;;;12328:529:0:o;13266:290::-;1086:10;13379:4;13468:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13468:34:0;;;;;;;;;;13379:4;;13396:130;;13446:7;;13468:47;;13505:10;;13468:47;:::i;:::-;13396:8;:130::i;34888:112::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;34943:13:::1;:20:::0;;-1:-1:-1;;34974:18:0;;;;;34888:112::o;2815:103::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;2880:30:::1;2907:1;2880:18;:30::i;:::-;2815:103::o:0;35008:169::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35123:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35123:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35008:169::o;9638:104::-;9694:13;9727:7;9720:14;;;;;:::i;35375:306::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;35521:13:::1;-1:-1:-1::0;;;;;35513:21:0::1;:4;-1:-1:-1::0;;;;;35513:21:0::1;::::0;35491:128:::1;;;::::0;-1:-1:-1;;;35491:128:0;;5175:2:1;35491:128:0::1;::::0;::::1;5157:21:1::0;5214:2;5194:18;;;5187:30;5253:34;5233:18;;;5226:62;5324:27;5304:18;;;5297:55;5369:19;;35491:128:0::1;4973:421:1::0;35491:128:0::1;35632:41;35661:4;35667:5;35632:28;:41::i;:::-;35375:306:::0;;:::o;14059:475::-;1086:10;14177:4;14221:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14221:34:0;;;;;;;;;;14288:35;;;;14266:122;;;;-1:-1:-1;;;14266:122:0;;5601:2:1;14266:122:0;;;5583:21:1;5640:2;5620:18;;;5613:30;5679:34;5659:18;;;5652:62;-1:-1:-1;;;5730:18:1;;;5723:35;5775:19;;14266:122:0;5399:401:1;14266:122:0;14424:67;1086:10;14447:7;14475:15;14456:16;:34;14424:8;:67::i;:::-;-1:-1:-1;14522:4:0;;14059:475;-1:-1:-1;;;14059:475:0:o;11066:200::-;11177:4;11194:42;1086:10;11218:9;11229:6;11194:9;:42::i;35185:182::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35270:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;35270:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35325:34;;1163:41:1;;;35325:34:0::1;::::0;1136:18:1;35325:34:0::1;;;;;;;35185:182:::0;;:::o;3073:238::-;2237:6;;-1:-1:-1;;;;;2237:6:0;1086:10;2384:23;2376:68;;;;-1:-1:-1;;;2376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3176:22:0;::::1;3154:110;;;::::0;-1:-1:-1;;;3154:110:0;;6007:2:1;3154:110:0::1;::::0;::::1;5989:21:1::0;6046:2;6026:18;;;6019:30;6085:34;6065:18;;;6058:62;-1:-1:-1;;;6136:18:1;;;6129:36;6182:19;;3154:110:0::1;5805:402:1::0;3154:110:0::1;3275:28;3294:8;3275:18;:28::i;:::-;3073:238:::0;:::o;17842:380::-;-1:-1:-1;;;;;17978:19:0;;17970:68;;;;-1:-1:-1;;;17970:68:0;;6414:2:1;17970:68:0;;;6396:21:1;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;-1:-1:-1;;;6543:18:1;;;6536:34;6587:19;;17970:68:0;6212:400:1;17970:68:0;-1:-1:-1;;;;;18057:21:0;;18049:68;;;;-1:-1:-1;;;18049:68:0;;6819:2:1;18049:68:0;;;6801:21:1;6858:2;6838:18;;;6831:30;6897:34;6877:18;;;6870:62;-1:-1:-1;;;6948:18:1;;;6941:32;6990:19;;18049:68:0;6617:398:1;18049:68:0;-1:-1:-1;;;;;18130:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18182:32;;1848:25:1;;;18182:32:0;;1821:18:1;18182:32:0;;;;;;;17842:380;;;:::o;36019:3297::-;-1:-1:-1;;;;;36151:18:0;;36143:68;;;;-1:-1:-1;;;36143:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36230:16:0;;36222:64;;;;-1:-1:-1;;;36222:64:0;;;;;;;:::i;:::-;36303:6;36313:1;36303:11;36299:93;;36331:28;36347:4;36353:2;36357:1;36331:15;:28::i;:::-;36019:3297;;;:::o;36299:93::-;2237:6;;-1:-1:-1;;;;;36422:15:0;;;2237:6;;36422:15;;;;:45;;-1:-1:-1;2237:6:0;;-1:-1:-1;;;;;36454:13:0;;;2237:6;;36454:13;;36422:45;:78;;;;-1:-1:-1;;;;;;36484:16:0;;;;36422:78;:116;;;;-1:-1:-1;;;;;;36517:21:0;;36531:6;36517:21;;36422:116;:142;;;;-1:-1:-1;36556:8:0;;-1:-1:-1;;;36556:8:0;;;;36555:9;36422:142;36404:1433;;;36596:13;;;;36591:203;;-1:-1:-1;;;;;36660:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36689:23:0;;;;;;:19;:23;;;;;;;;36660:52;36630:148;;;;-1:-1:-1;;;36630:148:0;;8032:2:1;36630:148:0;;;8014:21:1;8071:2;8051:18;;;8044:30;-1:-1:-1;;;8090:18:1;;;8083:52;8152:18;;36630:148:0;7830:346:1;36630:148:0;-1:-1:-1;;;;;36832:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;36885:35:0;;;;;;:31;:35;;;;;;;;36884:36;36832:88;36810:1016;;;36995:20;;36985:6;:30;;36955:157;;;;-1:-1:-1;;;36955:157:0;;8383:2:1;36955:157:0;;;8365:21:1;8422:2;8402:18;;;8395:30;8461:34;8441:18;;;8434:62;-1:-1:-1;;;8512:18:1;;;8505:51;8573:19;;36955:157:0;8181:417:1;36955:157:0;37187:9;;-1:-1:-1;;;;;10827:18:0;;10800:7;10827:18;;;;;;;;;;;37161:22;;:6;:22;:::i;:::-;:35;;37131:128;;;;-1:-1:-1;;;37131:128:0;;8805:2:1;37131:128:0;;;8787:21:1;8844:2;8824:18;;;8817:30;-1:-1:-1;;;8863:18:1;;;8856:49;8922:18;;37131:128:0;8603:343:1;37131:128:0;36810:1016;;;-1:-1:-1;;;;;37318:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;37369:37:0;;;;;;:31;:37;;;;;;;;37368:38;37318:88;37296:530;;;37481:20;;37471:6;:30;;37441:158;;;;-1:-1:-1;;;37441:158:0;;9153:2:1;37441:158:0;;;9135:21:1;9192:2;9172:18;;;9165:30;9231:34;9211:18;;;9204:62;-1:-1:-1;;;9282:18:1;;;9275:52;9344:19;;37441:158:0;8951:418:1;37296:530:0;-1:-1:-1;;;;;37626:35:0;;;;;;:31;:35;;;;;;;;37621:205;;37738:9;;-1:-1:-1;;;;;10827:18:0;;10800:7;10827:18;;;;;;;;;;;37712:22;;:6;:22;:::i;:::-;:35;;37682:128;;;;-1:-1:-1;;;37682:128:0;;8805:2:1;37682:128:0;;;8787:21:1;8844:2;8824:18;;;8817:30;-1:-1:-1;;;8863:18:1;;;8856:49;8922:18;;37682:128:0;8603:343:1;37682:128:0;37898:4;37849:28;10827:18;;;;;;;;;;;37956;37932:42;;;;;;;38005:35;;-1:-1:-1;38029:11:0;;;;;;;38005:35;:61;;;;-1:-1:-1;38058:8:0;;-1:-1:-1;;;38058:8:0;;;;38057:9;38005:61;:110;;;;-1:-1:-1;;;;;;38084:31:0;;;;;;:25;:31;;;;;;;;38083:32;38005:110;:153;;;;-1:-1:-1;;;;;;38133:25:0;;;;;;:19;:25;;;;;;;;38132:26;38005:153;:194;;;;-1:-1:-1;;;;;;38176:23:0;;;;;;:19;:23;;;;;;;;38175:24;38005:194;37987:326;;;38226:8;:15;;-1:-1:-1;;;;38226:15:0;-1:-1:-1;;;38226:15:0;;;38258:10;:8;:10::i;:::-;38285:8;:16;;-1:-1:-1;;;;38285:16:0;;;37987:326;38341:8;;-1:-1:-1;;;;;38366:25:0;;38325:12;38366:25;;;:19;:25;;;;;;38341:8;-1:-1:-1;;;38341:8:0;;;;;38340:9;;38366:25;;:52;;-1:-1:-1;;;;;;38395:23:0;;;;;;:19;:23;;;;;;;;38366:52;38362:100;;;-1:-1:-1;38445:5:0;38362:100;38474:12;38505:7;38501:762;;;-1:-1:-1;;;;;38533:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;38582:1;38566:13;;:17;38533:50;38529:585;;;38638:3;38621:13;;38612:6;:22;;;;:::i;:::-;38611:30;;;;:::i;:::-;38604:37;;38710:13;;38690:16;;38683:4;:23;;;;:::i;:::-;38682:41;;;;:::i;:::-;38660:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;38785:13:0;;38769:12;;38762:19;;:4;:19;:::i;:::-;38761:37;;;;:::i;:::-;38742:15;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;38529:585:0;;-1:-1:-1;38529:585:0;;-1:-1:-1;;;;;38837:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;38887:1;38872:12;;:16;38837:51;38833:281;;;38942:3;38926:12;;38917:6;:21;;;;:::i;:::-;38916:29;;;;:::i;:::-;38909:36;;39013:12;;38994:15;;38987:4;:22;;;;:::i;:::-;38986:39;;;;:::i;:::-;38964:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;39086:12:0;;39071:11;;39064:18;;:4;:18;:::i;:::-;39063:35;;;;:::i;:::-;39044:15;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;38833:281:0;39134:8;;39130:91;;39163:42;39179:4;39193;39200;39163:15;:42::i;:::-;39237:14;39247:4;39237:14;;:::i;:::-;;;38501:762;39275:33;39291:4;39297:2;39301:6;39275:15;:33::i;:::-;36132:3184;;;;36019:3297;;;:::o;3471:191::-;3564:6;;;-1:-1:-1;;;;;3581:17:0;;;-1:-1:-1;;;;;;3581:17:0;;;;;;;3614:40;;3564:6;;;3581:17;3564:6;;3614:40;;3545:16;;3614:40;3534:128;3471:191;:::o;35689:188::-;-1:-1:-1;;;;;35772:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35772:39:0;;;;;;;;;;35829:40;;35772:39;;:31;35829:40;;;35689:188;;:::o;15024:770::-;-1:-1:-1;;;;;15164:20:0;;15156:70;;;;-1:-1:-1;;;15156:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15245:23:0;;15237:71;;;;-1:-1:-1;;;15237:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15405:17:0;;15381:21;15405:17;;;;;;;;;;;15455:23;;;;15433:111;;;;-1:-1:-1;;;15433:111:0;;10104:2:1;15433:111:0;;;10086:21:1;10143:2;10123:18;;;10116:30;10182:34;10162:18;;;10155:62;-1:-1:-1;;;10233:18:1;;;10226:36;10279:19;;15433:111:0;9902:402:1;15433:111:0;-1:-1:-1;;;;;15580:17:0;;;:9;:17;;;;;;;;;;;15600:22;;;15580:42;;15644:20;;;;;;;;:30;;15616:6;;15580:9;15644:30;;15616:6;;15644:30;:::i;:::-;;;;;;;;15709:9;-1:-1:-1;;;;;15692:35:0;15701:6;-1:-1:-1;;;;;15692:35:0;;15720:6;15692:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15692:35:0;;;;;;;;15145:649;15024:770;;;:::o;40180:1467::-;40263:4;40219:23;10827:18;;;;;;;;;;;40219:50;;40280:25;40329:15;;40308:18;;:36;;;;:::i;:::-;40280:64;-1:-1:-1;40355:12:0;40384:20;;;:46;;-1:-1:-1;40408:22:0;;40384:46;40380:85;;;40447:7;;;40180:1467::o;40380:85::-;40499:23;:18;40520:2;40499:23;:::i;:::-;40481:15;:41;40477:115;;;40557:23;:18;40578:2;40557:23;:::i;:::-;40539:41;;40477:115;40604:23;40717:1;40684:17;40649:18;;40631:15;:36;;;;:::i;:::-;40630:71;;;;:::i;:::-;:88;;;;:::i;:::-;40604:114;-1:-1:-1;40729:26:0;40758:33;40604:114;40758:15;:33;:::i;:::-;40729:62;-1:-1:-1;40832:21:0;40866:36;40729:62;40866:16;:36::i;:::-;40915:18;40936:41;40960:17;40936:21;:41;:::i;:::-;40915:62;;40990:22;41104:1;41083:18;;:22;;;;:::i;:::-;41062:44;;:17;:44;:::i;:::-;41029:15;;41016:28;;:10;:28;:::i;:::-;41015:92;;;;:::i;:::-;40990:117;-1:-1:-1;41120:23:0;41146:27;40990:117;41146:10;:27;:::i;:::-;41120:53;;41208:1;41190:15;:19;:42;;;;;41231:1;41213:15;:19;41190:42;41186:278;;;41249:46;41262:15;41279;41249:12;:46::i;:::-;41419:18;;41315:137;;;10511:25:1;;;10567:2;10552:18;;10545:34;;;10595:18;;;10588:34;;;;41315:137:0;;;;;;10499:2:1;41315:137:0;;;41186:278;41497:1;41476:18;:22;;;41509:15;:19;;;41555:84;;41563:12;-1:-1:-1;;;;;41555:26:0;;41603:21;;41555:84;;41497:1;41555:84;41603:21;41555:26;:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;40180:1467:0:o;39324:476::-;39414:16;;;39428:1;39414:16;;;;;;;;39390:21;;39414:16;;;;;;;;;;-1:-1:-1;39414:16:0;39390:40;;39459:4;39441;39446:1;39441:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39441:23:0;;;-1:-1:-1;;;;;39441:23:0;;;;;39485:15;-1:-1:-1;;;;;39485:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39475:4;39480:1;39475:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39475:32:0;;;-1:-1:-1;;;;;39475:32:0;;;;;39520:62;39537:4;39552:15;39570:11;39520:8;:62::i;:::-;39595:197;;-1:-1:-1;;;39595:197:0;;-1:-1:-1;;;;;39595:15:0;:66;;;;:197;;39676:11;;39702:1;;39719:4;;39746;;39766:15;;39595:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39379:421;39324:476;:::o;39808:364::-;39889:62;39906:4;39921:15;39939:11;39889:8;:62::i;:::-;39964:15;-1:-1:-1;;;;;39964:31:0;;40003:9;40036:4;40056:11;40082:1;40099;40116:7;2237:6;;-1:-1:-1;;;;;2237:6:0;;2164:87;40116:7;39964:200;;;;;;-1:-1:-1;;;;;;39964:200:0;;;-1:-1:-1;;;;;12707:15:1;;;39964:200:0;;;12689:34:1;12739:18;;;12732:34;;;;12782:18;;;12775:34;;;;12825:18;;;12818:34;12889:15;;;12868:19;;;12861:44;40138:15:0;12921:19:1;;;12914:35;12623:19;;39964:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39808:364;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;4350:127::-;4411:10;4406:3;4402:20;4399:1;4392:31;4442:4;4439:1;4432:15;4466:4;4463:1;4456:15;4482:125;4547:9;;;4568:10;;;4565:36;;;4581:18;;:::i;4612:356::-;4814:2;4796:21;;;4833:18;;;4826:30;4892:34;4887:2;4872:18;;4865:62;4959:2;4944:18;;4612:356::o;7020:401::-;7222:2;7204:21;;;7261:2;7241:18;;;7234:30;7300:34;7295:2;7280:18;;7273:62;-1:-1:-1;;;7366:2:1;7351:18;;7344:35;7411:3;7396:19;;7020:401::o;7426:399::-;7628:2;7610:21;;;7667:2;7647:18;;;7640:30;7706:34;7701:2;7686:18;;7679:62;-1:-1:-1;;;7772:2:1;7757:18;;7750:33;7815:3;7800:19;;7426:399::o;9374:168::-;9447:9;;;9478;;9495:15;;;9489:22;;9475:37;9465:71;;9516:18;;:::i;9547:217::-;9587:1;9613;9603:132;;9657:10;9652:3;9648:20;9645:1;9638:31;9692:4;9689:1;9682:15;9720:4;9717:1;9710:15;9603:132;-1:-1:-1;9749:9:1;;9547:217::o;9769:128::-;9836:9;;;9857:11;;;9854:37;;;9871:18;;:::i;10975:127::-;11036:10;11031:3;11027:20;11024:1;11017:31;11067:4;11064:1;11057:15;11091:4;11088:1;11081:15;11107:251;11177:6;11230:2;11218:9;11209:7;11205:23;11201:32;11198:52;;;11246:1;11243;11236:12;11198:52;11278:9;11272:16;11297:31;11322:5;11297:31;:::i;11363:980::-;11625:4;11673:3;11662:9;11658:19;11704:6;11693:9;11686:25;11730:2;11768:6;11763:2;11752:9;11748:18;11741:34;11811:3;11806:2;11795:9;11791:18;11784:31;11835:6;11870;11864:13;11901:6;11893;11886:22;11939:3;11928:9;11924:19;11917:26;;11978:2;11970:6;11966:15;11952:29;;11999:1;12009:195;12023:6;12020:1;12017:13;12009:195;;;12088:13;;-1:-1:-1;;;;;12084:39:1;12072:52;;12179:15;;;;12144:12;;;;12120:1;12038:9;12009:195;;;-1:-1:-1;;;;;;;12260:32:1;;;;12255:2;12240:18;;12233:60;-1:-1:-1;;;12324:3:1;12309:19;12302:35;12221:3;11363:980;-1:-1:-1;;;11363:980:1:o;12960:306::-;13048:6;13056;13064;13117:2;13105:9;13096:7;13092:23;13088:32;13085:52;;;13133:1;13130;13123:12;13085:52;13162:9;13156:16;13146:26;;13212:2;13201:9;13197:18;13191:25;13181:35;;13256:2;13245:9;13241:18;13235:25;13225:35;;12960:306;;;;;:::o
Swarm Source
ipfs://4eef689d6b1f56cd790a5828525638ca7e9c6b45e144b79de887ed2b43d521ff
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,660.68 | 0.0259 | $68.94 |
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.