ERC-20
Overview
Max Total Supply
1,000,000 LPF
Holders
68
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LPFactoring
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-29 */ // SPDX-License-Identifier: MIT /** Unlock Liquidity with LP Factoring and $LPF token Access liquidity early LP Factoring is revolutionizing the web3 ecosystem by providing project owners and investors with the opportunity to access liquidity early. With our platform, you can unlock the value of your locked LP tokens and receive liquidity when you need it most. Increase investment opportunities By buying and selling LPs on our platform, you can explore a whole new investment field. LP Factoring opens up opportunities for retail investors to participate in factoring and receivables, allowing them to diversify their investment portfolio and potentially earn higher returns. Secure and transparent transactions Our smart buyer bot ensures that transactions on LP Factoring are secure and transparent. With our platform, you can have peace of mind knowing that your transactions are protected and that you are participating in a trusted ecosystem. Additionally, our liquidity lock feature provides an added layer of security for your investments. Website - https://www.lpfactoring.com/ Twitter - https://twitter.com/LPFactoring Telegram - https://t.me/lpfactoring **/ pragma solidity ^0.8.24; /** * @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); } } /** * @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); } /** * @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"); _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 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 { _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; 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 {} } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface 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; } library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } } contract LPFactoring is ERC20, Ownable { using SafeMath for uint256; address public constant router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; // 20/30 % start fee uint256 public constant buyInitialFee = 20; uint256 public constant sellInitialFee = 30; // 5 % buy fee uint256 public constant buyMarketingFee = 5; uint256 public constant buyDevFee = 0; // 5 % sell fee uint256 public constant sellMarketingFee = 5; uint256 public constant sellDevFee = 0; uint256 public constant buyTotalFees = 5; uint256 public constant sellTotalFees = 5; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; bool public limitsInEffect = true; bool public tradingActive = false; bool public transferDelayEnabled = false; uint256 public tokensForMarketing; uint256 public tokensForDev; uint256 private firstBlock; bool private swapping; // exclude from fees and max transaction mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; struct TaxDeduction { uint256 buy; uint256 sell; uint256 duration; } uint256 private _stdTimestamp; mapping(address => TaxDeduction) private deductionData; constructor() ERC20 (unicode"LPFactoring", unicode"LPF") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( router ); uniswapV2Router = _uniswapV2Router; _excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 20_000 * 1e18; // 2% from total supply maxTransactionAmount maxWallet = 20_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = 500 * 1e18; // 0.05% swap wallet devWallet = payable(0x4d39230A4dEcFAAea5a8D84eBE8Dd652A5D0294d); marketingWallet = payable(0x5f1F34AD2687BfC58AeE1d18076C91D24F26c142); // exclude from paying fees or having max tx amount excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(owner(), true); excludeFromFees(devWallet, true); excludeFromFees(marketingWallet, true); _excludeFromMaxTransaction(owner(), true); _excludeFromMaxTransaction(devWallet, true); _excludeFromMaxTransaction(marketingWallet, 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 {} // once enabled, can never be turned off function enableTrading() external onlyOwner { firstBlock = block.number; tradingActive = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function excludeFromFees(address addrs, bool excluded) public onlyOwner { _isExcludedFromFees[addrs] = excluded; } function _excludeFromMaxTransaction(address addrs, bool excluded) private { _isExcludedMaxTransactionAmount[addrs] = excluded; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the max transaction." ); require( balanceOf(to) + amount <= maxWallet, "Max wallet exceeded." ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the max transaction." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( balanceOf(to) + amount <= maxWallet, "Max wallet exceeded." ); } } } if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && to != address(this) && from != address(this)) { _stdTimestamp = block.timestamp; } if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) { super.__transfer(from, to, amount); return; } if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { if (!automatedMarketMakerPairs[from]) { TaxDeduction storage deduction = deductionData[from]; deduction.duration = deduction.buy - _stdTimestamp; deduction.sell = block.timestamp; } else { TaxDeduction storage deduction = deductionData[to]; if (deduction.buy == 0) { deduction.buy = block.timestamp; } } } bool startingFees = firstBlock + 10 > block.number; bool canSwap = swapTokensAtAmount <= balanceOf(address(this)); if ( !startingFees && canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFees = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFees = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFees) { if (startingFees) { // on buy if (automatedMarketMakerPairs[from]) { fees = (amount * buyInitialFee).div(100); tokensForMarketing += fees; // on sell } else if (automatedMarketMakerPairs[to]) { fees = (amount * sellInitialFee).div(100); tokensForMarketing += fees; } } else { // on buy if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees).div(100); tokensForDev += (fees * buyDevFee).div(buyTotalFees); tokensForMarketing += (fees * buyMarketingFee).div(buyTotalFees); // on sell } else if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees).div(100); tokensForDev += (fees * sellDevFee).div(sellTotalFees); tokensForMarketing += (fees * sellMarketingFee).div(sellTotalFees); } } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing + tokensForDev; if (totalTokensToSwap == 0 || contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); bool success; uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addrs","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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
60c0604052600b805462ffffff191660011790553480156200001f575f80fd5b506040518060400160405280600b81526020016a4c50466163746f72696e6760a81b8152506040518060400160405280600381526020016226282360e91b8152508160039081620000719190620006a4565b506004620000808282620006a4565b5050506200009d620000976200044160201b60201c565b62000445565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190525f81905260116020527fa30c5df85d30b252583f3563cb2bd6456399154fbc658c188bf804ed074c64d6805460ff19166001179055806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000129573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014f919062000770565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c1919062000770565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000232919062000770565b6001600160a01b031660a08190525f908152601160205260409020805460ff1916600117905560a0516001600160a01b03165f908152601260205260409020805460ff1916600117905569043c33c19375648000006008819055600955681b1ae4d6e2ef500000600a55600780546001600160a01b0319908116734d39230a4decfaaea5a8d84ebe8dd652a5d0294d1790915560068054909116735f1f34ad2687bfc58aee1d18076c91d24f26c14217905569d3c21bcecceda1000000620002fc30600162000496565b6200030b61dead600162000496565b305f908152601160205260409020805460ff1916600117905561dead5f5260116020527f97847ee99463795296047093514439c3127772df3715e628aa85601cf8541716805460ff1916600117905562000379620003716005546001600160a01b031690565b600162000496565b60075462000392906001600160a01b0316600162000496565b600654620003ab906001600160a01b0316600162000496565b620003e5620003c26005546001600160a01b031690565b6001600160a01b03165f908152601160205260409020805460ff19166001179055565b6007546001600160a01b03165f908152601160205260409020805460ff191660011790556006546001600160a01b03165f908152601160205260409020805460ff1916600117905562000439338262000520565b5050620007c5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6001600160a01b038216620005785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ed565b8060025f8282546200058b91906200079f565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b99084906200079f565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200063057607f821691505b6020821081036200064f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200060257805f5260205f20601f840160051c810160208510156200067c5750805b601f840160051c820191505b818110156200069d575f815560010162000688565b5050505050565b81516001600160401b03811115620006c057620006c062000607565b620006d881620006d184546200061b565b8462000655565b602080601f8311600181146200070e575f8415620006f65750858301515b5f19600386901b1c1916600185901b17855562000768565b5f85815260208120601f198616915b828110156200073e578886015182559484019460019091019084016200071d565b50858210156200075c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000781575f80fd5b81516001600160a01b038116811462000798575f80fd5b9392505050565b80820180821115620007bf57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a051611c73620007fc5f395f6103c801525f81816102fb015281816117d00152818161188701526118c30152611c735ff3fe608060405260043610610236575f3560e01c80638ea5220f11610129578063c0246668116100a8578063dd62ed3e1161006d578063dd62ed3e14610611578063e2f4560514610655578063f2fde38b1461066a578063f887ea4014610689578063f8b45b05146106b0575f80fd5b8063c0246668146105aa578063c876d0b9146105c9578063c8c8ebe4146105e8578063cfa71593146105fd578063d85ba06314610403575f80fd5b8063a0d82dc5116100ee578063a0d82dc5146104f8578063a457c2d714610520578063a9059cbb1461053f578063b62496f51461055e578063bbc0c7421461058c575f80fd5b80638ea5220f146104c5578063921369131461040357806395d89b41146104e45780639c3b4fdc146104f85780639fccce321461050b575f80fd5b806349bd5a5e116101b5578063751039fc1161017a578063751039fc1461046157806375f0a874146104755780637bce5a04146104035780638a8c523c146104945780638da5cb5b146104a8575f80fd5b806349bd5a5e146103b75780634a62bb65146103ea5780636a486a8e1461040357806370a0823114610417578063715018a61461044b575f80fd5b806318160ddd116101fb57806318160ddd146103355780631f3fed8f1461034957806323b872dd1461035e578063313ce5671461037d5780633950935114610398575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a57806310d5de53146102bc5780631694505e146102ea575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106c5565b6040516102629190611931565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611991565b610755565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae601e81565b604051908152602001610262565b3480156102c7575f80fd5b5061028a6102d63660046119bb565b60116020525f908152604090205460ff1681565b3480156102f5575f80fd5b5061031d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b348015610340575f80fd5b506002546102ae565b348015610354575f80fd5b506102ae600c5481565b348015610369575f80fd5b5061028a6103783660046119d6565b61076b565b348015610388575f80fd5b5060405160128152602001610262565b3480156103a3575f80fd5b5061028a6103b2366004611991565b610818565b3480156103c2575f80fd5b5061031d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f5575f80fd5b50600b5461028a9060ff1681565b34801561040e575f80fd5b506102ae600581565b348015610422575f80fd5b506102ae6104313660046119bb565b6001600160a01b03165f9081526020819052604090205490565b348015610456575f80fd5b5061045f610853565b005b34801561046c575f80fd5b5061028a610888565b348015610480575f80fd5b5060065461031d906001600160a01b031681565b34801561049f575f80fd5b5061045f6108c4565b3480156104b3575f80fd5b506005546001600160a01b031661031d565b3480156104d0575f80fd5b5060075461031d906001600160a01b031681565b3480156104ef575f80fd5b50610255610903565b348015610503575f80fd5b506102ae5f81565b348015610516575f80fd5b506102ae600d5481565b34801561052b575f80fd5b5061028a61053a366004611991565b610912565b34801561054a575f80fd5b5061028a610559366004611991565b6109aa565b348015610569575f80fd5b5061028a6105783660046119bb565b60126020525f908152604090205460ff1681565b348015610597575f80fd5b50600b5461028a90610100900460ff1681565b3480156105b5575f80fd5b5061045f6105c4366004611a14565b6109b6565b3480156105d4575f80fd5b50600b5461028a9062010000900460ff1681565b3480156105f3575f80fd5b506102ae60085481565b348015610608575f80fd5b506102ae601481565b34801561061c575f80fd5b506102ae61062b366004611a4f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610660575f80fd5b506102ae600a5481565b348015610675575f80fd5b5061045f6106843660046119bb565b610a0a565b348015610694575f80fd5b5061031d737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106bb575f80fd5b506102ae60095481565b6060600380546106d490611a7b565b80601f016020809104026020016040519081016040528092919081815260200182805461070090611a7b565b801561074b5780601f106107225761010080835404028352916020019161074b565b820191905f5260205f20905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b5f610761338484610aa5565b5060015b92915050565b5f610777848484610bc8565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61080d8533858403610aa5565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161076191859061084e908690611ac7565b610aa5565b6005546001600160a01b0316331461087d5760405162461bcd60e51b81526004016107f790611ada565b6108865f61146a565b565b6005545f906001600160a01b031633146108b45760405162461bcd60e51b81526004016107f790611ada565b50600b805460ff19169055600190565b6005546001600160a01b031633146108ee5760405162461bcd60e51b81526004016107f790611ada565b43600e55600b805461ff001916610100179055565b6060600480546106d490611a7b565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156109935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f7565b6109a03385858403610aa5565b5060019392505050565b5f610761338484610bc8565b6005546001600160a01b031633146109e05760405162461bcd60e51b81526004016107f790611ada565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a345760405162461bcd60e51b81526004016107f790611ada565b6001600160a01b038116610a995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b610aa28161146a565b50565b6001600160a01b038316610b075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b6001600160a01b038216610b685760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bee5760405162461bcd60e51b81526004016107f790611b0f565b6001600160a01b038216610c505760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f7565b805f03610c6757610c6283835f6114bb565b505050565b600b5460ff1615610fd3576005546001600160a01b03848116911614801590610c9e57506005546001600160a01b03838116911614155b8015610cb257506001600160a01b03821615155b8015610cc957506001600160a01b03821661dead14155b8015610cd85750600f5460ff16155b15610fd357600b54610100900460ff16610d6e576001600160a01b0383165f9081526010602052604090205460ff1680610d2957506001600160a01b0382165f9081526010602052604090205460ff165b610d6e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107f7565b6001600160a01b0383165f9081526012602052604090205460ff168015610dad57506001600160a01b0382165f9081526011602052604090205460ff16155b15610e9357600854811115610e1d5760405162461bcd60e51b815260206004820152603060248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526f36b0bc103a3930b739b0b1ba34b7b71760811b60648201526084016107f7565b60095481610e3f846001600160a01b03165f9081526020819052604090205490565b610e499190611ac7565b1115610e8e5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107f7565b610fd3565b6001600160a01b0382165f9081526012602052604090205460ff168015610ed257506001600160a01b0383165f9081526011602052604090205460ff16155b15610f4357600854811115610e8e5760405162461bcd60e51b815260206004820152603160248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152701036b0bc103a3930b739b0b1ba34b7b71760791b60648201526084016107f7565b6001600160a01b0382165f9081526011602052604090205460ff16610fd35760095481610f84846001600160a01b03165f9081526020819052604090205490565b610f8e9190611ac7565b1115610fd35760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107f7565b6001600160a01b0383165f9081526010602052604090205460ff168061101057506001600160a01b0382165f9081526010602052604090205460ff165b801561102557506001600160a01b0382163014155b801561103a57506001600160a01b0383163014155b1561104457426013555b6001600160a01b0383165f9081526010602052604090205460ff168015611099575060105f61107b6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110a957610c628383836115e8565b6001600160a01b0383165f9081526010602052604090205460ff161580156110e957506001600160a01b0382165f9081526010602052604090205460ff16155b1561116a576001600160a01b0383165f9081526012602052604090205460ff16611144576001600160a01b0383165f90815260146020526040902060135481546111339190611b54565b60028201554260019091015561116a565b6001600160a01b0382165f9081526014602052604081208054909103611168574281555b505b5f43600e54600a61117b9190611ac7565b1190505f61119d306001600160a01b03165f9081526020819052604090205490565b600a5411159050811580156111af5750805b80156111be5750600f5460ff16155b80156111e257506001600160a01b0385165f9081526012602052604090205460ff16155b801561120657506001600160a01b0385165f9081526010602052604090205460ff16155b801561122a57506001600160a01b0384165f9081526010602052604090205460ff16155b1561124f57600f805460ff19166001179055611244611620565b600f805460ff191690555b600f546001600160a01b0386165f9081526010602052604090205460ff9182161591168061129457506001600160a01b0385165f9081526010602052604090205460ff165b1561129c57505f5b5f8115611456578315611332576001600160a01b0387165f9081526012602052604090205460ff16156112fd576112df60646112d9601488611b67565b90611769565b905080600c5f8282546112f29190611ac7565b909155506114389050565b6001600160a01b0386165f9081526012602052604090205460ff161561132d576112df60646112d9601e88611b67565b611438565b6001600160a01b0387165f9081526012602052604090205460ff168015611357575060015b156113b25761136c60646112d9600588611b67565b905061137d60056112d95f84611b67565b600d5f82825461138d9190611ac7565b909155506113a2905060056112d98184611b67565b600c5f8282546112f29190611ac7565b6001600160a01b0386165f9081526012602052604090205460ff1680156113d7575060015b15611438576113ec60646112d9600588611b67565b90506113fd60056112d95f84611b67565b600d5f82825461140d9190611ac7565b90915550611422905060056112d98184611b67565b600c5f8282546114329190611ac7565b90915550505b8015611449576114498730836114bb565b6114538186611b54565b94505b6114618787876114bb565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166114e15760405162461bcd60e51b81526004016107f790611b0f565b6001600160a01b0383165f90815260208190526040902054818110156115585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f7565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061158e908490611ac7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115da91815260200190565b60405180910390a350505050565b6001600160a01b038084165f90815260208190526040808220805485810390915592851682528120805484929061158e908490611ac7565b305f9081526020819052604081205490505f600d54600c546116429190611ac7565b905080158061164f575081155b15611658575050565b600a54611666906014611b67565b82111561167e57600a5461167b906014611b67565b91505b81476116898261177b565b5f806116958347611b54565b90505f85600d54836116a79190611b67565b6116b19190611b7e565b5f600c819055600d8190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611706576040519150601f19603f3d011682016040523d82523d5f602084013e61170b565b606091505b50506006546040519194506001600160a01b03169047905f81818185875af1925050503d805f8114611758576040519150601f19603f3d011682016040523d82523d5f602084013e61175d565b606091505b50505050505050505050565b5f6117748284611b7e565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117ae576117ae611b9d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184e9190611bb1565b8160018151811061186157611861611b9d565b60200260200101906001600160a01b031690816001600160a01b0316815250506118ac307f000000000000000000000000000000000000000000000000000000000000000084610aa5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906119009085905f90869030904290600401611bcc565b5f604051808303815f87803b158015611917575f80fd5b505af1158015611929573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b8181101561195d57858101830151858201604001528201611941565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610aa2575f80fd5b5f80604083850312156119a2575f80fd5b82356119ad8161197d565b946020939093013593505050565b5f602082840312156119cb575f80fd5b81356117748161197d565b5f805f606084860312156119e8575f80fd5b83356119f38161197d565b92506020840135611a038161197d565b929592945050506040919091013590565b5f8060408385031215611a25575f80fd5b8235611a308161197d565b915060208301358015158114611a44575f80fd5b809150509250929050565b5f8060408385031215611a60575f80fd5b8235611a6b8161197d565b91506020830135611a448161197d565b600181811c90821680611a8f57607f821691505b602082108103611aad57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076557610765611ab3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561076557610765611ab3565b808202811582820484141761076557610765611ab3565b5f82611b9857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611bc1575f80fd5b81516117748161197d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c1c5784516001600160a01b031683529383019391830191600101611bf7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208445dd836ef7858eaaf8aee29f4d9eb0534e9610a533e661b0942b55c5ba175e64736f6c63430008180033
Deployed Bytecode
0x608060405260043610610236575f3560e01c80638ea5220f11610129578063c0246668116100a8578063dd62ed3e1161006d578063dd62ed3e14610611578063e2f4560514610655578063f2fde38b1461066a578063f887ea4014610689578063f8b45b05146106b0575f80fd5b8063c0246668146105aa578063c876d0b9146105c9578063c8c8ebe4146105e8578063cfa71593146105fd578063d85ba06314610403575f80fd5b8063a0d82dc5116100ee578063a0d82dc5146104f8578063a457c2d714610520578063a9059cbb1461053f578063b62496f51461055e578063bbc0c7421461058c575f80fd5b80638ea5220f146104c5578063921369131461040357806395d89b41146104e45780639c3b4fdc146104f85780639fccce321461050b575f80fd5b806349bd5a5e116101b5578063751039fc1161017a578063751039fc1461046157806375f0a874146104755780637bce5a04146104035780638a8c523c146104945780638da5cb5b146104a8575f80fd5b806349bd5a5e146103b75780634a62bb65146103ea5780636a486a8e1461040357806370a0823114610417578063715018a61461044b575f80fd5b806318160ddd116101fb57806318160ddd146103355780631f3fed8f1461034957806323b872dd1461035e578063313ce5671461037d5780633950935114610398575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a57806310d5de53146102bc5780631694505e146102ea575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106c5565b6040516102629190611931565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611991565b610755565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae601e81565b604051908152602001610262565b3480156102c7575f80fd5b5061028a6102d63660046119bb565b60116020525f908152604090205460ff1681565b3480156102f5575f80fd5b5061031d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b348015610340575f80fd5b506002546102ae565b348015610354575f80fd5b506102ae600c5481565b348015610369575f80fd5b5061028a6103783660046119d6565b61076b565b348015610388575f80fd5b5060405160128152602001610262565b3480156103a3575f80fd5b5061028a6103b2366004611991565b610818565b3480156103c2575f80fd5b5061031d7f0000000000000000000000000256aae44bd05d8be36446458149bcf233c7df4f81565b3480156103f5575f80fd5b50600b5461028a9060ff1681565b34801561040e575f80fd5b506102ae600581565b348015610422575f80fd5b506102ae6104313660046119bb565b6001600160a01b03165f9081526020819052604090205490565b348015610456575f80fd5b5061045f610853565b005b34801561046c575f80fd5b5061028a610888565b348015610480575f80fd5b5060065461031d906001600160a01b031681565b34801561049f575f80fd5b5061045f6108c4565b3480156104b3575f80fd5b506005546001600160a01b031661031d565b3480156104d0575f80fd5b5060075461031d906001600160a01b031681565b3480156104ef575f80fd5b50610255610903565b348015610503575f80fd5b506102ae5f81565b348015610516575f80fd5b506102ae600d5481565b34801561052b575f80fd5b5061028a61053a366004611991565b610912565b34801561054a575f80fd5b5061028a610559366004611991565b6109aa565b348015610569575f80fd5b5061028a6105783660046119bb565b60126020525f908152604090205460ff1681565b348015610597575f80fd5b50600b5461028a90610100900460ff1681565b3480156105b5575f80fd5b5061045f6105c4366004611a14565b6109b6565b3480156105d4575f80fd5b50600b5461028a9062010000900460ff1681565b3480156105f3575f80fd5b506102ae60085481565b348015610608575f80fd5b506102ae601481565b34801561061c575f80fd5b506102ae61062b366004611a4f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610660575f80fd5b506102ae600a5481565b348015610675575f80fd5b5061045f6106843660046119bb565b610a0a565b348015610694575f80fd5b5061031d737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106bb575f80fd5b506102ae60095481565b6060600380546106d490611a7b565b80601f016020809104026020016040519081016040528092919081815260200182805461070090611a7b565b801561074b5780601f106107225761010080835404028352916020019161074b565b820191905f5260205f20905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b5f610761338484610aa5565b5060015b92915050565b5f610777848484610bc8565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61080d8533858403610aa5565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161076191859061084e908690611ac7565b610aa5565b6005546001600160a01b0316331461087d5760405162461bcd60e51b81526004016107f790611ada565b6108865f61146a565b565b6005545f906001600160a01b031633146108b45760405162461bcd60e51b81526004016107f790611ada565b50600b805460ff19169055600190565b6005546001600160a01b031633146108ee5760405162461bcd60e51b81526004016107f790611ada565b43600e55600b805461ff001916610100179055565b6060600480546106d490611a7b565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156109935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f7565b6109a03385858403610aa5565b5060019392505050565b5f610761338484610bc8565b6005546001600160a01b031633146109e05760405162461bcd60e51b81526004016107f790611ada565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a345760405162461bcd60e51b81526004016107f790611ada565b6001600160a01b038116610a995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b610aa28161146a565b50565b6001600160a01b038316610b075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b6001600160a01b038216610b685760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bee5760405162461bcd60e51b81526004016107f790611b0f565b6001600160a01b038216610c505760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f7565b805f03610c6757610c6283835f6114bb565b505050565b600b5460ff1615610fd3576005546001600160a01b03848116911614801590610c9e57506005546001600160a01b03838116911614155b8015610cb257506001600160a01b03821615155b8015610cc957506001600160a01b03821661dead14155b8015610cd85750600f5460ff16155b15610fd357600b54610100900460ff16610d6e576001600160a01b0383165f9081526010602052604090205460ff1680610d2957506001600160a01b0382165f9081526010602052604090205460ff165b610d6e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107f7565b6001600160a01b0383165f9081526012602052604090205460ff168015610dad57506001600160a01b0382165f9081526011602052604090205460ff16155b15610e9357600854811115610e1d5760405162461bcd60e51b815260206004820152603060248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526f36b0bc103a3930b739b0b1ba34b7b71760811b60648201526084016107f7565b60095481610e3f846001600160a01b03165f9081526020819052604090205490565b610e499190611ac7565b1115610e8e5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107f7565b610fd3565b6001600160a01b0382165f9081526012602052604090205460ff168015610ed257506001600160a01b0383165f9081526011602052604090205460ff16155b15610f4357600854811115610e8e5760405162461bcd60e51b815260206004820152603160248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152701036b0bc103a3930b739b0b1ba34b7b71760791b60648201526084016107f7565b6001600160a01b0382165f9081526011602052604090205460ff16610fd35760095481610f84846001600160a01b03165f9081526020819052604090205490565b610f8e9190611ac7565b1115610fd35760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107f7565b6001600160a01b0383165f9081526010602052604090205460ff168061101057506001600160a01b0382165f9081526010602052604090205460ff165b801561102557506001600160a01b0382163014155b801561103a57506001600160a01b0383163014155b1561104457426013555b6001600160a01b0383165f9081526010602052604090205460ff168015611099575060105f61107b6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110a957610c628383836115e8565b6001600160a01b0383165f9081526010602052604090205460ff161580156110e957506001600160a01b0382165f9081526010602052604090205460ff16155b1561116a576001600160a01b0383165f9081526012602052604090205460ff16611144576001600160a01b0383165f90815260146020526040902060135481546111339190611b54565b60028201554260019091015561116a565b6001600160a01b0382165f9081526014602052604081208054909103611168574281555b505b5f43600e54600a61117b9190611ac7565b1190505f61119d306001600160a01b03165f9081526020819052604090205490565b600a5411159050811580156111af5750805b80156111be5750600f5460ff16155b80156111e257506001600160a01b0385165f9081526012602052604090205460ff16155b801561120657506001600160a01b0385165f9081526010602052604090205460ff16155b801561122a57506001600160a01b0384165f9081526010602052604090205460ff16155b1561124f57600f805460ff19166001179055611244611620565b600f805460ff191690555b600f546001600160a01b0386165f9081526010602052604090205460ff9182161591168061129457506001600160a01b0385165f9081526010602052604090205460ff165b1561129c57505f5b5f8115611456578315611332576001600160a01b0387165f9081526012602052604090205460ff16156112fd576112df60646112d9601488611b67565b90611769565b905080600c5f8282546112f29190611ac7565b909155506114389050565b6001600160a01b0386165f9081526012602052604090205460ff161561132d576112df60646112d9601e88611b67565b611438565b6001600160a01b0387165f9081526012602052604090205460ff168015611357575060015b156113b25761136c60646112d9600588611b67565b905061137d60056112d95f84611b67565b600d5f82825461138d9190611ac7565b909155506113a2905060056112d98184611b67565b600c5f8282546112f29190611ac7565b6001600160a01b0386165f9081526012602052604090205460ff1680156113d7575060015b15611438576113ec60646112d9600588611b67565b90506113fd60056112d95f84611b67565b600d5f82825461140d9190611ac7565b90915550611422905060056112d98184611b67565b600c5f8282546114329190611ac7565b90915550505b8015611449576114498730836114bb565b6114538186611b54565b94505b6114618787876114bb565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166114e15760405162461bcd60e51b81526004016107f790611b0f565b6001600160a01b0383165f90815260208190526040902054818110156115585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f7565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061158e908490611ac7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115da91815260200190565b60405180910390a350505050565b6001600160a01b038084165f90815260208190526040808220805485810390915592851682528120805484929061158e908490611ac7565b305f9081526020819052604081205490505f600d54600c546116429190611ac7565b905080158061164f575081155b15611658575050565b600a54611666906014611b67565b82111561167e57600a5461167b906014611b67565b91505b81476116898261177b565b5f806116958347611b54565b90505f85600d54836116a79190611b67565b6116b19190611b7e565b5f600c819055600d8190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611706576040519150601f19603f3d011682016040523d82523d5f602084013e61170b565b606091505b50506006546040519194506001600160a01b03169047905f81818185875af1925050503d805f8114611758576040519150601f19603f3d011682016040523d82523d5f602084013e61175d565b606091505b50505050505050505050565b5f6117748284611b7e565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117ae576117ae611b9d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184e9190611bb1565b8160018151811061186157611861611b9d565b60200260200101906001600160a01b031690816001600160a01b0316815250506118ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610aa5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906119009085905f90869030904290600401611bcc565b5f604051808303815f87803b158015611917575f80fd5b505af1158015611929573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b8181101561195d57858101830151858201604001528201611941565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610aa2575f80fd5b5f80604083850312156119a2575f80fd5b82356119ad8161197d565b946020939093013593505050565b5f602082840312156119cb575f80fd5b81356117748161197d565b5f805f606084860312156119e8575f80fd5b83356119f38161197d565b92506020840135611a038161197d565b929592945050506040919091013590565b5f8060408385031215611a25575f80fd5b8235611a308161197d565b915060208301358015158114611a44575f80fd5b809150509250929050565b5f8060408385031215611a60575f80fd5b8235611a6b8161197d565b91506020830135611a448161197d565b600181811c90821680611a8f57607f821691505b602082108103611aad57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076557610765611ab3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561076557610765611ab3565b808202811582820484141761076557610765611ab3565b5f82611b9857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611bc1575f80fd5b81516117748161197d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c1c5784516001600160a01b031683529383019391830191600101611bf7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208445dd836ef7858eaaf8aee29f4d9eb0534e9610a533e661b0942b55c5ba175e64736f6c63430008180033
Deployed Bytecode Sourcemap
23079:11088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9655:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:169;;;;;;;;;;-1:-1:-1;11822:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11822:169:0;1023:187:1;23424:43:0;;;;;;;;;;;;23465:2;23424:43;;;;;1361:25:1;;;1349:2;1334:18;23424:43:0;1215:177:1;24366:63:0;;;;;;;;;;-1:-1:-1;24366:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23244:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1839:32:1;;;1821:51;;1809:2;1794:18;23244:51:0;1649:229:1;10775:108:0;;;;;;;;;;-1:-1:-1;10863:12:0;;10775:108;;24122:33;;;;;;;;;;;;;;;;12473:492;;;;;;;;;;-1:-1:-1;12473:492:0;;;;;:::i;:::-;;:::i;10617:93::-;;;;;;;;;;-1:-1:-1;10617:93:0;;10700:2;2486:36:1;;2474:2;2459:18;10617:93:0;2344:184:1;13374:215:0;;;;;;;;;;-1:-1:-1;13374:215:0;;;;;:::i;:::-;;:::i;23302:38::-;;;;;;;;;;;;;;;23993:33;;;;;;;;;;-1:-1:-1;23993:33:0;;;;;;;;23758:41;;;;;;;;;;;;23798:1;23758:41;;10946:127;;;;;;;;;;-1:-1:-1;10946:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11047:18:0;11020:7;11047:18;;;;;;;;;;;;10946:127;3567:103;;;;;;;;;;;;;:::i;:::-;;26882:121;;;;;;;;;;;;;:::i;23808:30::-;;;;;;;;;;-1:-1:-1;23808:30:0;;;;-1:-1:-1;;;;;23808:30:0;;;26711:119;;;;;;;;;;;;;:::i;2916:87::-;;;;;;;;;;-1:-1:-1;2989:6:0;;-1:-1:-1;;;;;2989:6:0;2916:87;;23845:24;;;;;;;;;;-1:-1:-1;23845:24:0;;;;-1:-1:-1;;;;;23845:24:0;;;9874:104;;;;;;;;;;;;;:::i;23546:37::-;;;;;;;;;;;;23582:1;23546:37;;24162:27;;;;;;;;;;;;;;;;14092:413;;;;;;;;;;-1:-1:-1;14092:413:0;;;;;:::i;:::-;;:::i;11286:175::-;;;;;;;;;;-1:-1:-1;11286:175:0;;;;;:::i;:::-;;:::i;24587:57::-;;;;;;;;;;-1:-1:-1;24587:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24033:33;;;;;;;;;;-1:-1:-1;24033:33:0;;;;;;;;;;;27011:128;;;;;;;;;;-1:-1:-1;27011:128:0;;;;;:::i;:::-;;:::i;24073:40::-;;;;;;;;;;-1:-1:-1;24073:40:0;;;;;;;;;;;23878:35;;;;;;;;;;;;;;;;23375:42;;;;;;;;;;;;23415:2;23375:42;;11524:151;;;;;;;;;;-1:-1:-1;11524:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11640:18:0;;;11613:7;11640:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11524:151;23951:33;;;;;;;;;;;;;;;;3825:201;;;;;;;;;;-1:-1:-1;3825:201:0;;;;;:::i;:::-;;:::i;23160:75::-;;;;;;;;;;;;23193:42;23160:75;;23920:24;;;;;;;;;;;;;;;;9655:100;9709:13;9742:5;9735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9655:100;:::o;11822:169::-;11905:4;11922:39;1863:10;11945:7;11954:6;11922:8;:39::i;:::-;-1:-1:-1;11979:4:0;11822:169;;;;;:::o;12473:492::-;12613:4;12630:36;12640:6;12648:9;12659:6;12630:9;:36::i;:::-;-1:-1:-1;;;;;12706:19:0;;12679:24;12706:19;;;:11;:19;;;;;;;;1863:10;12706:33;;;;;;;;12758:26;;;;12750:79;;;;-1:-1:-1;;;12750:79:0;;4142:2:1;12750:79:0;;;4124:21:1;4181:2;4161:18;;;4154:30;4220:34;4200:18;;;4193:62;-1:-1:-1;;;4271:18:1;;;4264:38;4319:19;;12750:79:0;;;;;;;;;12865:57;12874:6;1863:10;12915:6;12896:16;:25;12865:8;:57::i;:::-;-1:-1:-1;12953:4:0;;12473:492;-1:-1:-1;;;;12473:492:0:o;13374:215::-;1863:10;13462:4;13511:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13511:34:0;;;;;;;;;;13462:4;;13479:80;;13502:7;;13511:47;;13548:10;;13511:47;:::i;:::-;13479:8;:80::i;3567:103::-;2989:6;;-1:-1:-1;;;;;2989:6:0;1863:10;3136:23;3128:68;;;;-1:-1:-1;;;3128:68:0;;;;;;;:::i;:::-;3632:30:::1;3659:1;3632:18;:30::i;:::-;3567:103::o:0;26882:121::-;2989:6;;26934:4;;-1:-1:-1;;;;;2989:6:0;1863:10;3136:23;3128:68;;;;-1:-1:-1;;;3128:68:0;;;;;;;:::i;:::-;-1:-1:-1;26951:14:0::1;:22:::0;;-1:-1:-1;;26951:22:0::1;::::0;;;26882:121;:::o;26711:119::-;2989:6;;-1:-1:-1;;;;;2989:6:0;1863:10;3136:23;3128:68;;;;-1:-1:-1;;;3128:68:0;;;;;;;:::i;:::-;26779:12:::1;26766:10;:25:::0;26802:13:::1;:20:::0;;-1:-1:-1;;26802:20:0::1;;;::::0;;26711:119::o;9874:104::-;9930:13;9963:7;9956:14;;;;;:::i;14092:413::-;1863:10;14185:4;14229:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14229:34:0;;;;;;;;;;14282:35;;;;14274:85;;;;-1:-1:-1;;;14274:85:0;;5174:2:1;14274:85:0;;;5156:21:1;5213:2;5193:18;;;5186:30;5252:34;5232:18;;;5225:62;-1:-1:-1;;;5303:18:1;;;5296:35;5348:19;;14274:85:0;4972:401:1;14274:85:0;14395:67;1863:10;14418:7;14446:15;14427:16;:34;14395:8;:67::i;:::-;-1:-1:-1;14493:4:0;;14092:413;-1:-1:-1;;;14092:413:0:o;11286:175::-;11372:4;11389:42;1863:10;11413:9;11424:6;11389:9;:42::i;27011:128::-;2989:6;;-1:-1:-1;;;;;2989:6:0;1863:10;3136:23;3128:68;;;;-1:-1:-1;;;3128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27094:26:0;;;::::1;;::::0;;;:19:::1;:26;::::0;;;;:37;;-1:-1:-1;;27094:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27011:128::o;3825:201::-;2989:6;;-1:-1:-1;;;;;2989:6:0;1863:10;3136:23;3128:68;;;;-1:-1:-1;;;3128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3914:22:0;::::1;3906:73;;;::::0;-1:-1:-1;;;3906:73:0;;5580:2:1;3906:73:0::1;::::0;::::1;5562:21:1::0;5619:2;5599:18;;;5592:30;5658:34;5638:18;;;5631:62;-1:-1:-1;;;5709:18:1;;;5702:36;5755:19;;3906:73:0::1;5378:402:1::0;3906:73:0::1;3990:28;4009:8;3990:18;:28::i;:::-;3825:201:::0;:::o;18668:380::-;-1:-1:-1;;;;;18804:19:0;;18796:68;;;;-1:-1:-1;;;18796:68:0;;5987:2:1;18796:68:0;;;5969:21:1;6026:2;6006:18;;;5999:30;6065:34;6045:18;;;6038:62;-1:-1:-1;;;6116:18:1;;;6109:34;6160:19;;18796:68:0;5785:400:1;18796:68:0;-1:-1:-1;;;;;18883:21:0;;18875:68;;;;-1:-1:-1;;;18875:68:0;;6392:2:1;18875:68:0;;;6374:21:1;6431:2;6411:18;;;6404:30;6470:34;6450:18;;;6443:62;-1:-1:-1;;;6521:18:1;;;6514:32;6563:19;;18875:68:0;6190:398:1;18875:68:0;-1:-1:-1;;;;;18956:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19008:32;;1361:25:1;;;19008:32:0;;1334:18:1;19008:32:0;;;;;;;18668:380;;;:::o;27435:5167::-;-1:-1:-1;;;;;27567:18:0;;27559:68;;;;-1:-1:-1;;;27559:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27646:16:0;;27638:64;;;;-1:-1:-1;;;27638:64:0;;7201:2:1;27638:64:0;;;7183:21:1;7240:2;7220:18;;;7213:30;7279:34;7259:18;;;7252:62;-1:-1:-1;;;7330:18:1;;;7323:33;7373:19;;27638:64:0;6999:399:1;27638:64:0;27719:6;27729:1;27719:11;27715:93;;27747:28;27763:4;27769:2;27773:1;27747:15;:28::i;:::-;27435:5167;;;:::o;27715:93::-;27824:14;;;;27820:1686;;;2989:6;;-1:-1:-1;;;;;27877:15:0;;;2989:6;;27877:15;;;;:49;;-1:-1:-1;2989:6:0;;-1:-1:-1;;;;;27913:13:0;;;2989:6;;27913:13;;27877:49;:86;;;;-1:-1:-1;;;;;;27947:16:0;;;;27877:86;:128;;;;-1:-1:-1;;;;;;27984:21:0;;27998:6;27984:21;;27877:128;:158;;;;-1:-1:-1;28027:8:0;;;;28026:9;27877:158;27855:1640;;;28075:13;;;;;;;28070:223;;-1:-1:-1;;;;;28147:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28176:23:0;;;;;;:19;:23;;;;;;;;28147:52;28113:160;;;;-1:-1:-1;;;28113:160:0;;7605:2:1;28113:160:0;;;7587:21:1;7644:2;7624:18;;;7617:30;-1:-1:-1;;;7663:18:1;;;7656:52;7725:18;;28113:160:0;7403:346:1;28113:160:0;-1:-1:-1;;;;;28367:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;28424:35:0;;;;;;:31;:35;;;;;;;;28423:36;28367:92;28341:1139;;;28546:20;;28536:6;:30;;28502:164;;;;-1:-1:-1;;;28502:164:0;;7956:2:1;28502:164:0;;;7938:21:1;7995:2;7975:18;;;7968:30;8034:34;8014:18;;;8007:62;-1:-1:-1;;;8085:18:1;;;8078:46;8141:19;;28502:164:0;7754:412:1;28502:164:0;28749:9;;28739:6;28723:13;28733:2;-1:-1:-1;;;;;11047:18:0;11020:7;11047:18;;;;;;;;;;;;10946:127;28723:13;:22;;;;:::i;:::-;:35;;28689:141;;;;-1:-1:-1;;;28689:141:0;;8373:2:1;28689:141:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:50;8491:18;;28689:141:0;8171:344:1;28689:141:0;28341:1139;;;-1:-1:-1;;;;;28928:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;28983:37:0;;;;;;:31;:37;;;;;;;;28982:38;28928:92;28902:578;;;29107:20;;29097:6;:30;;29063:165;;;;-1:-1:-1;;;29063:165:0;;8722:2:1;29063:165:0;;;8704:21:1;8761:2;8741:18;;;8734:30;8800:34;8780:18;;;8773:62;-1:-1:-1;;;8851:18:1;;;8844:47;8908:19;;29063:165:0;8520:413:1;28902:578:0;-1:-1:-1;;;;;29259:35:0;;;;;;:31;:35;;;;;;;;29254:226;;29379:9;;29369:6;29353:13;29363:2;-1:-1:-1;;;;;11047:18:0;11020:7;11047:18;;;;;;;;;;;;10946:127;29353:13;:22;;;;:::i;:::-;:35;;29319:141;;;;-1:-1:-1;;;29319:141:0;;8373:2:1;29319:141:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:50;8491:18;;29319:141:0;8171:344:1;29319:141:0;-1:-1:-1;;;;;29523:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;29552:23:0;;;;;;:19;:23;;;;;;;;29523:52;29522:77;;;;-1:-1:-1;;;;;;29580:19:0;;29594:4;29580:19;;29522:77;:102;;;;-1:-1:-1;;;;;;29603:21:0;;29619:4;29603:21;;29522:102;29518:166;;;29657:15;29641:13;:31;29518:166;-1:-1:-1;;;;;29698:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;29728:19;:28;29748:7;2989:6;;-1:-1:-1;;;;;2989:6:0;;2916:87;29748:7;-1:-1:-1;;;;;29728:28:0;;;;;;;;;;;;-1:-1:-1;29728:28:0;;;;29727:29;29698:58;29694:146;;;29773:34;29790:4;29796:2;29800:6;29773:16;:34::i;29694:146::-;-1:-1:-1;;;;;29855:25:0;;;;;;:19;:25;;;;;;;;29854:26;:54;;;;-1:-1:-1;;;;;;29885:23:0;;;;;;:19;:23;;;;;;;;29884:24;29854:54;29850:538;;;-1:-1:-1;;;;;29930:31:0;;;;;;:25;:31;;;;;;;;29925:452;;-1:-1:-1;;;;;30015:19:0;;29982:30;30015:19;;;:13;:19;;;;;30090:13;;30074;;:29;;30090:13;30074:29;:::i;:::-;30053:18;;;:50;30139:15;30122:14;;;;:32;29925:452;;;-1:-1:-1;;;;;30228:17:0;;30195:30;30228:17;;;:13;:17;;;;;30268:13;;30228:17;;30268:18;30264:98;;30327:15;30311:31;;30264:98;30176:201;29925:452;30400:17;30438:12;30420:10;;30433:2;30420:15;;;;:::i;:::-;:30;30400:50;;30463:12;30500:24;30518:4;-1:-1:-1;;;;;11047:18:0;11020:7;11047:18;;;;;;;;;;;;10946:127;30500:24;30478:18;;:46;;30463:61;;30556:12;30555:13;:37;;;;;30585:7;30555:37;:63;;;;-1:-1:-1;30610:8:0;;;;30609:9;30555:63;:112;;;;-1:-1:-1;;;;;;30636:31:0;;;;;;:25;:31;;;;;;;;30635:32;30555:112;:155;;;;-1:-1:-1;;;;;;30685:25:0;;;;;;:19;:25;;;;;;;;30684:26;30555:155;:196;;;;-1:-1:-1;;;;;;30728:23:0;;;;;;:19;:23;;;;;;;;30727:24;30555:196;30537:328;;;30778:8;:15;;-1:-1:-1;;30778:15:0;30789:4;30778:15;;;30810:10;:8;:10::i;:::-;30837:8;:16;;-1:-1:-1;;30837:16:0;;;30537:328;30894:8;;-1:-1:-1;;;;;31004:25:0;;30877:13;31004:25;;;:19;:25;;;;;;30894:8;;;;30893:9;;31004:25;;:52;;-1:-1:-1;;;;;;31033:23:0;;;;;;:19;:23;;;;;;;;31004:52;31000:101;;;-1:-1:-1;31084:5:0;31000:101;31113:12;31218:8;31214:1335;;;31247:12;31243:1157;;;-1:-1:-1;;;;;31311:31:0;;;;;;:25;:31;;;;;;;;31307:371;;;31374:33;31403:3;31375:22;23415:2;31375:6;:22;:::i;:::-;31374:28;;:33::i;:::-;31367:40;;31452:4;31430:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;31243:1157:0;;-1:-1:-1;31243:1157:0;31307:371;-1:-1:-1;;;;;31514:29:0;;;;;;:25;:29;;;;;;;;31510:168;;;31575:34;31605:3;31576:23;23465:2;31576:6;:23;:::i;31510:168::-;31243:1157;;;-1:-1:-1;;;;;31749:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;31784:16:0;31749:51;31745:640;;;31832:32;31860:3;31833:21;23750:1;31833:6;:21;:::i;31832:32::-;31825:39;-1:-1:-1;31903:36:0;23750:1;31904:16;23582:1;31825:39;31904:16;:::i;31903:36::-;31887:12;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;31984:42:0;;-1:-1:-1;23750:1:0;31985:22;23750:1;31985:4;:22;:::i;31984:42::-;31962:18;;:64;;;;;;;:::i;31745:640::-;-1:-1:-1;;;;;32084:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;32117:17:0;32084:50;32080:305;;;32166:33;32195:3;32167:22;23798:1;32167:6;:22;:::i;32166:33::-;32159:40;-1:-1:-1;32238:38:0;23798:1;32239:17;23701:1;32159:40;32239:17;:::i;32238:38::-;32222:12;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;32321:44:0;;-1:-1:-1;23798:1:0;32322:23;23798:1;32322:4;:23;:::i;32321:44::-;32299:18;;:66;;;;;;;:::i;:::-;;;;-1:-1:-1;;32080:305:0;32420:8;;32416:91;;32449:42;32465:4;32479;32486;32449:15;:42::i;:::-;32523:14;32533:4;32523:14;;:::i;:::-;;;31214:1335;32561:33;32577:4;32583:2;32587:6;32561:15;:33::i;:::-;27548:5054;;;;27435:5167;;;:::o;4186:191::-;4279:6;;;-1:-1:-1;;;;;4296:17:0;;;-1:-1:-1;;;;;;4296:17:0;;;;;;;4329:40;;4279:6;;;4296:17;4279:6;;4329:40;;4260:16;;4329:40;4249:128;4186:191;:::o;14995:651::-;-1:-1:-1;;;;;15135:20:0;;15127:70;;;;-1:-1:-1;;;15127:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15294:17:0;;15270:21;15294:17;;;;;;;;;;;15330:23;;;;15322:74;;;;-1:-1:-1;;;15322:74:0;;9446:2:1;15322:74:0;;;9428:21:1;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;-1:-1:-1;;;9575:18:1;;;9568:36;9621:19;;15322:74:0;9244:402:1;15322:74:0;-1:-1:-1;;;;;15432:17:0;;;:9;:17;;;;;;;;;;;15452:22;;;15432:42;;15496:20;;;;;;;;:30;;15468:6;;15432:9;15496:30;;15468:6;;15496:30;:::i;:::-;;;;;;;;15561:9;-1:-1:-1;;;;;15544:35:0;15553:6;-1:-1:-1;;;;;15544:35:0;;15572:6;15544:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15544:35:0;;;;;;;;15116:530;14995:651;;;:::o;16136:484::-;-1:-1:-1;;;;;16353:17:0;;;16329:21;16353:17;;;;;;;;;;;;;16426:22;;;16406:42;;;16470:20;;;;;;;:30;;16442:6;;16329:21;16470:30;;16442:6;;16470:30;:::i;33207:957::-;33290:4;33246:23;11047:18;;;;;;;;;;;33246:50;;33307:25;33356:12;;33335:18;;:33;;;;:::i;:::-;33307:61;-1:-1:-1;33385:22:0;;;:46;;-1:-1:-1;33411:20:0;;33385:46;33381:85;;;33448:7;;33207:957::o;33381:85::-;33500:18;;:23;;33521:2;33500:23;:::i;:::-;33482:15;:41;33478:115;;;33558:18;;:23;;33579:2;33558:23;:::i;:::-;33540:41;;33478:115;33634:15;33690:21;33724:36;33634:15;33724:16;:36::i;:::-;33773:12;;33817:41;33841:17;33817:21;:41;:::i;:::-;33796:62;;33869:17;33917;33902:12;;33889:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;33968:1;33947:18;:22;;;33980:12;:16;;;34031:9;;34023:45;;33869:65;;-1:-1:-1;;;;;;34031:9:0;;33869:65;;34023:45;33968:1;34023:45;33869:65;34031:9;34023:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34101:15:0;;34093:63;;34009:59;;-1:-1:-1;;;;;;34101:15:0;;34130:21;;34093:63;;;;34130:21;34101:15;34093:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;33207:957:0:o;22974:98::-;23032:7;23059:5;23063:1;23059;:5;:::i;:::-;23052:12;22974:98;-1:-1:-1;;;22974:98:0:o;32610:589::-;32760:16;;;32774:1;32760:16;;;;;;;;32736:21;;32760:16;;;;;;;;;;-1:-1:-1;32760:16:0;32736:40;;32805:4;32787;32792:1;32787:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;32787:23:0;;;-1:-1:-1;;;;;32787:23:0;;;;;32831:15;-1:-1:-1;;;;;32831:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32821:4;32826:1;32821:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;32821:32:0;;;-1:-1:-1;;;;;32821:32:0;;;;;32866:62;32883:4;32898:15;32916:11;32866:8;:62::i;:::-;32967:224;;-1:-1:-1;;;32967:224:0;;-1:-1:-1;;;;;32967:15:0;:66;;;;:224;;33048:11;;33074:1;;33118:4;;33145;;33165:15;;32967:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32665:534;32610:589;:::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;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2741:416::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2922:9;2909:23;2941:31;2966:5;2941:31;:::i;:::-;2991:5;-1:-1:-1;3048:2:1;3033:18;;3020:32;3090:15;;3083:23;3071:36;;3061:64;;3121:1;3118;3111:12;3061:64;3144:7;3134:17;;;2741:416;;;;;:::o;3162:388::-;3230:6;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3346:9;3333:23;3365:31;3390:5;3365:31;:::i;:::-;3415:5;-1:-1:-1;3472:2:1;3457:18;;3444:32;3485:33;3444:32;3485:33;:::i;3555:380::-;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:125;4546:9;;;4567:10;;;4564:36;;;4580:18;;:::i;4611:356::-;4813:2;4795:21;;;4832:18;;;4825:30;4891:34;4886:2;4871:18;;4864:62;4958:2;4943:18;;4611:356::o;6593:401::-;6795:2;6777:21;;;6834:2;6814:18;;;6807:30;6873:34;6868:2;6853:18;;6846:62;-1:-1:-1;;;6939:2:1;6924:18;;6917:35;6984:3;6969:19;;6593:401::o;8938:128::-;9005:9;;;9026:11;;;9023:37;;;9040:18;;:::i;9071:168::-;9144:9;;;9175;;9192:15;;;9186:22;;9172:37;9162:71;;9213:18;;:::i;9651:217::-;9691:1;9717;9707:132;;9761:10;9756:3;9752:20;9749:1;9742:31;9796:4;9793:1;9786:15;9824:4;9821:1;9814:15;9707:132;-1:-1:-1;9853:9:1;;9651:217::o;10215:127::-;10276:10;10271:3;10267:20;10264:1;10257:31;10307:4;10304:1;10297:15;10331:4;10328:1;10321:15;10347:251;10417:6;10470:2;10458:9;10449:7;10445:23;10441:32;10438:52;;;10486:1;10483;10476:12;10438:52;10518:9;10512:16;10537:31;10562:5;10537:31;:::i;10603:980::-;10865:4;10913:3;10902:9;10898:19;10944:6;10933:9;10926:25;10970:2;11008:6;11003:2;10992:9;10988:18;10981:34;11051:3;11046:2;11035:9;11031:18;11024:31;11075:6;11110;11104:13;11141:6;11133;11126:22;11179:3;11168:9;11164:19;11157:26;;11218:2;11210:6;11206:15;11192:29;;11239:1;11249:195;11263:6;11260:1;11257:13;11249:195;;;11328:13;;-1:-1:-1;;;;;11324:39:1;11312:52;;11419:15;;;;11384:12;;;;11360:1;11278:9;11249:195;;;-1:-1:-1;;;;;;;11500:32:1;;;;11495:2;11480:18;;11473:60;-1:-1:-1;;;11564:3:1;11549:19;11542:35;11461:3;10603:980;-1:-1:-1;;;10603:980:1:o
Swarm Source
ipfs://8445dd836ef7858eaaf8aee29f4d9eb0534e9610a533e661b0942b55c5ba175e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.