ERC-20
Overview
Max Total Supply
1,000,000,000 MOE
Holders
11
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 Name:
MoeCoin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** hello frens, the blue emoji guy has finally arrived, the name is moe. you can call me moe i am fren of joe www.moecoinerc.com t.me/themoecoin twitter.com/moecoin_ */ /** * @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(address _newOwner) { _transferOwnership(_newOwner); } /** * @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"); 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); } /** @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"); _totalSupply += amount; _balances[account] += amount; emit Transfer(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"); 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); } /** * @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); } } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MoeCoin is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public swapTokensAtAmount; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyFee; uint256 public sellFee; address public weth; address public feeWallet; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // 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; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapEnabled(bool enabled); event EnableTrading(); constructor( address _teamWallet, address _feeWallet ) ERC20("Moe Coin", "MOE") Ownable(_teamWallet) { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; weth = _uniswapV2Router.WETH(); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), weth); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 1000_000_000 * 1e18; _updateSwapTokensAtAmount((totalSupply * 1) / 100_000); // 0.001% _updateFees(1_500, 1_500); // 15% each _updateFeeWallet(_feeWallet); // exclude from paying fees or having max transaction amount _excludeFromFees(_teamWallet, true); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); preMigrationTransferrable[_teamWallet] = true; _mint(_teamWallet, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; emit EnableTrading(); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; } function updateFeeWallet(address _feeWallet) external onlyOwner { _updateFeeWallet(_feeWallet); } function _updateFeeWallet(address _feeWallet) private { require(_feeWallet != address(0), "Zero address"); feeWallet = _feeWallet; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1_000, "Swap amount cannot be higher than 0.5% total supply." ); _updateSwapTokensAtAmount(newAmount); } function _updateSwapTokensAtAmount(uint256 newAmount) private { swapTokensAtAmount = newAmount; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; emit SwapEnabled(enabled); } function updateFees(uint256 _buyFee, uint256 _sellFee) public onlyOwner { _updateFees(_buyFee, _sellFee); } function _updateFees(uint256 _buyFee, uint256 _sellFee) private { require(_buyFee <= 5_000 && _sellFee <= 5_000, "Invalid fees"); // _buyFee and _sellFee <= 50% buyFee = _buyFee; sellFee = _sellFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludeFromFees(account, excluded); } function _excludeFromFees(address account, bool excluded) private { _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" ); require(pair != address(0), "Zero address"); _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 (preMigrationPhase) { require( preMigrationTransferrable[from], "Not authorized to transfer pre-migration." ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } } } 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 any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fee = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellFee > 0) { fee = (amount * sellFee) / 10_000; } // on buy else if (automatedMarketMakerPairs[from] && buyFee > 0) { fee = (amount * buyFee) / 10_000; } if (fee > 0) { super._transfer(from, address(this), fee); } amount -= fee; } 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] = 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 totalTokensToSwap = balanceOf(address(this)); bool success; if (totalTokensToSwap == 0) { return; } if (totalTokensToSwap > swapTokensAtAmount * 20) { totalTokensToSwap = swapTokensAtAmount * 20; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(totalTokensToSwap); uint256 ethBalance = address(this).balance - initialETHBalance; (success, ) = address(feeWallet).call{value: ethBalance}(""); } function withdrawStuckMoe() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } function setPreMigrationTransferable( address _addr, bool isAuthorized ) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_feeWallet","type":"address"}],"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":[],"name":"EnableTrading","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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","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":"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"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"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckMoe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526007805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b506040516200291f3803806200291f8339810160408190526200005391620005e0565b816040518060400160405280600881526020016726b7b29021b7b4b760c11b815250604051806040016040528060038152602001624d4f4560e81b8152508160039081620000a29190620006bd565b506004620000b18282620006bd565b505050620000c5816200030f60201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052604080516315ab88c960e31b81529051829163ad5c46489160048083019260209291908290030181865afa1580156200011d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000143919062000789565b600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ce919062000789565b600a546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000220573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000246919062000789565b6001600160a01b031660a08190526200026190600162000361565b6b033b2e3c9fd0803ce800000062000294620186a062000283836001620007c4565b6200028f9190620007e4565b600655565b620002a26105dc80620003b5565b620002ad8362000416565b620002ba8460016200047f565b620002c73060016200047f565b620002d661dead60016200047f565b6001600160a01b0384166000908152600f60205260409020805460ff19166001179055620003058482620004de565b505050506200081d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6113888211158015620003ca57506113888111155b6200040b5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b60448201526064015b60405180910390fd5b600891909155600955565b6001600160a01b0381166200045d5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640162000402565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000402565b80600260008282546200054a919062000807565b90915550506001600160a01b038216600090815260208190526040812080548392906200057990849062000807565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80516001600160a01b0381168114620005db57600080fd5b919050565b60008060408385031215620005f457600080fd5b620005ff83620005c3565b91506200060f60208401620005c3565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064357607f821691505b6020821081036200066457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006b857600081815260208120601f850160051c81016020861015620006935750805b601f850160051c820191505b81811015620006b4578281556001016200069f565b5050505b505050565b81516001600160401b03811115620006d957620006d962000618565b620006f181620006ea84546200062e565b846200066a565b602080601f831160018114620007295760008415620007105750858301515b600019600386901b1c1916600185901b178555620006b4565b600085815260208120601f198616915b828110156200075a5788860151825594840194600190910190840162000739565b5085821015620007795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200079c57600080fd5b620007a782620005c3565b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007de57620007de620007ae565b92915050565b6000826200080257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007de57620007de620007ae565b60805160a0516120c7620008586000396000818161041d0152610d1c0152600081816102dd01528181611bf60152611c3201526120c76000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063a9059cbb116100b6578063c02466681161007a578063c0246668146106f9578063d257b34f14610719578063dd62ed3e14610739578063e2f456051461077f578063f25f4b5614610795578063f2fde38b146107b557600080fd5b8063a9059cbb1461064a578063aa0e43881461066a578063b62496f51461068a578063bbc0c742146106ba578063bc205ad3146106d957600080fd5b80638da5cb5b116100fd5780638da5cb5b146105b7578063924de9b7146105d557806395d89b41146105f55780639a7a23d61461060a578063a457c2d71461062a57600080fd5b806370a0823114610522578063715018a614610558578063751039fc1461056d5780637ca8448a146105825780638a8c523c146105a257600080fd5b806339509351116101c75780634e29e5231161018b5780634e29e523146104595780634fbee1931461048957806366718524146104c25780636db79437146104e25780636ddd17131461050257600080fd5b806339509351146103b55780633fc8cef3146103d557806347062402146103f557806349bd5a5e1461040b5780634a62bb651461043f57600080fd5b806323b872dd1161020e57806323b872dd1461033657806327c8f835146103565780632b14ca561461036c578063313ce5671461038257806333bedacc1461039e57600080fd5b806306fdde0314610256578063095ea7b3146102815780630e922ca7146102b15780631694505e146102cb57806318160ddd1461031757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b6107d5565b6040516102789190611ca6565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611d10565b610867565b6040519015158152602001610278565b3480156102bd57600080fd5b50600e546102a19060ff1681565b3480156102d757600080fd5b506102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610278565b34801561032357600080fd5b506002545b604051908152602001610278565b34801561034257600080fd5b506102a1610351366004611d3a565b61087e565b34801561036257600080fd5b506102ff61dead81565b34801561037857600080fd5b5061032860095481565b34801561038e57600080fd5b5060405160128152602001610278565b3480156103aa57600080fd5b506103b361092d565b005b3480156103c157600080fd5b506102a16103d0366004611d10565b610a55565b3480156103e157600080fd5b50600a546102ff906001600160a01b031681565b34801561040157600080fd5b5061032860085481565b34801561041757600080fd5b506102ff7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b506007546102a19060ff1681565b34801561046557600080fd5b506102a1610474366004611d76565b600f6020526000908152604090205460ff1681565b34801561049557600080fd5b506102a16104a4366004611d76565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104ce57600080fd5b506103b36104dd366004611d76565b610a91565b3480156104ee57600080fd5b506103b36104fd366004611d98565b610ac7565b34801561050e57600080fd5b506007546102a19062010000900460ff1681565b34801561052e57600080fd5b5061032861053d366004611d76565b6001600160a01b031660009081526020819052604090205490565b34801561056457600080fd5b506103b3610afb565b34801561057957600080fd5b506103b3610b31565b34801561058e57600080fd5b506103b361059d366004611d76565b610b67565b3480156105ae57600080fd5b506103b3610bf1565b3480156105c357600080fd5b506005546001600160a01b03166102ff565b3480156105e157600080fd5b506103b36105f0366004611dc8565b610c61565b34801561060157600080fd5b5061026b610ce1565b34801561061657600080fd5b506103b3610625366004611de5565b610cf0565b34801561063657600080fd5b506102a1610645366004611d10565b610e10565b34801561065657600080fd5b506102a1610665366004611d10565b610ea9565b34801561067657600080fd5b506103b3610685366004611de5565b610eb6565b34801561069657600080fd5b506102a16106a5366004611d76565b600d6020526000908152604090205460ff1681565b3480156106c657600080fd5b506007546102a190610100900460ff1681565b3480156106e557600080fd5b506103b36106f4366004611e1c565b610f0e565b34801561070557600080fd5b506103b3610714366004611de5565b611076565b34801561072557600080fd5b506103b3610734366004611e4f565b6110aa565b34801561074557600080fd5b50610328610754366004611e1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078b57600080fd5b5061032860065481565b3480156107a157600080fd5b50600b546102ff906001600160a01b031681565b3480156107c157600080fd5b506103b36107d0366004611d76565b6111f9565b6060600380546107e490611e68565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e68565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000610874338484611291565b5060015b92915050565b600061088b8484846113b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109155760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109228533858403611291565b506001949350505050565b6005546001600160a01b031633146109575760405162461bcd60e51b815260040161090c90611ea2565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610995573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b99190611ed7565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a249190611ef0565b5060405133904780156108fc02916000818181858888f19350505050158015610a51573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610874918590610a8c908690611f23565b611291565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161090c90611ea2565b610ac4816117a9565b50565b6005546001600160a01b03163314610af15760405162461bcd60e51b815260040161090c90611ea2565b610a518282611810565b6005546001600160a01b03163314610b255760405162461bcd60e51b815260040161090c90611ea2565b610b2f600061186a565b565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b815260040161090c90611ea2565b6007805460ff19169055565b6005546001600160a01b03163314610b915760405162461bcd60e51b815260040161090c90611ea2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bde576040519150601f19603f3d011682016040523d82523d6000602084013e610be3565b606091505b5050905080610a5157600080fd5b6005546001600160a01b03163314610c1b5760405162461bcd60e51b815260040161090c90611ea2565b6007805462ffff00191662010100179055600e805460ff191690556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161090c90611ea2565b60078054821515620100000262ff0000199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610cd690831515815260200190565b60405180910390a150565b6060600480546107e490611e68565b6005546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161090c90611ea2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610dc15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090c565b6001600160a01b038216610e065760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b610a5182826118bc565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090c565b610e9f3385858403611291565b5060019392505050565b60006108743384846113b5565b6005546001600160a01b03163314610ee05760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b0382166000908152600f60205260409020805460ff1916821515179055610a518282611076565b6005546001600160a01b03163314610f385760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161090c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611ed7565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561104c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110709190611ef0565b50505050565b6005546001600160a01b031633146110a05760405162461bcd60e51b815260040161090c90611ea2565b610a518282611910565b6005546001600160a01b031633146110d45760405162461bcd60e51b815260040161090c90611ea2565b620186a06110e160025490565b6110ec906001611f36565b6110f69190611f4d565b8110156111635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090c565b6103e861116f60025490565b61117a906005611f36565b6111849190611f4d565b8111156111f05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090c565b610ac481600655565b6005546001600160a01b031633146112235760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b0381166112885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610ac48161186a565b6001600160a01b0383166112f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b6001600160a01b0382166113545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113db5760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166114015760405162461bcd60e51b815260040161090c90611fb4565b600e5460ff1615611486576001600160a01b0383166000908152600f602052604090205460ff166114865760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b606482015260840161090c565b8060000361149f5761149a8383600061196f565b505050565b60075460ff161561159b576005546001600160a01b038481169116148015906114d657506005546001600160a01b03838116911614155b80156114ed57506001600160a01b03821661dead14155b80156115035750600554600160a01b900460ff16155b1561159b57600754610100900460ff1661159b576001600160a01b0383166000908152600c602052604090205460ff168061155657506001600160a01b0382166000908152600c602052604090205460ff165b61159b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090c565b30600090815260208190526040902054600654811080159081906115c7575060075462010000900460ff165b80156115dd5750600554600160a01b900460ff16155b801561160257506001600160a01b0385166000908152600d602052604090205460ff16155b801561162757506001600160a01b0385166000908152600c602052604090205460ff16155b801561164c57506001600160a01b0384166000908152600c602052604090205460ff16155b1561167a576005805460ff60a01b1916600160a01b17905561166c611ac4565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600c602052604090205460ff600160a01b9092048216159116806116c857506001600160a01b0385166000908152600c602052604090205460ff165b156116d1575060005b60008115611795576001600160a01b0386166000908152600d602052604090205460ff16801561170357506000600954115b1561172a57612710600954866117199190611f36565b6117239190611f4d565b9050611777565b6001600160a01b0387166000908152600d602052604090205460ff16801561175457506000600854115b15611777576127106008548661176a9190611f36565b6117749190611f4d565b90505b80156117885761178887308361196f565b6117928186611ff7565b94505b6117a087878761196f565b50505050505050565b6001600160a01b0381166117ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611388821115801561182457506113888111155b61185f5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b604482015260640161090c565b600891909155600955565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166119955760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166119bb5760405162461bcd60e51b815260040161090c90611fb4565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6a908490611f23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611ae0575050565b600654611aee906014611f36565b821115611b0657600654611b03906014611f36565b91505b47611b1083611b6a565b6000611b1c8247611ff7565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146117a0576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9f57611b9f61200a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611bd057611bd061200a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c1b307f000000000000000000000000000000000000000000000000000000000000000084611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c70908590600090869030904290600401612020565b600060405180830381600087803b158015611c8a57600080fd5b505af1158015611c9e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611cd357858101830151858201604001528201611cb7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b600060208284031215611d8857600080fd5b611d9182611cf4565b9392505050565b60008060408385031215611dab57600080fd5b50508035926020909101359150565b8015158114610ac457600080fd5b600060208284031215611dda57600080fd5b8135611d9181611dba565b60008060408385031215611df857600080fd5b611e0183611cf4565b91506020830135611e1181611dba565b809150509250929050565b60008060408385031215611e2f57600080fd5b611e3883611cf4565b9150611e4660208401611cf4565b90509250929050565b600060208284031215611e6157600080fd5b5035919050565b600181811c90821680611e7c57607f821691505b602082108103611e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611ee957600080fd5b5051919050565b600060208284031215611f0257600080fd5b8151611d9181611dba565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087857610878611f0d565b808202811582820484141761087857610878611f0d565b600082611f6a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087857610878611f0d565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120705784516001600160a01b03168352938301939183019160010161204b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208b5e6f8161905e559ed130af71e75578949d1d3810076a6156fac7f513eebe9664736f6c63430008130033000000000000000000000000f5494d32715391220b53c1ac7f1edc204ac0ca1b000000000000000000000000ba8a74fb1a02758fc6a575ac1db2bd673ca5f0ec
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806370a0823111610139578063a9059cbb116100b6578063c02466681161007a578063c0246668146106f9578063d257b34f14610719578063dd62ed3e14610739578063e2f456051461077f578063f25f4b5614610795578063f2fde38b146107b557600080fd5b8063a9059cbb1461064a578063aa0e43881461066a578063b62496f51461068a578063bbc0c742146106ba578063bc205ad3146106d957600080fd5b80638da5cb5b116100fd5780638da5cb5b146105b7578063924de9b7146105d557806395d89b41146105f55780639a7a23d61461060a578063a457c2d71461062a57600080fd5b806370a0823114610522578063715018a614610558578063751039fc1461056d5780637ca8448a146105825780638a8c523c146105a257600080fd5b806339509351116101c75780634e29e5231161018b5780634e29e523146104595780634fbee1931461048957806366718524146104c25780636db79437146104e25780636ddd17131461050257600080fd5b806339509351146103b55780633fc8cef3146103d557806347062402146103f557806349bd5a5e1461040b5780634a62bb651461043f57600080fd5b806323b872dd1161020e57806323b872dd1461033657806327c8f835146103565780632b14ca561461036c578063313ce5671461038257806333bedacc1461039e57600080fd5b806306fdde0314610256578063095ea7b3146102815780630e922ca7146102b15780631694505e146102cb57806318160ddd1461031757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b6107d5565b6040516102789190611ca6565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611d10565b610867565b6040519015158152602001610278565b3480156102bd57600080fd5b50600e546102a19060ff1681565b3480156102d757600080fd5b506102ff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610278565b34801561032357600080fd5b506002545b604051908152602001610278565b34801561034257600080fd5b506102a1610351366004611d3a565b61087e565b34801561036257600080fd5b506102ff61dead81565b34801561037857600080fd5b5061032860095481565b34801561038e57600080fd5b5060405160128152602001610278565b3480156103aa57600080fd5b506103b361092d565b005b3480156103c157600080fd5b506102a16103d0366004611d10565b610a55565b3480156103e157600080fd5b50600a546102ff906001600160a01b031681565b34801561040157600080fd5b5061032860085481565b34801561041757600080fd5b506102ff7f0000000000000000000000008778b0f8b31708ec90cfbe7415e46ec9175a4a3e81565b34801561044b57600080fd5b506007546102a19060ff1681565b34801561046557600080fd5b506102a1610474366004611d76565b600f6020526000908152604090205460ff1681565b34801561049557600080fd5b506102a16104a4366004611d76565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104ce57600080fd5b506103b36104dd366004611d76565b610a91565b3480156104ee57600080fd5b506103b36104fd366004611d98565b610ac7565b34801561050e57600080fd5b506007546102a19062010000900460ff1681565b34801561052e57600080fd5b5061032861053d366004611d76565b6001600160a01b031660009081526020819052604090205490565b34801561056457600080fd5b506103b3610afb565b34801561057957600080fd5b506103b3610b31565b34801561058e57600080fd5b506103b361059d366004611d76565b610b67565b3480156105ae57600080fd5b506103b3610bf1565b3480156105c357600080fd5b506005546001600160a01b03166102ff565b3480156105e157600080fd5b506103b36105f0366004611dc8565b610c61565b34801561060157600080fd5b5061026b610ce1565b34801561061657600080fd5b506103b3610625366004611de5565b610cf0565b34801561063657600080fd5b506102a1610645366004611d10565b610e10565b34801561065657600080fd5b506102a1610665366004611d10565b610ea9565b34801561067657600080fd5b506103b3610685366004611de5565b610eb6565b34801561069657600080fd5b506102a16106a5366004611d76565b600d6020526000908152604090205460ff1681565b3480156106c657600080fd5b506007546102a190610100900460ff1681565b3480156106e557600080fd5b506103b36106f4366004611e1c565b610f0e565b34801561070557600080fd5b506103b3610714366004611de5565b611076565b34801561072557600080fd5b506103b3610734366004611e4f565b6110aa565b34801561074557600080fd5b50610328610754366004611e1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078b57600080fd5b5061032860065481565b3480156107a157600080fd5b50600b546102ff906001600160a01b031681565b3480156107c157600080fd5b506103b36107d0366004611d76565b6111f9565b6060600380546107e490611e68565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e68565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000610874338484611291565b5060015b92915050565b600061088b8484846113b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109155760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109228533858403611291565b506001949350505050565b6005546001600160a01b031633146109575760405162461bcd60e51b815260040161090c90611ea2565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610995573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b99190611ed7565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a249190611ef0565b5060405133904780156108fc02916000818181858888f19350505050158015610a51573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610874918590610a8c908690611f23565b611291565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161090c90611ea2565b610ac4816117a9565b50565b6005546001600160a01b03163314610af15760405162461bcd60e51b815260040161090c90611ea2565b610a518282611810565b6005546001600160a01b03163314610b255760405162461bcd60e51b815260040161090c90611ea2565b610b2f600061186a565b565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b815260040161090c90611ea2565b6007805460ff19169055565b6005546001600160a01b03163314610b915760405162461bcd60e51b815260040161090c90611ea2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bde576040519150601f19603f3d011682016040523d82523d6000602084013e610be3565b606091505b5050905080610a5157600080fd5b6005546001600160a01b03163314610c1b5760405162461bcd60e51b815260040161090c90611ea2565b6007805462ffff00191662010100179055600e805460ff191690556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161090c90611ea2565b60078054821515620100000262ff0000199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610cd690831515815260200190565b60405180910390a150565b6060600480546107e490611e68565b6005546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161090c90611ea2565b7f0000000000000000000000008778b0f8b31708ec90cfbe7415e46ec9175a4a3e6001600160a01b0316826001600160a01b031603610dc15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090c565b6001600160a01b038216610e065760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b610a5182826118bc565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090c565b610e9f3385858403611291565b5060019392505050565b60006108743384846113b5565b6005546001600160a01b03163314610ee05760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b0382166000908152600f60205260409020805460ff1916821515179055610a518282611076565b6005546001600160a01b03163314610f385760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161090c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611ed7565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561104c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110709190611ef0565b50505050565b6005546001600160a01b031633146110a05760405162461bcd60e51b815260040161090c90611ea2565b610a518282611910565b6005546001600160a01b031633146110d45760405162461bcd60e51b815260040161090c90611ea2565b620186a06110e160025490565b6110ec906001611f36565b6110f69190611f4d565b8110156111635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090c565b6103e861116f60025490565b61117a906005611f36565b6111849190611f4d565b8111156111f05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090c565b610ac481600655565b6005546001600160a01b031633146112235760405162461bcd60e51b815260040161090c90611ea2565b6001600160a01b0381166112885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610ac48161186a565b6001600160a01b0383166112f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b6001600160a01b0382166113545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113db5760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166114015760405162461bcd60e51b815260040161090c90611fb4565b600e5460ff1615611486576001600160a01b0383166000908152600f602052604090205460ff166114865760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b606482015260840161090c565b8060000361149f5761149a8383600061196f565b505050565b60075460ff161561159b576005546001600160a01b038481169116148015906114d657506005546001600160a01b03838116911614155b80156114ed57506001600160a01b03821661dead14155b80156115035750600554600160a01b900460ff16155b1561159b57600754610100900460ff1661159b576001600160a01b0383166000908152600c602052604090205460ff168061155657506001600160a01b0382166000908152600c602052604090205460ff165b61159b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090c565b30600090815260208190526040902054600654811080159081906115c7575060075462010000900460ff165b80156115dd5750600554600160a01b900460ff16155b801561160257506001600160a01b0385166000908152600d602052604090205460ff16155b801561162757506001600160a01b0385166000908152600c602052604090205460ff16155b801561164c57506001600160a01b0384166000908152600c602052604090205460ff16155b1561167a576005805460ff60a01b1916600160a01b17905561166c611ac4565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600c602052604090205460ff600160a01b9092048216159116806116c857506001600160a01b0385166000908152600c602052604090205460ff165b156116d1575060005b60008115611795576001600160a01b0386166000908152600d602052604090205460ff16801561170357506000600954115b1561172a57612710600954866117199190611f36565b6117239190611f4d565b9050611777565b6001600160a01b0387166000908152600d602052604090205460ff16801561175457506000600854115b15611777576127106008548661176a9190611f36565b6117749190611f4d565b90505b80156117885761178887308361196f565b6117928186611ff7565b94505b6117a087878761196f565b50505050505050565b6001600160a01b0381166117ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611388821115801561182457506113888111155b61185f5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b604482015260640161090c565b600891909155600955565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166119955760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166119bb5760405162461bcd60e51b815260040161090c90611fb4565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6a908490611f23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611ae0575050565b600654611aee906014611f36565b821115611b0657600654611b03906014611f36565b91505b47611b1083611b6a565b6000611b1c8247611ff7565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146117a0576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9f57611b9f61200a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611bd057611bd061200a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c1b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c70908590600090869030904290600401612020565b600060405180830381600087803b158015611c8a57600080fd5b505af1158015611c9e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611cd357858101830151858201604001528201611cb7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b600060208284031215611d8857600080fd5b611d9182611cf4565b9392505050565b60008060408385031215611dab57600080fd5b50508035926020909101359150565b8015158114610ac457600080fd5b600060208284031215611dda57600080fd5b8135611d9181611dba565b60008060408385031215611df857600080fd5b611e0183611cf4565b91506020830135611e1181611dba565b809150509250929050565b60008060408385031215611e2f57600080fd5b611e3883611cf4565b9150611e4660208401611cf4565b90509250929050565b600060208284031215611e6157600080fd5b5035919050565b600181811c90821680611e7c57607f821691505b602082108103611e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611ee957600080fd5b5051919050565b600060208284031215611f0257600080fd5b8151611d9181611dba565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087857610878611f0d565b808202811582820484141761087857610878611f0d565b600082611f6a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087857610878611f0d565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120705784516001600160a01b03168352938301939183019160010161204b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208b5e6f8161905e559ed130af71e75578949d1d3810076a6156fac7f513eebe9664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f5494d32715391220b53c1ac7f1edc204ac0ca1b000000000000000000000000ba8a74fb1a02758fc6a575ac1db2bd673ca5f0ec
-----Decoded View---------------
Arg [0] : _teamWallet (address): 0xf5494d32715391220B53C1ac7F1edc204AC0cA1B
Arg [1] : _feeWallet (address): 0xBA8A74FB1A02758Fc6A575aC1dB2bD673Ca5F0EC
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f5494d32715391220b53c1ac7f1edc204ac0ca1b
Arg [1] : 000000000000000000000000ba8a74fb1a02758fc6a575ac1db2bd673ca5f0ec
Deployed Bytecode Sourcemap
18189:9920:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11452:194;;;;;;;;;;-1:-1:-1;11452:194:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11452:194:0;1004:187:1;19067:36:0;;;;;;;;;;-1:-1:-1;19067:36:0;;;;;;;;18231:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1386:32:1;;;1368:51;;1356:2;1341:18;18231:51:0;1196:229:1;10339:108:0;;;;;;;;;;-1:-1:-1;10427:12:0;;10339:108;;;1576:25:1;;;1564:2;1549:18;10339:108:0;1430:177:1;12128:529:0;;;;;;;;;;-1:-1:-1;12128:529:0;;;;;:::i;:::-;;:::i;18334:53::-;;;;;;;;;;;;18380:6;18334:53;;18618:22;;;;;;;;;;;;;;;;10181:93;;;;;;;;;;-1:-1:-1;10181:93:0;;10264:2;2295:36:1;;2283:2;2268:18;10181:93:0;2153:184:1;27118:254:0;;;;;;;;;;;;;:::i;:::-;;13066:290;;;;;;;;;;-1:-1:-1;13066:290:0;;;;;:::i;:::-;;:::i;18649:19::-;;;;;;;;;;-1:-1:-1;18649:19:0;;;;-1:-1:-1;;;;;18649:19:0;;;18588:21;;;;;;;;;;;;;;;;18289:38;;;;;;;;;;;;;;;18468:33;;;;;;;;;;-1:-1:-1;18468:33:0;;;;;;;;19110:57;;;;;;;;;;-1:-1:-1;19110:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23411:126;;;;;;;;;;-1:-1:-1;23411:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;23501:28:0;23477:4;23501:28;;;:19;:28;;;;;;;;;23411:126;21021:111;;;;;;;;;;-1:-1:-1;21021:111:0;;;;;:::i;:::-;;:::i;22160:121::-;;;;;;;;;;-1:-1:-1;22160:121:0;;;;;:::i;:::-;;:::i;18548:31::-;;;;;;;;;;-1:-1:-1;18548:31:0;;;;;;;;;;;10510:143;;;;;;;;;;-1:-1:-1;10510:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10627:18:0;10600:7;10627:18;;;;;;;;;;;;10510:143;2615:103;;;;;;;;;;;;;:::i;20929:84::-;;;;;;;;;;;;;:::i;27701:171::-;;;;;;;;;;-1:-1:-1;27701:171:0;;;;;:::i;:::-;;:::i;20696:181::-;;;;;;;;;;;;;:::i;1964:87::-;;;;;;;;;;-1:-1:-1;2037:6:0;;-1:-1:-1;;;;;2037:6:0;1964:87;;22016:136;;;;;;;;;;-1:-1:-1;22016:136:0;;;;;:::i;:::-;;:::i;9438:104::-;;;;;;;;;;;;;:::i;22847:360::-;;;;;;;;;;-1:-1:-1;22847:360:0;;;;;:::i;:::-;;:::i;13859:475::-;;;;;;;;;;-1:-1:-1;13859:475:0;;;;;:::i;:::-;;:::i;10866:200::-;;;;;;;;;;-1:-1:-1;10866:200:0;;;;;:::i;:::-;;:::i;27880:226::-;;;;;;;;;;-1:-1:-1;27880:226:0;;;;;:::i;:::-;;:::i;19001:57::-;;;;;;;;;;-1:-1:-1;19001:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18508:33;;;;;;;;;;-1:-1:-1;18508:33:0;;;;;;;;;;;27380:313;;;;;;;;;;-1:-1:-1;27380:313:0;;;;;:::i;:::-;;:::i;22529:128::-;;;;;;;;;;-1:-1:-1;22529:128:0;;;;;:::i;:::-;;:::i;21365:436::-;;;;;;;;;;-1:-1:-1;21365:436:0;;;;;:::i;:::-;;:::i;11129:176::-;;;;;;;;;;-1:-1:-1;11129:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;11270:18:0;;;11243:7;11270:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11129:176;18426:33;;;;;;;;;;;;;;;;18677:24;;;;;;;;;;-1:-1:-1;18677:24:0;;;;-1:-1:-1;;;;;18677:24:0;;;2873:238;;;;;;;;;;-1:-1:-1;2873:238:0;;;;;:::i;:::-;;:::i;9219:100::-;9273:13;9306:5;9299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9219:100;:::o;11452:194::-;11560:4;11577:39;872:10;11600:7;11609:6;11577:8;:39::i;:::-;-1:-1:-1;11634:4:0;11452:194;;;;;:::o;12128:529::-;12268:4;12285:36;12295:6;12303:9;12314:6;12285:9;:36::i;:::-;-1:-1:-1;;;;;12361:19:0;;12334:24;12361:19;;;:11;:19;;;;;;;;872:10;12361:33;;;;;;;;12427:26;;;;12405:116;;;;-1:-1:-1;;;12405:116:0;;4512:2:1;12405:116:0;;;4494:21:1;4551:2;4531:18;;;4524:30;4590:34;4570:18;;;4563:62;-1:-1:-1;;;4641:18:1;;;4634:38;4689:19;;12405:116:0;;;;;;;;;12557:57;12566:6;872:10;12607:6;12588:16;:25;12557:8;:57::i;:::-;-1:-1:-1;12645:4:0;;12128:529;-1:-1:-1;;;;12128:529:0:o;27118:254::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;27194:46:::1;::::0;-1:-1:-1;;;27194:46:0;;27209:4:::1;27194:46;::::0;::::1;1368:51:1::0;;;27176:15:0::1;::::0;27194:31:::1;::::0;1341:18:1;;27194:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27251:51;::::0;-1:-1:-1;;;27251:51:0;;27282:10:::1;27251:51;::::0;::::1;5443::1::0;5510:18;;;5503:34;;;27176:64:0;;-1:-1:-1;27266:4:0::1;::::0;27251:30:::1;::::0;5416:18:1;;27251:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;27313:51:0::1;::::0;27321:10:::1;::::0;27342:21:::1;27313:51:::0;::::1;;;::::0;::::1;::::0;;;27342:21;27321:10;27313:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27165:207;27118:254::o:0;13066:290::-;872:10;13179:4;13268:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13268:34:0;;;;;;;;;;13179:4;;13196:130;;13246:7;;13268:47;;13305:10;;13268:47;:::i;:::-;13196:8;:130::i;21021:111::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;21096:28:::1;21113:10;21096:16;:28::i;:::-;21021:111:::0;:::o;22160:121::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;22243:30:::1;22255:7;22264:8;22243:11;:30::i;2615:103::-:0;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;2680:30:::1;2707:1;2680:18;:30::i;:::-;2615:103::o:0;20929:84::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;20983:14:::1;:22:::0;;-1:-1:-1;;20983:22:0::1;::::0;;20929:84::o;27701:171::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;27774:12:::1;27792:6;-1:-1:-1::0;;;;;27792:11:0::1;27811:21;27792:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27773:64;;;27856:7;27848:16;;;::::0;::::1;20696:181:::0;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;20751:13:::1;:20:::0;;-1:-1:-1;;20782:18:0;;;;;20811:17:::1;:25:::0;;-1:-1:-1;;20811:25:0::1;::::0;;20854:15:::1;::::0;::::1;::::0;-1:-1:-1;;20854:15:0::1;20696:181::o:0;22016:136::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;22087:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;22087:21:0;;::::1;;::::0;;22124:20:::1;::::0;::::1;::::0;::::1;::::0;22101:7;1169:14:1;1162:22;1144:41;;1132:2;1117:18;;1004:187;22124:20:0::1;;;;;;;;22016:136:::0;:::o;9438:104::-;9494:13;9527:7;9520:14;;;;;:::i;22847:360::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;22993:13:::1;-1:-1:-1::0;;;;;22985:21:0::1;:4;-1:-1:-1::0;;;;;22985:21:0::1;::::0;22963:128:::1;;;::::0;-1:-1:-1;;;22963:128:0;;6472:2:1;22963:128:0::1;::::0;::::1;6454:21:1::0;6511:2;6491:18;;;6484:30;6550:34;6530:18;;;6523:62;6621:27;6601:18;;;6594:55;6666:19;;22963:128:0::1;6270:421:1::0;22963:128:0::1;-1:-1:-1::0;;;;;23110:18:0;::::1;23102:43;;;::::0;-1:-1:-1;;;23102:43:0;;6898:2:1;23102:43:0::1;::::0;::::1;6880:21:1::0;6937:2;6917:18;;;6910:30;-1:-1:-1;;;6956:18:1;;;6949:42;7008:18;;23102:43:0::1;6696:336:1::0;23102:43:0::1;23158:41;23187:4;23193:5;23158:28;:41::i;13859:475::-:0;872:10;13977:4;14021:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14021:34:0;;;;;;;;;;14088:35;;;;14066:122;;;;-1:-1:-1;;;14066:122:0;;7239:2:1;14066:122:0;;;7221:21:1;7278:2;7258:18;;;7251:30;7317:34;7297:18;;;7290:62;-1:-1:-1;;;7368:18:1;;;7361:35;7413:19;;14066:122:0;7037:401:1;14066:122:0;14224:67;872:10;14247:7;14275:15;14256:16;:34;14224:8;:67::i;:::-;-1:-1:-1;14322:4:0;;13859:475;-1:-1:-1;;;13859:475:0:o;10866:200::-;10977:4;10994:42;872:10;11018:9;11029:6;10994:9;:42::i;27880:226::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28004:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;28004:47:0::1;::::0;::::1;;;::::0;;28062:36:::1;28004:32:::0;:47;28062:15:::1;:36::i;27380:313::-:0;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27500:20:0;::::1;27492:59;;;::::0;-1:-1:-1;;;27492:59:0;;7645:2:1;27492:59:0::1;::::0;::::1;7627:21:1::0;7684:2;7664:18;;;7657:30;7723:28;7703:18;;;7696:56;7769:18;;27492:59:0::1;7443:350:1::0;27492:59:0::1;27589:39;::::0;-1:-1:-1;;;27589:39:0;;27622:4:::1;27589:39;::::0;::::1;1368:51:1::0;27562:24:0::1;::::0;-1:-1:-1;;;;;27589:24:0;::::1;::::0;::::1;::::0;1341:18:1;;27589:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27639:46;::::0;-1:-1:-1;;;27639:46:0;;-1:-1:-1;;;;;5461:32:1;;;27639:46:0::1;::::0;::::1;5443:51:1::0;5510:18;;;5503:34;;;27562:66:0;;-1:-1:-1;27639:23:0;;::::1;::::0;::::1;::::0;5416:18:1;;27639:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27481:212;27380:313:::0;;:::o;22529:128::-;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;22614:35:::1;22631:7;22640:8;22614:16;:35::i;21365:436::-:0;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;21505:7:::1;21484:13;10427:12:::0;;;10339:108;21484:13:::1;:17;::::0;21500:1:::1;21484:17;:::i;:::-;21483:29;;;;:::i;:::-;21470:9;:42;;21448:145;;;::::0;-1:-1:-1;;;21448:145:0;;8395:2:1;21448:145:0::1;::::0;::::1;8377:21:1::0;8434:2;8414:18;;;8407:30;8473:34;8453:18;;;8446:62;-1:-1:-1;;;8524:18:1;;;8517:51;8585:19;;21448:145:0::1;8193:417:1::0;21448:145:0::1;21661:5;21640:13;10427:12:::0;;;10339:108;21640:13:::1;:17;::::0;21656:1:::1;21640:17;:::i;:::-;21639:27;;;;:::i;:::-;21626:9;:40;;21604:142;;;::::0;-1:-1:-1;;;21604:142:0;;8817:2:1;21604:142:0::1;::::0;::::1;8799:21:1::0;8856:2;8836:18;;;8829:30;8895:34;8875:18;;;8868:62;-1:-1:-1;;;8946:18:1;;;8939:50;9006:19;;21604:142:0::1;8615:416:1::0;21604:142:0::1;21757:36;21783:9;21882:18:::0;:30;21809:111;2873:238;2037:6;;-1:-1:-1;;;;;2037:6:0;872:10;2184:23;2176:68;;;;-1:-1:-1;;;2176:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2976:22:0;::::1;2954:110;;;::::0;-1:-1:-1;;;2954:110:0;;9238:2:1;2954:110:0::1;::::0;::::1;9220:21:1::0;9277:2;9257:18;;;9250:30;9316:34;9296:18;;;9289:62;-1:-1:-1;;;9367:18:1;;;9360:36;9413:19;;2954:110:0::1;9036:402:1::0;2954:110:0::1;3075:28;3094:8;3075:18;:28::i;17277:380::-:0;-1:-1:-1;;;;;17413:19:0;;17405:68;;;;-1:-1:-1;;;17405:68:0;;9645:2:1;17405:68:0;;;9627:21:1;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;17405:68:0;9443:400:1;17405:68:0;-1:-1:-1;;;;;17492:21:0;;17484:68;;;;-1:-1:-1;;;17484:68:0;;10050:2:1;17484:68:0;;;10032:21:1;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:32;10221:19;;17484:68:0;9848:398:1;17484:68:0;-1:-1:-1;;;;;17565:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17617:32;;1576:25:1;;;17617:32:0;;1549:18:1;17617:32:0;;;;;;;17277:380;;;:::o;23545:2394::-;-1:-1:-1;;;;;23677:18:0;;23669:68;;;;-1:-1:-1;;;23669:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23756:16:0;;23748:64;;;;-1:-1:-1;;;23748:64:0;;;;;;;:::i;:::-;23829:17;;;;23825:184;;;-1:-1:-1;;;;;23889:31:0;;;;;;:25;:31;;;;;;;;23863:134;;;;-1:-1:-1;;;23863:134:0;;11263:2:1;23863:134:0;;;11245:21:1;11302:2;11282:18;;;11275:30;11341:34;11321:18;;;11314:62;-1:-1:-1;;;11392:18:1;;;11385:39;11441:19;;23863:134:0;11061:405:1;23863:134:0;24025:6;24035:1;24025:11;24021:93;;24053:28;24069:4;24075:2;24079:1;24053:15;:28::i;:::-;23545:2394;;;:::o;24021:93::-;24130:14;;;;24126:462;;;2037:6;;-1:-1:-1;;;;;24183:15:0;;;2037:6;;24183:15;;;;:49;;-1:-1:-1;2037:6:0;;-1:-1:-1;;;;;24219:13:0;;;2037:6;;24219:13;;24183:49;:91;;;;-1:-1:-1;;;;;;24253:21:0;;24267:6;24253:21;;24183:91;:121;;;;-1:-1:-1;24296:8:0;;-1:-1:-1;;;24296:8:0;;;;24295:9;24183:121;24161:416;;;24344:13;;;;;;;24339:223;;-1:-1:-1;;;;;24416:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;24445:23:0;;;;;;:19;:23;;;;;;;;24416:52;24382:160;;;;-1:-1:-1;;;24382:160:0;;11673:2:1;24382:160:0;;;11655:21:1;11712:2;11692:18;;;11685:30;-1:-1:-1;;;11731:18:1;;;11724:52;11793:18;;24382:160:0;11471:346:1;24382:160:0;24649:4;24600:28;10627:18;;;;;;;;;;;24707;;24683:42;;;;;;;24756:35;;-1:-1:-1;24780:11:0;;;;;;;24756:35;:61;;;;-1:-1:-1;24809:8:0;;-1:-1:-1;;;24809:8:0;;;;24808:9;24756:61;:110;;;;-1:-1:-1;;;;;;24835:31:0;;;;;;:25;:31;;;;;;;;24834:32;24756:110;:153;;;;-1:-1:-1;;;;;;24884:25:0;;;;;;:19;:25;;;;;;;;24883:26;24756:153;:194;;;;-1:-1:-1;;;;;;24927:23:0;;;;;;:19;:23;;;;;;;;24926:24;24756:194;24738:326;;;24977:8;:15;;-1:-1:-1;;;;24977:15:0;-1:-1:-1;;;24977:15:0;;;25009:10;:8;:10::i;:::-;25036:8;:16;;-1:-1:-1;;;;25036:16:0;;;24738:326;25092:8;;-1:-1:-1;;;;;25202:25:0;;25076:12;25202:25;;;:19;:25;;;;;;25092:8;-1:-1:-1;;;25092:8:0;;;;;25091:9;;25202:25;;:52;;-1:-1:-1;;;;;;25231:23:0;;;;;;:19;:23;;;;;;;;25202:52;25198:100;;;-1:-1:-1;25281:5:0;25198:100;25310:11;25414:7;25410:476;;;-1:-1:-1;;;;;25466:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;25509:1;25499:7;;:11;25466:44;25462:278;;;25558:6;25547:7;;25538:6;:16;;;;:::i;:::-;25537:27;;;;:::i;:::-;25531:33;;25462:278;;;-1:-1:-1;;;;;25626:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;25670:1;25661:6;;:10;25626:45;25622:118;;;25718:6;25708;;25699;:15;;;;:::i;:::-;25698:26;;;;:::i;:::-;25692:32;;25622:118;25760:7;;25756:89;;25788:41;25804:4;25818;25825:3;25788:15;:41::i;:::-;25861:13;25871:3;25861:13;;:::i;:::-;;;25410:476;25898:33;25914:4;25920:2;25924:6;25898:15;:33::i;:::-;23658:2281;;;;23545:2394;;;:::o;21140:155::-;-1:-1:-1;;;;;21213:24:0;;21205:49;;;;-1:-1:-1;;;21205:49:0;;6898:2:1;21205:49:0;;;6880:21:1;6937:2;6917:18;;;6910:30;-1:-1:-1;;;6956:18:1;;;6949:42;7008:18;;21205:49:0;6696:336:1;21205:49:0;21265:9;:22;;-1:-1:-1;;;;;;21265:22:0;-1:-1:-1;;;;;21265:22:0;;;;;;;;;;21140:155::o;22289:232::-;22383:5;22372:7;:16;;:37;;;;;22404:5;22392:8;:17;;22372:37;22364:62;;;;-1:-1:-1;;;22364:62:0;;12157:2:1;22364:62:0;;;12139:21:1;12196:2;12176:18;;;12169:30;-1:-1:-1;;;12215:18:1;;;12208:42;12267:18;;22364:62:0;11955:336:1;22364:62:0;22468:6;:16;;;;22495:7;:18;22289:232::o;3271:191::-;3364:6;;;-1:-1:-1;;;;;3381:17:0;;;-1:-1:-1;;;;;;3381:17:0;;;;;;;3414:40;;3364:6;;;3381:17;3364:6;;3414:40;;3345:16;;3414:40;3334:128;3271:191;:::o;23215:188::-;-1:-1:-1;;;;;23298:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;23298:39:0;;;;;;;;;;23355:40;;23298:39;;:31;23355:40;;;23215:188;;:::o;22665:174::-;-1:-1:-1;;;;;22742:28:0;;;;;;:19;:28;;;;;;;;;:39;;-1:-1:-1;;22742:39:0;;;;;;;;;;22797:34;;1144:41:1;;;22797:34:0;;1117:18:1;22797:34:0;;;;;;;22665:174;;:::o;14824:651::-;-1:-1:-1;;;;;14964:20:0;;14956:70;;;;-1:-1:-1;;;14956:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15045:23:0;;15037:71;;;;-1:-1:-1;;;15037:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15145:17:0;;15121:21;15145:17;;;;;;;;;;;15195:23;;;;15173:111;;;;-1:-1:-1;;;15173:111:0;;12498:2:1;15173:111:0;;;12480:21:1;12537:2;12517:18;;;12510:30;12576:34;12556:18;;;12549:62;-1:-1:-1;;;12627:18:1;;;12620:36;12673:19;;15173:111:0;12296:402:1;15173:111:0;-1:-1:-1;;;;;15320:17:0;;;:9;:17;;;;;;;;;;;15340:22;;;15320:42;;15384:20;;;;;;;;:30;;15356:6;;15320:9;15384:30;;15356:6;;15384:30;:::i;:::-;;;;;;;;15449:9;-1:-1:-1;;;;;15432:35:0;15441:6;-1:-1:-1;;;;;15432:35:0;;15460:6;15432:35;;;;1576:25:1;;1564:2;1549:18;;1430:177;15432:35:0;;;;;;;;14945:530;14824:651;;;:::o;26526:584::-;26611:4;26565:25;10627:18;;;;;;;;;;;;26657:22;;;26653:61;;26696:7;;26526:584::o;26653:61::-;26750:18;;:23;;26771:2;26750:23;:::i;:::-;26730:17;:43;26726:119;;;26810:18;;:23;;26831:2;26810:23;:::i;:::-;26790:43;;26726:119;26885:21;26919:35;26936:17;26919:16;:35::i;:::-;26967:18;26988:41;27012:17;26988:21;:41;:::i;:::-;27064:9;;27056:46;;26967:62;;-1:-1:-1;;;;;;27064:9:0;;26967:62;;27056:46;;;;26967:62;27064:9;27056:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25947:571;26097:16;;;26111:1;26097:16;;;;;;;;26073:21;;26097:16;;;;;;;;;;-1:-1:-1;26097:16:0;26073:40;;26142:4;26124;26129:1;26124:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;26124:23:0;;;:7;;;;;;;;;:23;26168:4;;26158:7;;26168:4;;;26158;;26168;;26158:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;26158:14:0;;;-1:-1:-1;;;;;26158:14:0;;;;;26185:62;26202:4;26217:15;26235:11;26185:8;:62::i;:::-;26286:224;;-1:-1:-1;;;26286:224:0;;-1:-1:-1;;;;;26286:15:0;:66;;;;:224;;26367:11;;26393:1;;26437:4;;26464;;26484:15;;26286:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26002:516;25947:571;:::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:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2342:186::-;2401:6;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;2342:186;-1:-1:-1;;;2342:186:1:o;2533:248::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;-1:-1:-1;;2701:23:1;;;2771:2;2756:18;;;2743:32;;-1:-1:-1;2533:248:1:o;2786:118::-;2872:5;2865:13;2858:21;2851:5;2848:32;2838:60;;2894:1;2891;2884:12;2909:241;2965:6;3018:2;3006:9;2997:7;2993:23;2989:32;2986:52;;;3034:1;3031;3024:12;2986:52;3073:9;3060:23;3092:28;3114:5;3092:28;:::i;3155:315::-;3220:6;3228;3281:2;3269:9;3260:7;3256:23;3252:32;3249:52;;;3297:1;3294;3287:12;3249:52;3320:29;3339:9;3320:29;:::i;:::-;3310:39;;3399:2;3388:9;3384:18;3371:32;3412:28;3434:5;3412:28;:::i;:::-;3459:5;3449:15;;;3155:315;;;;;:::o;3475:260::-;3543:6;3551;3604:2;3592:9;3583:7;3579:23;3575:32;3572:52;;;3620:1;3617;3610:12;3572:52;3643:29;3662:9;3643:29;:::i;:::-;3633:39;;3691:38;3725:2;3714:9;3710:18;3691:38;:::i;:::-;3681:48;;3475:260;;;;;:::o;3740:180::-;3799:6;3852:2;3840:9;3831:7;3827:23;3823:32;3820:52;;;3868:1;3865;3858:12;3820:52;-1:-1:-1;3891:23:1;;3740:180;-1:-1:-1;3740:180:1:o;3925:380::-;4004:1;4000:12;;;;4047;;;4068:61;;4122:4;4114:6;4110:17;4100:27;;4068:61;4175:2;4167:6;4164:14;4144:18;4141:38;4138:161;;4221:10;4216:3;4212:20;4209:1;4202:31;4256:4;4253:1;4246:15;4284:4;4281:1;4274:15;4138:161;;3925:380;;;:::o;4719:356::-;4921:2;4903:21;;;4940:18;;;4933:30;4999:34;4994:2;4979:18;;4972:62;5066:2;5051:18;;4719:356::o;5080:184::-;5150:6;5203:2;5191:9;5182:7;5178:23;5174:32;5171:52;;;5219:1;5216;5209:12;5171:52;-1:-1:-1;5242:16:1;;5080:184;-1:-1:-1;5080:184:1:o;5548:245::-;5615:6;5668:2;5656:9;5647:7;5643:23;5639:32;5636:52;;;5684:1;5681;5674:12;5636:52;5716:9;5710:16;5735:28;5757:5;5735:28;:::i;5798:127::-;5859:10;5854:3;5850:20;5847:1;5840:31;5890:4;5887:1;5880:15;5914:4;5911:1;5904:15;5930:125;5995:9;;;6016:10;;;6013:36;;;6029:18;;:::i;7798:168::-;7871:9;;;7902;;7919:15;;;7913:22;;7899:37;7889:71;;7940:18;;:::i;7971:217::-;8011:1;8037;8027:132;;8081:10;8076:3;8072:20;8069:1;8062:31;8116:4;8113:1;8106:15;8144:4;8141:1;8134:15;8027:132;-1:-1:-1;8173:9:1;;7971:217::o;10251:401::-;10453:2;10435:21;;;10492:2;10472:18;;;10465:30;10531:34;10526:2;10511:18;;10504:62;-1:-1:-1;;;10597:2:1;10582:18;;10575:35;10642:3;10627:19;;10251:401::o;10657:399::-;10859:2;10841:21;;;10898:2;10878:18;;;10871:30;10937:34;10932:2;10917:18;;10910:62;-1:-1:-1;;;11003:2:1;10988:18;;10981:33;11046:3;11031:19;;10657:399::o;11822:128::-;11889:9;;;11910:11;;;11907:37;;;11924:18;;:::i;12835:127::-;12896:10;12891:3;12887:20;12884:1;12877:31;12927:4;12924:1;12917:15;12951:4;12948:1;12941:15;12967:980;13229:4;13277:3;13266:9;13262:19;13308:6;13297:9;13290:25;13334:2;13372:6;13367:2;13356:9;13352:18;13345:34;13415:3;13410:2;13399:9;13395:18;13388:31;13439:6;13474;13468:13;13505:6;13497;13490:22;13543:3;13532:9;13528:19;13521:26;;13582:2;13574:6;13570:15;13556:29;;13603:1;13613:195;13627:6;13624:1;13621:13;13613:195;;;13692:13;;-1:-1:-1;;;;;13688:39:1;13676:52;;13783:15;;;;13748:12;;;;13724:1;13642:9;13613:195;;;-1:-1:-1;;;;;;;13864:32:1;;;;13859:2;13844:18;;13837:60;-1:-1:-1;;;13928:3:1;13913:19;13906:35;13825:3;12967:980;-1:-1:-1;;;12967:980:1:o
Swarm Source
ipfs://8b5e6f8161905e559ed130af71e75578949d1d3810076a6156fac7f513eebe96
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.