ERC-20
Overview
Max Total Supply
100,000,000 REKT
Holders
83
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
600,000 REKTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
rekt
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-24 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.23; /* Website: https://www.rektcoin.com Twitter: https://x.com/RektCoin Telegram: https://t.me/dont_getrekt */ // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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); } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @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(0xB748033DfEb602F7248242246509098057fA0eb2); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @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.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - 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 { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } contract rekt is Context, ERC20, Ownable { uint256 private constant _tSupply = 100000000 * (10**18); uint256 public maxBuyAmount = (_tSupply * (6)) / (1000); uint256 public maxSellAmount = (_tSupply * (6)) / (1000); uint256 public maxWalletAmount = (_tSupply * (6)) / (1000); uint256 private _swapTokensAtAmount = (_tSupply * (1)) / (1000); IUniswapV2Router02 private uniswapV2Router; mapping(address => bool) public _excludedFees; mapping(address => bool) private _excludedMaxTx; mapping(address => bool) private _isBot; bool public tradingOpen; bool private _swapping; bool public swapEnabled; uint256 public constant FEE_DIVISOR = 1000; uint256 private _totalFees; uint256 private _devFee; uint256 public buyDevFee = 350; //35 % uint256 private _previousBuyDevFee = buyDevFee; uint256 public sellDevFee = 350; //35 % uint256 private _previousSellDevFee = sellDevFee; uint256 private _tokensForDev; address payable private _devWallet = payable(0xB748033DfEb602F7248242246509098057fA0eb2); address public uniswapV2Pair; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; address private constant ZERO = 0x0000000000000000000000000000000000000000; constructor() ERC20("Rekt", "REKT") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _excludedFees[owner()] = true; _excludedFees[address(this)] = true; _excludedFees[DEAD] = true; _excludedFees[address(0x627e73c40b858Ea41fD4fa6A83C603d0228269Bb)] = true; _excludedFees[address(0x70c2B28ddCb3be91802B8c375Ac2498260F9D5E1)] = true; _excludedMaxTx[owner()] = true; _excludedMaxTx[address(this)] = true; _excludedMaxTx[DEAD] = true; _excludedMaxTx[address(0x627e73c40b858Ea41fD4fa6A83C603d0228269Bb)] = true; _excludedMaxTx[address(0x70c2B28ddCb3be91802B8c375Ac2498260F9D5E1)] = true; _approve(address(this), address(uniswapV2Router), _tSupply); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _mint(owner(), (_tSupply * (40)) / (100)); _mint(address(0x627e73c40b858Ea41fD4fa6A83C603d0228269Bb), (_tSupply * (25)) / (100)); _mint(address(0x70c2B28ddCb3be91802B8c375Ac2498260F9D5E1), (_tSupply * (35)) / (100)); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != ZERO, "ERC20: transfer from the zero address"); require(to != ZERO, "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); bool takeFee = true; bool shouldSwap = false; if ( from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping ) { require(!_isBot[from] && !_isBot[to], "Bot."); if (!tradingOpen) require( _excludedFees[from] || _excludedFees[to], "Trading is not allowed yet." ); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludedMaxTx[to] ) { require( amount <= maxBuyAmount, "Transfer amount exceeds the maxBuyAmount." ); require( balanceOf(to) + amount <= maxWalletAmount, "Exceeds maximum wallet token amount." ); } if ( to == uniswapV2Pair && from != address(uniswapV2Router) && !_excludedMaxTx[from] ) { require( amount <= maxSellAmount, "Transfer amount exceeds the maxSellAmount." ); shouldSwap = true; } } if (_excludedFees[from] || _excludedFees[to]) takeFee = false; if (from != uniswapV2Pair && to != uniswapV2Pair) takeFee = false; uint256 contractBalance = balanceOf(address(this)); bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap; if ( canSwap && swapEnabled && !_swapping && !_excludedFees[from] && !_excludedFees[to] ) { _swapping = true; _swapBack(contractBalance); _swapping = false; } _tokenTransfer(from, to, amount, takeFee, shouldSwap); } function _swapBack(uint256 contractBalance) internal { uint256 totalTokensToSwap = (_tokensForDev); bool success; if (contractBalance == 0 || totalTokensToSwap == 0) return; if (contractBalance > _swapTokensAtAmount * (5)) contractBalance = _swapTokensAtAmount * (5); uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForETH(amountToSwapForETH); uint256 ETHBalance = address(this).balance - (initialETHBalance); uint256 ETHForDev = ETHBalance; _tokensForDev = 0; (success, ) = address(_devWallet).call{value: ETHForDev}(""); } function swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) internal { _devWallet.transfer(amount); } function isBot(address wallet) external view returns (bool) { return _isBot[wallet]; } function setSwapTokensAtAmount(uint256 swapTokensAtAmount) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } function setMarketingWallet(address devWallet) public onlyOwner { require(devWallet != ZERO, "_devWallet address cannot be 0"); _excludedFees[_devWallet] = false; _excludedMaxTx[_devWallet] = false; _devWallet = payable(devWallet); _excludedFees[_devWallet] = true; _excludedMaxTx[_devWallet] = true; } function excludeFromFees(address[] memory accounts, bool exclude) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) _excludedFees[accounts[i]] = exclude; } function excludeFromMaxTx(address[] memory accounts, bool exclude) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) _excludedMaxTx[accounts[i]] = exclude; } function dontGetREKT() public onlyOwner { require(!tradingOpen, "Trading is already open"); swapEnabled = true; tradingOpen = true; } function bots(address[] memory accounts, bool bl) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (accounts[i] != uniswapV2Pair) && (accounts[i] != address(this)) && (accounts[i] != address(uniswapV2Router)) ) _isBot[accounts[i]] = bl; } } function updateBuyTax(uint256 _buyDevFee) public onlyOwner { buyDevFee = _buyDevFee; } function updateSellTax(uint256 _sellDevFee) public onlyOwner { sellDevFee = _sellDevFee; } function removeFee() internal { if (buyDevFee == 0 && sellDevFee == 0) return; _previousBuyDevFee = buyDevFee; _previousSellDevFee = sellDevFee; buyDevFee = 0; sellDevFee = 0; } function restoreFee() internal { buyDevFee = _previousBuyDevFee; sellDevFee = _previousSellDevFee; } function setSwapEnabled(bool onoff) public onlyOwner { swapEnabled = onoff; } function setMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner { maxBuyAmount = _maxBuyAmount; } function setMaxSellAmount(uint256 _maxSellAmount) public onlyOwner { maxSellAmount = _maxSellAmount; } function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { maxWalletAmount = _maxWalletAmount; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee, bool isSell ) internal { if (!takeFee) removeFee(); else amount = _takeFees(sender, amount, isSell); super._transfer(sender, recipient, amount); if (!takeFee) restoreFee(); } function _takeFees( address sender, uint256 amount, bool isSell ) internal returns (uint256) { if (isSell) _setSell(); else _setBuy(); uint256 fees; if (_totalFees > 0) { fees = (amount * (_totalFees)) / (FEE_DIVISOR); _tokensForDev += (fees * _devFee) / _totalFees; } if (fees > 0) super._transfer(sender, address(this), fees); return amount -= fees; } function _setSell() internal { _devFee = sellDevFee; _totalFees = (_devFee); } function _setBuy() internal { _devFee = buyDevFee; _totalFees = (_devFee); } function unclog() public onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForETH(contractBalance); } function sendETHtoFees() public onlyOwner { uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function rescueETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawTokens(address tkn) public onlyOwner { require(tkn != address(this), "Cannot withdraw this token"); require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function removeLimits() public onlyOwner { maxBuyAmount = _tSupply; maxSellAmount = _tSupply; maxWalletAmount = _tSupply; } receive() external payable {} fallback() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_excludedFees","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"bl","type":"bool"}],"name":"bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","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":"dontGetREKT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendETHtoFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDevFee","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526103e86200001f6a52b7d2dcc80cd2e4000000600662000895565b6200002b9190620008b5565b6006556103e86a52b7d2dcc80cd2e400000060066200004b919062000895565b620000579190620008b5565b6007556103e8620000756a52b7d2dcc80cd2e4000000600662000895565b620000819190620008b5565b6008556103e86200009f6a52b7d2dcc80cd2e4000000600162000895565b620000ab9190620008b5565b60095561015e601181905560128190556013819055601455601680546001600160a01b03191673b748033dfeb602f7248242246509098057fa0eb2179055348015620000f5575f80fd5b506040518060400160405280600481526020016314995add60e21b81525060405180604001604052806004815260200163149152d560e21b815250816003908162000141919062000972565b50600462000150828262000972565b5050506200017873b748033dfeb602f7248242246509098057fa0eb26200063f60201b60201c565b600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556001600b5f620001b66005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff19958616179055308152600b90925281208054831660019081179091557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac341580548416821790557fd8fd3a1786cc6da106bb02622d19bd8ec78a1303ed097d750f36376a0288519280548416821790557370c2b28ddcb3be91802b8c375ac2498260f9d5e182527f4fb140b5a17935cbaa864bbdb0974e581ee9120dfaf16391edb4eaaf09e9394580549093168117909255600c90620002a16005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530808252600c9094529182208054851660019081179091557f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c80548616821790557f20b6c3dae44065665ea646df44a30f530428197bd598fa24009a5c706ec6826880548616821790557370c2b28ddcb3be91802b8c375ac2498260f9d5e19092527f217ae3e3fe8a0a009272f4d1797c8f49be687b7f4415341d76e856f963af073e8054909416909117909255600a546200039792166a52b7d2dcc80cd2e400000062000690565b600a5f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200040e919062000a3e565b6001600160a01b031663c9c6539630600a5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200046e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000494919062000a3e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620004df573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000505919062000a3e565b601780546001600160a01b0319166001600160a01b03928316908117909155600a5460405163095ea7b360e01b8152921660048301525f1960248301529063095ea7b3906044016020604051808303815f875af115801562000569573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200058f919062000a6d565b50620005d3620005a76005546001600160a01b031690565b6064620005c16a52b7d2dcc80cd2e4000000602862000895565b620005cd9190620008b5565b620007bb565b6200060673627e73c40b858ea41fd4fa6a83c603d0228269bb6064620005c16a52b7d2dcc80cd2e4000000601962000895565b620006397370c2b28ddcb3be91802b8c375ac2498260f9d5e16064620005c16a52b7d2dcc80cd2e4000000602362000895565b62000aa4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620006f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200075b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620006ef565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620008135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006ef565b8060025f82825462000826919062000a8e565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008af57620008af62000881565b92915050565b5f82620008d057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620008fe57607f821691505b6020821081036200091d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200087c57805f5260205f20601f840160051c810160208510156200094a5750805b601f840160051c820191505b818110156200096b575f815560010162000956565b5050505050565b81516001600160401b038111156200098e576200098e620008d5565b620009a6816200099f8454620008e9565b8462000923565b602080601f831160018114620009dc575f8415620009c45750858301515b5f19600386901b1c1916600185901b17855562000a36565b5f85815260208120601f198616915b8281101562000a0c57888601518255948401946001909101908401620009eb565b508582101562000a2a57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000a4f575f80fd5b81516001600160a01b038116811462000a66575f80fd5b9392505050565b5f6020828403121562000a7e575f80fd5b8151801515811462000a66575f80fd5b80820180821115620008af57620008af62000881565b61207f8062000ab25f395ff3fe60806040526004361061023c575f3560e01c8063715018a61161012c578063aa4bde28116100af578063dd62ed3e11610076578063dd62ed3e14610680578063e01af92c1461069f578063e99c9d09146106be578063f2fde38b146106dd578063f34eb0b8146106fc578063ffb54a991461071b57005b8063aa4bde28146105fa578063ad29ffde1461060f578063afa4f3b21461062e578063c04a894c1461064d578063ca5e377f1461066c57005b80639c3b4fdc116100f35780639c3b4fdc1461057d5780639e93ad8e14610592578063a0d82dc5146105a7578063a457c2d7146105bc578063a9059cbb146105db57005b8063715018a61461050f578063751039fc1461052357806388e765ff146105375780638da5cb5b1461054c57806395d89b411461056957005b806339509351116101bf5780635d098b38116101865780635d098b381461045557806366d602ae1461047457806367c45349146104895780636ddd17131461049d5780636eeb1e0e146104bc57806370a08231146104db57005b8063395093511461038a5780633bbac579146103a9578063436d3340146103e057806349bd5a5e146103ff57806349df728c1461043657005b806323b872dd1161020357806323b872dd146102ef57806327a14fc21461030e578063313ce5671461032d578063351f37191461034857806337c59b5a1461035c57005b806306fdde0314610245578063095ea7b31461026f57806312185a391461029e57806318160ddd146102bd57806320800a00146102db57005b3661024357005b005b348015610250575f80fd5b50610259610734565b6040516102669190611be6565b60405180910390f35b34801561027a575f80fd5b5061028e610289366004611c56565b6107c4565b6040519015158152602001610266565b3480156102a9575f80fd5b506102436102b8366004611c80565b6107dd565b3480156102c8575f80fd5b506002545b604051908152602001610266565b3480156102e6575f80fd5b506102436107ea565b3480156102fa575f80fd5b5061028e610309366004611c97565b61083c565b348015610319575f80fd5b50610243610328366004611c80565b61085f565b348015610338575f80fd5b5060405160128152602001610266565b348015610353575f80fd5b5061024361086c565b348015610367575f80fd5b5061028e610376366004611cd5565b600b6020525f908152604090205460ff1681565b348015610395575f80fd5b5061028e6103a4366004611c56565b6108df565b3480156103b4575f80fd5b5061028e6103c3366004611cd5565b6001600160a01b03165f908152600d602052604090205460ff1690565b3480156103eb575f80fd5b506102436103fa366004611c80565b610900565b34801561040a575f80fd5b5060175461041e906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b348015610441575f80fd5b50610243610450366004611cd5565b61090d565b348015610460575f80fd5b5061024361046f366004611cd5565b610aec565b34801561047f575f80fd5b506102cd60075481565b348015610494575f80fd5b50610243610bc7565b3480156104a8575f80fd5b50600e5461028e9062010000900460ff1681565b3480156104c7575f80fd5b506102436104d6366004611d23565b610bea565b3480156104e6575f80fd5b506102cd6104f5366004611cd5565b6001600160a01b03165f9081526020819052604090205490565b34801561051a575f80fd5b50610243610c4c565b34801561052e575f80fd5b50610243610c5f565b348015610542575f80fd5b506102cd60065481565b348015610557575f80fd5b506005546001600160a01b031661041e565b348015610574575f80fd5b50610259610c82565b348015610588575f80fd5b506102cd60115481565b34801561059d575f80fd5b506102cd6103e881565b3480156105b2575f80fd5b506102cd60135481565b3480156105c7575f80fd5b5061028e6105d6366004611c56565b610c91565b3480156105e6575f80fd5b5061028e6105f5366004611c56565b610d0b565b348015610605575f80fd5b506102cd60085481565b34801561061a575f80fd5b50610243610629366004611d23565b610d18565b348015610639575f80fd5b50610243610648366004611c80565b610d7a565b348015610658575f80fd5b50610243610667366004611d23565b610d87565b348015610677575f80fd5b50610243610ea6565b34801561068b575f80fd5b506102cd61069a366004611df5565b610eb8565b3480156106aa575f80fd5b506102436106b9366004611e2c565b610ee2565b3480156106c9575f80fd5b506102436106d8366004611c80565b610f06565b3480156106e8575f80fd5b506102436106f7366004611cd5565b610f13565b348015610707575f80fd5b50610243610716366004611c80565b610f89565b348015610726575f80fd5b50600e5461028e9060ff1681565b60606003805461074390611e47565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90611e47565b80156107ba5780601f10610791576101008083540402835291602001916107ba565b820191905f5260205f20905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b5f336107d1818585610f96565b60019150505b92915050565b6107e56110b9565b601355565b6107f26110b9565b6040515f90339047908381818185875af1925050503d805f8114610831576040519150601f19603f3d011682016040523d82523d5f602084013e610836565b606091505b50505050565b5f33610849858285611113565b610854858585611185565b506001949350505050565b6108676110b9565b600855565b6108746110b9565b600e5460ff16156108cc5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600e805462ff00ff191662010001179055565b5f336107d18185856108f18383610eb8565b6108fb9190611e93565b610f96565b6109086110b9565b601155565b6109156110b9565b306001600160a01b0382160361096d5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e00000000000060448201526064016108c3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156109b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d59190611ea6565b11610a0e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108c3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a769190611ea6565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610ac3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae79190611ebd565b505050565b610af46110b9565b6001600160a01b038116610b4a5760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f742062652030000060448201526064016108c3565b601680546001600160a01b039081165f908152600b60208181526040808420805460ff19908116909155865486168552600c80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610bcf6110b9565b305f90815260208190526040902054610be78161170a565b50565b610bf26110b9565b5f5b8251811015610ae75781600c5f858481518110610c1357610c13611ed8565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610bf4565b610c546110b9565b610c5d5f61185a565b565b610c676110b9565b6a52b7d2dcc80cd2e400000060068190556007819055600855565b60606004805461074390611e47565b5f3381610c9e8286610eb8565b905083811015610cfe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108c3565b6108548286868403610f96565b5f336107d1818585611185565b610d206110b9565b5f5b8251811015610ae75781600b5f858481518110610d4157610d41611ed8565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610d22565b610d826110b9565b600955565b610d8f6110b9565b5f5b8251811015610ae75760175483516001600160a01b0390911690849083908110610dbd57610dbd611ed8565b60200260200101516001600160a01b031614158015610e075750306001600160a01b0316838281518110610df357610df3611ed8565b60200260200101516001600160a01b031614155b8015610e455750600a5483516001600160a01b0390911690849083908110610e3157610e31611ed8565b60200260200101516001600160a01b031614155b15610e9e5781600d5f858481518110610e6057610e60611ed8565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610d91565b610eae6110b9565b47610be7816118ab565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610eea6110b9565b600e8054911515620100000262ff000019909216919091179055565b610f0e6110b9565b600755565b610f1b6110b9565b6001600160a01b038116610f805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c3565b610be78161185a565b610f916110b9565b600655565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108c3565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108c3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c3565b5f61111e8484610eb8565b90505f19811461083657818110156111785760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108c3565b6108368484848403610f96565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016108c390611eec565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016108c390611f31565b5f81116112325760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108c3565b60015f6112476005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561127657506005546001600160a01b03858116911614155b801561128a57506001600160a01b03841615155b80156112a157506001600160a01b03841661dead14155b80156112b55750600e54610100900460ff16155b156115bd576001600160a01b0385165f908152600d602052604090205460ff161580156112fa57506001600160a01b0384165f908152600d602052604090205460ff16155b61132f5760405162461bcd60e51b81526004016108c3906020808252600490820152632137ba1760e11b604082015260600190565b600e5460ff166113c2576001600160a01b0385165f908152600b602052604090205460ff168061137657506001600160a01b0384165f908152600b602052604090205460ff165b6113c25760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e000000000060448201526064016108c3565b6017546001600160a01b0386811691161480156113ed5750600a546001600160a01b03858116911614155b801561141157506001600160a01b0384165f908152600c602052604090205460ff16155b156115005760065483111561147a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b60648201526084016108c3565b6008548361149c866001600160a01b03165f9081526020819052604090205490565b6114a69190611e93565b11156115005760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016108c3565b6017546001600160a01b03858116911614801561152b5750600a546001600160a01b03868116911614155b801561154f57506001600160a01b0385165f908152600c602052604090205460ff16155b156115bd576007548311156115b95760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b60648201526084016108c3565b5060015b6001600160a01b0385165f908152600b602052604090205460ff16806115fa57506001600160a01b0384165f908152600b602052604090205460ff165b15611603575f91505b6017546001600160a01b0386811691161480159061162f57506017546001600160a01b03858116911614155b15611638575f91505b305f9081526020819052604081205490505f600954821180156116585750825b905080801561166f5750600e5462010000900460ff165b80156116835750600e54610100900460ff16155b80156116a757506001600160a01b0387165f908152600b602052604090205460ff16155b80156116cb57506001600160a01b0386165f908152600b602052604090205460ff16155b156116f457600e805461ff0019166101001790556116e8826118e6565b600e805461ff00191690555b61170187878787876119a1565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061173d5761173d611ed8565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611794573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b89190611f74565b816001815181106117cb576117cb611ed8565b6001600160a01b039283166020918202929092010152600a546117f19130911684610f96565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac947906118299085905f90869030904290600401611f8f565b5f604051808303815f87803b158015611840575f80fd5b505af1158015611852573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6016546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156118e2573d5f803e3d5ffd5b5050565b6015545f8215806118f5575081155b156118ff57505050565b60095461190d906005612000565b83111561192557600954611922906005612000565b92505b82476119308261170a565b5f61193b8247612017565b5f601581905560165460405192935083926001600160a01b039091169183919081818185875af1925050503d805f8114611990576040519150601f19603f3d011682016040523d82523d5f602084013e611995565b606091505b50505050505050505050565b816119b3576119ae6119e9565b6119c1565b6119be858483611a16565b92505b6119cc858585611abe565b816119e2576119e2601254601155601454601355565b5050505050565b6011541580156119f95750601354155b15611a0057565b60118054601255601380546014555f9182905555565b5f8115611a3257611a2d6013546010819055600f55565b611a42565b611a426011546010819055600f55565b600f545f9015611a9a576103e8600f5485611a5d9190612000565b611a67919061202a565b9050600f5460105482611a7a9190612000565b611a84919061202a565b60155f828254611a949190611e93565b90915550505b8015611aab57611aab853083611abe565b611ab58185612017565b95945050505050565b6001600160a01b038316611ae45760405162461bcd60e51b81526004016108c390611eec565b6001600160a01b038216611b0a5760405162461bcd60e51b81526004016108c390611f31565b6001600160a01b0383165f9081526020819052604090205481811015611b815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108c3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610836565b5f602080835283518060208501525f5b81811015611c1257858101830151858201604001528201611bf6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610be7575f80fd5b8035611c5181611c32565b919050565b5f8060408385031215611c67575f80fd5b8235611c7281611c32565b946020939093013593505050565b5f60208284031215611c90575f80fd5b5035919050565b5f805f60608486031215611ca9575f80fd5b8335611cb481611c32565b92506020840135611cc481611c32565b929592945050506040919091013590565b5f60208284031215611ce5575f80fd5b8135611cf081611c32565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610be7575f80fd5b8035611c5181611d0b565b5f8060408385031215611d34575f80fd5b823567ffffffffffffffff80821115611d4b575f80fd5b818501915085601f830112611d5e575f80fd5b8135602082821115611d7257611d72611cf7565b8160051b604051601f19603f83011681018181108682111715611d9757611d97611cf7565b604052928352818301935084810182019289841115611db4575f80fd5b948201945b83861015611dd957611dca86611c46565b85529482019493820193611db9565b9650611de89050878201611d18565b9450505050509250929050565b5f8060408385031215611e06575f80fd5b8235611e1181611c32565b91506020830135611e2181611c32565b809150509250929050565b5f60208284031215611e3c575f80fd5b8135611cf081611d0b565b600181811c90821680611e5b57607f821691505b602082108103611e7957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107d7576107d7611e7f565b5f60208284031215611eb6575f80fd5b5051919050565b5f60208284031215611ecd575f80fd5b8151611cf081611d0b565b634e487b7160e01b5f52603260045260245ffd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611f84575f80fd5b8151611cf081611c32565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611fdf5784516001600160a01b031683529383019391830191600101611fba565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176107d7576107d7611e7f565b818103818111156107d7576107d7611e7f565b5f8261204457634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220eff516eb977fd444c2c7ac233af658c1593fd8c476632aea458d93cfb7ff7af764736f6c63430008170033
Deployed Bytecode
0x60806040526004361061023c575f3560e01c8063715018a61161012c578063aa4bde28116100af578063dd62ed3e11610076578063dd62ed3e14610680578063e01af92c1461069f578063e99c9d09146106be578063f2fde38b146106dd578063f34eb0b8146106fc578063ffb54a991461071b57005b8063aa4bde28146105fa578063ad29ffde1461060f578063afa4f3b21461062e578063c04a894c1461064d578063ca5e377f1461066c57005b80639c3b4fdc116100f35780639c3b4fdc1461057d5780639e93ad8e14610592578063a0d82dc5146105a7578063a457c2d7146105bc578063a9059cbb146105db57005b8063715018a61461050f578063751039fc1461052357806388e765ff146105375780638da5cb5b1461054c57806395d89b411461056957005b806339509351116101bf5780635d098b38116101865780635d098b381461045557806366d602ae1461047457806367c45349146104895780636ddd17131461049d5780636eeb1e0e146104bc57806370a08231146104db57005b8063395093511461038a5780633bbac579146103a9578063436d3340146103e057806349bd5a5e146103ff57806349df728c1461043657005b806323b872dd1161020357806323b872dd146102ef57806327a14fc21461030e578063313ce5671461032d578063351f37191461034857806337c59b5a1461035c57005b806306fdde0314610245578063095ea7b31461026f57806312185a391461029e57806318160ddd146102bd57806320800a00146102db57005b3661024357005b005b348015610250575f80fd5b50610259610734565b6040516102669190611be6565b60405180910390f35b34801561027a575f80fd5b5061028e610289366004611c56565b6107c4565b6040519015158152602001610266565b3480156102a9575f80fd5b506102436102b8366004611c80565b6107dd565b3480156102c8575f80fd5b506002545b604051908152602001610266565b3480156102e6575f80fd5b506102436107ea565b3480156102fa575f80fd5b5061028e610309366004611c97565b61083c565b348015610319575f80fd5b50610243610328366004611c80565b61085f565b348015610338575f80fd5b5060405160128152602001610266565b348015610353575f80fd5b5061024361086c565b348015610367575f80fd5b5061028e610376366004611cd5565b600b6020525f908152604090205460ff1681565b348015610395575f80fd5b5061028e6103a4366004611c56565b6108df565b3480156103b4575f80fd5b5061028e6103c3366004611cd5565b6001600160a01b03165f908152600d602052604090205460ff1690565b3480156103eb575f80fd5b506102436103fa366004611c80565b610900565b34801561040a575f80fd5b5060175461041e906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b348015610441575f80fd5b50610243610450366004611cd5565b61090d565b348015610460575f80fd5b5061024361046f366004611cd5565b610aec565b34801561047f575f80fd5b506102cd60075481565b348015610494575f80fd5b50610243610bc7565b3480156104a8575f80fd5b50600e5461028e9062010000900460ff1681565b3480156104c7575f80fd5b506102436104d6366004611d23565b610bea565b3480156104e6575f80fd5b506102cd6104f5366004611cd5565b6001600160a01b03165f9081526020819052604090205490565b34801561051a575f80fd5b50610243610c4c565b34801561052e575f80fd5b50610243610c5f565b348015610542575f80fd5b506102cd60065481565b348015610557575f80fd5b506005546001600160a01b031661041e565b348015610574575f80fd5b50610259610c82565b348015610588575f80fd5b506102cd60115481565b34801561059d575f80fd5b506102cd6103e881565b3480156105b2575f80fd5b506102cd60135481565b3480156105c7575f80fd5b5061028e6105d6366004611c56565b610c91565b3480156105e6575f80fd5b5061028e6105f5366004611c56565b610d0b565b348015610605575f80fd5b506102cd60085481565b34801561061a575f80fd5b50610243610629366004611d23565b610d18565b348015610639575f80fd5b50610243610648366004611c80565b610d7a565b348015610658575f80fd5b50610243610667366004611d23565b610d87565b348015610677575f80fd5b50610243610ea6565b34801561068b575f80fd5b506102cd61069a366004611df5565b610eb8565b3480156106aa575f80fd5b506102436106b9366004611e2c565b610ee2565b3480156106c9575f80fd5b506102436106d8366004611c80565b610f06565b3480156106e8575f80fd5b506102436106f7366004611cd5565b610f13565b348015610707575f80fd5b50610243610716366004611c80565b610f89565b348015610726575f80fd5b50600e5461028e9060ff1681565b60606003805461074390611e47565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90611e47565b80156107ba5780601f10610791576101008083540402835291602001916107ba565b820191905f5260205f20905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b5f336107d1818585610f96565b60019150505b92915050565b6107e56110b9565b601355565b6107f26110b9565b6040515f90339047908381818185875af1925050503d805f8114610831576040519150601f19603f3d011682016040523d82523d5f602084013e610836565b606091505b50505050565b5f33610849858285611113565b610854858585611185565b506001949350505050565b6108676110b9565b600855565b6108746110b9565b600e5460ff16156108cc5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600e805462ff00ff191662010001179055565b5f336107d18185856108f18383610eb8565b6108fb9190611e93565b610f96565b6109086110b9565b601155565b6109156110b9565b306001600160a01b0382160361096d5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e00000000000060448201526064016108c3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156109b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d59190611ea6565b11610a0e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108c3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a769190611ea6565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610ac3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae79190611ebd565b505050565b610af46110b9565b6001600160a01b038116610b4a5760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f742062652030000060448201526064016108c3565b601680546001600160a01b039081165f908152600b60208181526040808420805460ff19908116909155865486168552600c80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610bcf6110b9565b305f90815260208190526040902054610be78161170a565b50565b610bf26110b9565b5f5b8251811015610ae75781600c5f858481518110610c1357610c13611ed8565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610bf4565b610c546110b9565b610c5d5f61185a565b565b610c676110b9565b6a52b7d2dcc80cd2e400000060068190556007819055600855565b60606004805461074390611e47565b5f3381610c9e8286610eb8565b905083811015610cfe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108c3565b6108548286868403610f96565b5f336107d1818585611185565b610d206110b9565b5f5b8251811015610ae75781600b5f858481518110610d4157610d41611ed8565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610d22565b610d826110b9565b600955565b610d8f6110b9565b5f5b8251811015610ae75760175483516001600160a01b0390911690849083908110610dbd57610dbd611ed8565b60200260200101516001600160a01b031614158015610e075750306001600160a01b0316838281518110610df357610df3611ed8565b60200260200101516001600160a01b031614155b8015610e455750600a5483516001600160a01b0390911690849083908110610e3157610e31611ed8565b60200260200101516001600160a01b031614155b15610e9e5781600d5f858481518110610e6057610e60611ed8565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610d91565b610eae6110b9565b47610be7816118ab565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610eea6110b9565b600e8054911515620100000262ff000019909216919091179055565b610f0e6110b9565b600755565b610f1b6110b9565b6001600160a01b038116610f805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c3565b610be78161185a565b610f916110b9565b600655565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108c3565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108c3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c3565b5f61111e8484610eb8565b90505f19811461083657818110156111785760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108c3565b6108368484848403610f96565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016108c390611eec565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016108c390611f31565b5f81116112325760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108c3565b60015f6112476005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561127657506005546001600160a01b03858116911614155b801561128a57506001600160a01b03841615155b80156112a157506001600160a01b03841661dead14155b80156112b55750600e54610100900460ff16155b156115bd576001600160a01b0385165f908152600d602052604090205460ff161580156112fa57506001600160a01b0384165f908152600d602052604090205460ff16155b61132f5760405162461bcd60e51b81526004016108c3906020808252600490820152632137ba1760e11b604082015260600190565b600e5460ff166113c2576001600160a01b0385165f908152600b602052604090205460ff168061137657506001600160a01b0384165f908152600b602052604090205460ff165b6113c25760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e000000000060448201526064016108c3565b6017546001600160a01b0386811691161480156113ed5750600a546001600160a01b03858116911614155b801561141157506001600160a01b0384165f908152600c602052604090205460ff16155b156115005760065483111561147a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b60648201526084016108c3565b6008548361149c866001600160a01b03165f9081526020819052604090205490565b6114a69190611e93565b11156115005760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016108c3565b6017546001600160a01b03858116911614801561152b5750600a546001600160a01b03868116911614155b801561154f57506001600160a01b0385165f908152600c602052604090205460ff16155b156115bd576007548311156115b95760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b60648201526084016108c3565b5060015b6001600160a01b0385165f908152600b602052604090205460ff16806115fa57506001600160a01b0384165f908152600b602052604090205460ff165b15611603575f91505b6017546001600160a01b0386811691161480159061162f57506017546001600160a01b03858116911614155b15611638575f91505b305f9081526020819052604081205490505f600954821180156116585750825b905080801561166f5750600e5462010000900460ff165b80156116835750600e54610100900460ff16155b80156116a757506001600160a01b0387165f908152600b602052604090205460ff16155b80156116cb57506001600160a01b0386165f908152600b602052604090205460ff16155b156116f457600e805461ff0019166101001790556116e8826118e6565b600e805461ff00191690555b61170187878787876119a1565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061173d5761173d611ed8565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611794573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b89190611f74565b816001815181106117cb576117cb611ed8565b6001600160a01b039283166020918202929092010152600a546117f19130911684610f96565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac947906118299085905f90869030904290600401611f8f565b5f604051808303815f87803b158015611840575f80fd5b505af1158015611852573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6016546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156118e2573d5f803e3d5ffd5b5050565b6015545f8215806118f5575081155b156118ff57505050565b60095461190d906005612000565b83111561192557600954611922906005612000565b92505b82476119308261170a565b5f61193b8247612017565b5f601581905560165460405192935083926001600160a01b039091169183919081818185875af1925050503d805f8114611990576040519150601f19603f3d011682016040523d82523d5f602084013e611995565b606091505b50505050505050505050565b816119b3576119ae6119e9565b6119c1565b6119be858483611a16565b92505b6119cc858585611abe565b816119e2576119e2601254601155601454601355565b5050505050565b6011541580156119f95750601354155b15611a0057565b60118054601255601380546014555f9182905555565b5f8115611a3257611a2d6013546010819055600f55565b611a42565b611a426011546010819055600f55565b600f545f9015611a9a576103e8600f5485611a5d9190612000565b611a67919061202a565b9050600f5460105482611a7a9190612000565b611a84919061202a565b60155f828254611a949190611e93565b90915550505b8015611aab57611aab853083611abe565b611ab58185612017565b95945050505050565b6001600160a01b038316611ae45760405162461bcd60e51b81526004016108c390611eec565b6001600160a01b038216611b0a5760405162461bcd60e51b81526004016108c390611f31565b6001600160a01b0383165f9081526020819052604090205481811015611b815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108c3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610836565b5f602080835283518060208501525f5b81811015611c1257858101830151858201604001528201611bf6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610be7575f80fd5b8035611c5181611c32565b919050565b5f8060408385031215611c67575f80fd5b8235611c7281611c32565b946020939093013593505050565b5f60208284031215611c90575f80fd5b5035919050565b5f805f60608486031215611ca9575f80fd5b8335611cb481611c32565b92506020840135611cc481611c32565b929592945050506040919091013590565b5f60208284031215611ce5575f80fd5b8135611cf081611c32565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610be7575f80fd5b8035611c5181611d0b565b5f8060408385031215611d34575f80fd5b823567ffffffffffffffff80821115611d4b575f80fd5b818501915085601f830112611d5e575f80fd5b8135602082821115611d7257611d72611cf7565b8160051b604051601f19603f83011681018181108682111715611d9757611d97611cf7565b604052928352818301935084810182019289841115611db4575f80fd5b948201945b83861015611dd957611dca86611c46565b85529482019493820193611db9565b9650611de89050878201611d18565b9450505050509250929050565b5f8060408385031215611e06575f80fd5b8235611e1181611c32565b91506020830135611e2181611c32565b809150509250929050565b5f60208284031215611e3c575f80fd5b8135611cf081611d0b565b600181811c90821680611e5b57607f821691505b602082108103611e7957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107d7576107d7611e7f565b5f60208284031215611eb6575f80fd5b5051919050565b5f60208284031215611ecd575f80fd5b8151611cf081611d0b565b634e487b7160e01b5f52603260045260245ffd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611f84575f80fd5b8151611cf081611c32565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611fdf5784516001600160a01b031683529383019391830191600101611fba565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176107d7576107d7611e7f565b818103818111156107d7576107d7611e7f565b5f8261204457634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220eff516eb977fd444c2c7ac233af658c1593fd8c476632aea458d93cfb7ff7af764736f6c63430008170033
Deployed Bytecode Sourcemap
21486:11179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9062:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11554:242;;;;;;;;;;-1:-1:-1;11554:242:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;11554:242:0;1162:187:1;29575:104:0;;;;;;;;;;-1:-1:-1;29575:104:0;;;;;:::i;:::-;;:::i;10182:108::-;;;;;;;;;;-1:-1:-1;10270:12:0;;10182:108;;;1685:25:1;;;1673:2;1658:18;10182:108:0;1539:177:1;31920:176:0;;;;;;;;;;;;;:::i;12376:295::-;;;;;;;;;;-1:-1:-1;12376:295:0;;;;;:::i;:::-;;:::i;30400:124::-;;;;;;;;;;-1:-1:-1;30400:124:0;;;;;:::i;:::-;;:::i;10024:93::-;;;;;;;;;;-1:-1:-1;10024:93:0;;10107:2;2324:36:1;;2312:2;2297:18;10024:93:0;2182:184:1;28923:165:0;;;;;;;;;;;;;:::i;21910:45::-;;;;;;;;;;-1:-1:-1;21910:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13080:270;;;;;;;;;;-1:-1:-1;13080:270:0;;;;;:::i;:::-;;:::i;27822:100::-;;;;;;;;;;-1:-1:-1;27822:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;27900:14:0;27876:4;27900:14;;;:6;:14;;;;;;;;;27822:100;29467;;;;;;;;;;-1:-1:-1;29467:100:0;;;;;:::i;:::-;;:::i;22605:28::-;;;;;;;;;;-1:-1:-1;22605:28:0;;;;-1:-1:-1;;;;;22605:28:0;;;;;;-1:-1:-1;;;;;2787:32:1;;;2769:51;;2757:2;2742:18;22605:28:0;2623:203:1;32104:320:0;;;;;;;;;;-1:-1:-1;32104:320:0;;;;;:::i;:::-;;:::i;28096:361::-;;;;;;;;;;-1:-1:-1;28096:361:0;;;;;:::i;:::-;;:::i;21661:56::-;;;;;;;;;;;;;;;;31602:148;;;;;;;;;;;;;:::i;22121:23::-;;;;;;;;;;-1:-1:-1;22121:23:0;;;;;;;;;;;28693:222;;;;;;;;;;-1:-1:-1;28693:222:0;;;;;:::i;:::-;;:::i;10353:177::-;;;;;;;;;;-1:-1:-1;10353:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10504:18:0;10472:7;10504:18;;;;;;;;;;;;10353:177;6165:103;;;;;;;;;;;;;:::i;32432:155::-;;;;;;;;;;;;;:::i;21599:55::-;;;;;;;;;;;;;;;;5517:87;;;;;;;;;;-1:-1:-1;5590:6:0;;-1:-1:-1;;;;;5590:6:0;5517:87;;9281:104;;;;;;;;;;;;;:::i;22267:30::-;;;;;;;;;;;;;;;;22153:42;;;;;;;;;;;;22191:4;22153:42;;22366:31;;;;;;;;;;;;;;;;13853:503;;;;;;;;;;-1:-1:-1;13853:503:0;;;;;:::i;:::-;;:::i;10736:234::-;;;;;;;;;;-1:-1:-1;10736:234:0;;;;;:::i;:::-;;:::i;21724:58::-;;;;;;;;;;;;;;;;28465:220;;;;;;;;;;-1:-1:-1;28465:220:0;;;;;:::i;:::-;;:::i;27930:158::-;;;;;;;;;;-1:-1:-1;27930:158:0;;;;;:::i;:::-;;:::i;29096:363::-;;;;;;;;;;-1:-1:-1;29096:363:0;;;;;:::i;:::-;;:::i;31758:154::-;;;;;;;;;;;;;:::i;11033:201::-;;;;;;;;;;-1:-1:-1;11033:201:0;;;;;:::i;:::-;;:::i;30057:91::-;;;;;;;;;;-1:-1:-1;30057:91:0;;;;;:::i;:::-;;:::i;30276:116::-;;;;;;;;;;-1:-1:-1;30276:116:0;;;;;:::i;:::-;;:::i;6423:238::-;;;;;;;;;;-1:-1:-1;6423:238:0;;;;;:::i;:::-;;:::i;30156:112::-;;;;;;;;;;-1:-1:-1;30156:112:0;;;;;:::i;:::-;;:::i;22062:23::-;;;;;;;;;;-1:-1:-1;22062:23:0;;;;;;;;9062:100;9116:13;9149:5;9142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9062:100;:::o;11554:242::-;11673:4;859:10;11734:32;859:10;11750:7;11759:6;11734:8;:32::i;:::-;11784:4;11777:11;;;11554:242;;;;;:::o;29575:104::-;5403:13;:11;:13::i;:::-;29647:10:::1;:24:::0;29575:104::o;31920:176::-;5403:13;:11;:13::i;:::-;32006:82:::1;::::0;31969:12:::1;::::0;32014:10:::1;::::0;32038:21:::1;::::0;31969:12;32006:82;31969:12;32006:82;32038:21;32014:10;32006:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;31920:176:0:o;12376:295::-;12507:4;859:10;12565:38;12581:4;859:10;12596:6;12565:15;:38::i;:::-;12614:27;12624:4;12630:2;12634:6;12614:9;:27::i;:::-;-1:-1:-1;12659:4:0;;12376:295;-1:-1:-1;;;;12376:295:0:o;30400:124::-;5403:13;:11;:13::i;:::-;30482:15:::1;:34:::0;30400:124::o;28923:165::-;5403:13;:11;:13::i;:::-;28983:11:::1;::::0;::::1;;28982:12;28974:48;;;::::0;-1:-1:-1;;;28974:48:0;;5851:2:1;28974:48:0::1;::::0;::::1;5833:21:1::0;5890:2;5870:18;;;5863:30;5929:25;5909:18;;;5902:53;5972:18;;28974:48:0::1;;;;;;;;;29033:11;:18:::0;;-1:-1:-1;;29062:18:0;;;;;28923:165::o;13080:270::-;13195:4;859:10;13256:64;859:10;13272:7;13309:10;13281:25;859:10;13272:7;13281:9;:25::i;:::-;:38;;;;:::i;:::-;13256:8;:64::i;29467:100::-;5403:13;:11;:13::i;:::-;29537:9:::1;:22:::0;29467:100::o;32104:320::-;5403:13;:11;:13::i;:::-;32192:4:::1;-1:-1:-1::0;;;;;32177:20:0;::::1;::::0;32169:59:::1;;;::::0;-1:-1:-1;;;32169:59:0;;6465:2:1;32169:59:0::1;::::0;::::1;6447:21:1::0;6504:2;6484:18;;;6477:30;6543:28;6523:18;;;6516:56;6589:18;;32169:59:0::1;6263:350:1::0;32169:59:0::1;32247:36;::::0;-1:-1:-1;;;32247:36:0;;32277:4:::1;32247:36;::::0;::::1;2769:51:1::0;32286:1:0::1;::::0;-1:-1:-1;;;;;32247:21:0;::::1;::::0;::::1;::::0;2742:18:1;;32247:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;32239:62;;;::::0;-1:-1:-1;;;32239:62:0;;7009:2:1;32239:62:0::1;::::0;::::1;6991:21:1::0;7048:1;7028:18;;;7021:29;-1:-1:-1;;;7066:18:1;;;7059:39;7115:18;;32239:62:0::1;6807:332:1::0;32239:62:0::1;32329:36;::::0;-1:-1:-1;;;32329:36:0;;32359:4:::1;32329:36;::::0;::::1;2769:51:1::0;32312:14:0::1;::::0;-1:-1:-1;;;;;32329:21:0;::::1;::::0;::::1;::::0;2742:18:1;;32329:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32376:40;::::0;-1:-1:-1;;;32376:40:0;;32397:10:::1;32376:40;::::0;::::1;7318:51:1::0;7385:18;;;7378:34;;;32312:53:0;;-1:-1:-1;;;;;;32376:20:0;::::1;::::0;::::1;::::0;7291:18:1;;32376:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32158:266;32104:320:::0;:::o;28096:361::-;5403:13;:11;:13::i;:::-;-1:-1:-1;;;;;28179:17:0;::::1;28171:60;;;::::0;-1:-1:-1;;;28171:60:0;;7875:2:1;28171:60:0::1;::::0;::::1;7857:21:1::0;7914:2;7894:18;;;7887:30;7953:32;7933:18;;;7926:60;8003:18;;28171:60:0::1;7673:354:1::0;28171:60:0::1;28256:10;::::0;;-1:-1:-1;;;;;28256:10:0;;::::1;28270:5;28242:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;28242:33:0;;::::1;::::0;;;28301:10;;;::::1;28286:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;28331:31;;-1:-1:-1;;;;;;28331:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;28373:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;28373:32:0;;::::1;::::0;;;28431:10;;;;::::1;28416:26:::0;;;;;;;:33;;;;::::1;;::::0;;28096:361::o;31602:148::-;5403:13;:11;:13::i;:::-;31692:4:::1;31648:23;10504:18:::0;;;;;;;;;;;31709:33:::1;10504:18:::0;31709:16:::1;:33::i;:::-;31637:113;31602:148::o:0;28693:222::-;5403:13;:11;:13::i;:::-;28816:9:::1;28811:96;28835:8;:15;28831:1;:19;28811:96;;;28900:7;28870:14;:27;28885:8;28894:1;28885:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;28870:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;28870:27:0;:37;;-1:-1:-1;;28870:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;28852:3:0::1;28811:96;;6165:103:::0;5403:13;:11;:13::i;:::-;6230:30:::1;6257:1;6230:18;:30::i;:::-;6165:103::o:0;32432:155::-;5403:13;:11;:13::i;:::-;21572:20:::1;32484:12;:23:::0;;;32518:13:::1;:24:::0;;;32553:15:::1;:26:::0;32432:155::o;9281:104::-;9337:13;9370:7;9363:14;;;;;:::i;13853:503::-;13973:4;859:10;13973:4;14061:25;859:10;14078:7;14061:9;:25::i;:::-;14034:52;;14139:15;14119:16;:35;;14097:122;;;;-1:-1:-1;;;14097:122:0;;8366:2:1;14097:122:0;;;8348:21:1;8405:2;8385:18;;;8378:30;8444:34;8424:18;;;8417:62;-1:-1:-1;;;8495:18:1;;;8488:35;8540:19;;14097:122:0;8164:401:1;14097:122:0;14255:60;14264:5;14271:7;14299:15;14280:16;:34;14255:8;:60::i;10736:234::-;10851:4;859:10;10912:28;859:10;10929:2;10933:6;10912:9;:28::i;28465:220::-;5403:13;:11;:13::i;:::-;28587:9:::1;28582:95;28606:8;:15;28602:1;:19;28582:95;;;28670:7;28641:13;:26;28655:8;28664:1;28655:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;28641:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;28641:26:0;:36;;-1:-1:-1;;28641:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;28623:3:0::1;28582:95;;27930:158:::0;5403:13;:11;:13::i;:::-;28040:19:::1;:40:::0;27930:158::o;29096:363::-;5403:13;:11;:13::i;:::-;29179:9:::1;29174:278;29198:8;:15;29194:1;:19;29174:278;;;29273:13;::::0;29258:11;;-1:-1:-1;;;;;29273:13:0;;::::1;::::0;29258:8;;29267:1;;29258:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29258:28:0::1;;;29257:81;;;;;29332:4;-1:-1:-1::0;;;;;29309:28:0::1;:8;29318:1;29309:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29309:28:0::1;;;29257:81;:143;;;;-1:-1:-1::0;29383:15:0::1;::::0;29360:11;;-1:-1:-1;;;;;29383:15:0;;::::1;::::0;29360:8;;29369:1;;29360:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29360:39:0::1;;;29257:143;29235:205;;;29438:2;29416:6;:19;29423:8;29432:1;29423:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29416:19:0::1;-1:-1:-1::0;;;;;29416:19:0::1;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;29235:205;29215:3;;29174:278;;31758:154:::0;5403:13;:11;:13::i;:::-;31840:21:::1;31872:32;31840:21:::0;31872:12:::1;:32::i;11033:201::-:0;-1:-1:-1;;;;;11199:18:0;;;11167:7;11199:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11033:201::o;30057:91::-;5403:13;:11;:13::i;:::-;30121:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30121:19:0;;::::1;::::0;;;::::1;::::0;;30057:91::o;30276:116::-;5403:13;:11;:13::i;:::-;30354::::1;:30:::0;30276:116::o;6423:238::-;5403:13;:11;:13::i;:::-;-1:-1:-1;;;;;6526:22:0;::::1;6504:110;;;::::0;-1:-1:-1;;;6504:110:0;;8772:2:1;6504:110:0::1;::::0;::::1;8754:21:1::0;8811:2;8791:18;;;8784:30;8850:34;8830:18;;;8823:62;-1:-1:-1;;;8901:18:1;;;8894:36;8947:19;;6504:110:0::1;8570:402:1::0;6504:110:0::1;6625:28;6644:8;6625:18;:28::i;30156:112::-:0;5403:13;:11;:13::i;:::-;30232:12:::1;:28:::0;30156:112::o;17962:378::-;-1:-1:-1;;;;;18098:19:0;;18090:68;;;;-1:-1:-1;;;18090:68:0;;9179:2:1;18090:68:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:1;;;9301:34;9352:19;;18090:68:0;8977:400:1;18090:68:0;-1:-1:-1;;;;;18177:21:0;;18169:68;;;;-1:-1:-1;;;18169:68:0;;9584:2:1;18169:68:0;;;9566:21:1;9623:2;9603:18;;;9596:30;9662:34;9642:18;;;9635:62;-1:-1:-1;;;9713:18:1;;;9706:32;9755:19;;18169:68:0;9382:398:1;18169:68:0;-1:-1:-1;;;;;18248:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18300:32;;1685:25:1;;;18300:32:0;;1658:18:1;18300:32:0;;;;;;;17962:378;;;:::o;5682:132::-;5590:6;;-1:-1:-1;;;;;5590:6:0;859:10;5746:23;5738:68;;;;-1:-1:-1;;;5738:68:0;;9987:2:1;5738:68:0;;;9969:21:1;;;10006:18;;;9999:30;10065:34;10045:18;;;10038:62;10117:18;;5738:68:0;9785:356:1;18631:502:0;18766:24;18793:25;18803:5;18810:7;18793:9;:25::i;:::-;18766:52;;-1:-1:-1;;18833:16:0;:37;18829:297;;18933:6;18913:16;:26;;18887:117;;;;-1:-1:-1;;;18887:117:0;;10348:2:1;18887:117:0;;;10330:21:1;10387:2;10367:18;;;10360:30;10426:31;10406:18;;;10399:59;10475:18;;18887:117:0;10146:353:1;18887:117:0;19048:51;19057:5;19064:7;19092:6;19073:16;:25;19048:8;:51::i;24160:2357::-;-1:-1:-1;;;;;24292:12:0;;24284:62;;;;-1:-1:-1;;;24284:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24365:10:0;;24357:58;;;;-1:-1:-1;;;24357:58:0;;;;;;;:::i;:::-;24443:1;24434:6;:10;24426:64;;;;-1:-1:-1;;;24426:64:0;;11516:2:1;24426:64:0;;;11498:21:1;11555:2;11535:18;;;11528:30;11594:34;11574:18;;;11567:62;-1:-1:-1;;;11645:18:1;;;11638:39;11694:19;;24426:64:0;11314:405:1;24426:64:0;24516:4;24501:12;24591:7;5590:6;;-1:-1:-1;;;;;5590:6:0;;5517:87;24591:7;-1:-1:-1;;;;;24583:15:0;:4;-1:-1:-1;;;;;24583:15:0;;;:45;;;;-1:-1:-1;5590:6:0;;-1:-1:-1;;;;;24615:13:0;;;5590:6;;24615:13;;24583:45;:72;;;;-1:-1:-1;;;;;;24645:10:0;;;;24583:72;:99;;;;-1:-1:-1;;;;;;24672:10:0;;22672:42;24672:10;;24583:99;:126;;;;-1:-1:-1;24700:9:0;;;;;;;24699:10;24583:126;24565:1303;;;-1:-1:-1;;;;;24745:12:0;;;;;;:6;:12;;;;;;;;24744:13;:28;;;;-1:-1:-1;;;;;;24762:10:0;;;;;;:6;:10;;;;;;;;24761:11;24744:28;24736:45;;;;-1:-1:-1;;;24736:45:0;;;;;;11926:2:1;11908:21;;;11965:1;11945:18;;;11938:29;-1:-1:-1;;;11998:2:1;11983:18;;11976:34;12042:2;12027:18;;11724:327;24736:45:0;24801:11;;;;24796:176;;-1:-1:-1;;;;;24861:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;24884:17:0;;;;;;:13;:17;;;;;;;;24861:40;24831:141;;;;-1:-1:-1;;;24831:141:0;;12258:2:1;24831:141:0;;;12240:21:1;12297:2;12277:18;;;12270:30;12336:29;12316:18;;;12309:57;12383:18;;24831:141:0;12056:351:1;24831:141:0;25017:13;;-1:-1:-1;;;;;25009:21:0;;;25017:13;;25009:21;:72;;;;-1:-1:-1;25065:15:0;;-1:-1:-1;;;;;25051:30:0;;;25065:15;;25051:30;;25009:72;:112;;;;-1:-1:-1;;;;;;25103:18:0;;;;;;:14;:18;;;;;;;;25102:19;25009:112;24987:492;;;25196:12;;25186:6;:22;;25156:137;;;;-1:-1:-1;;;25156:137:0;;12614:2:1;25156:137:0;;;12596:21:1;12653:2;12633:18;;;12626:30;12692:34;12672:18;;;12665:62;-1:-1:-1;;;12743:18:1;;;12736:39;12792:19;;25156:137:0;12412:405:1;25156:137:0;25368:15;;25358:6;25342:13;25352:2;-1:-1:-1;;;;;10504:18:0;10472:7;10504:18;;;;;;;;;;;;10353:177;25342:13;:22;;;;:::i;:::-;:41;;25312:151;;;;-1:-1:-1;;;25312:151:0;;13024:2:1;25312:151:0;;;13006:21:1;13063:2;13043:18;;;13036:30;13102:34;13082:18;;;13075:62;-1:-1:-1;;;13153:18:1;;;13146:34;13197:19;;25312:151:0;12822:400:1;25312:151:0;25523:13;;-1:-1:-1;;;;;25517:19:0;;;25523:13;;25517:19;:72;;;;-1:-1:-1;25573:15:0;;-1:-1:-1;;;;;25557:32:0;;;25573:15;;25557:32;;25517:72;:114;;;;-1:-1:-1;;;;;;25611:20:0;;;;;;:14;:20;;;;;;;;25610:21;25517:114;25495:362;;;25706:13;;25696:6;:23;;25666:139;;;;-1:-1:-1;;;25666:139:0;;13429:2:1;25666:139:0;;;13411:21:1;13468:2;13448:18;;;13441:30;13507:34;13487:18;;;13480:62;-1:-1:-1;;;13558:18:1;;;13551:40;13608:19;;25666:139:0;13227:406:1;25666:139:0;-1:-1:-1;25837:4:0;25495:362;-1:-1:-1;;;;;25882:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;25905:17:0;;;;;;:13;:17;;;;;;;;25882:40;25878:61;;;25934:5;25924:15;;25878:61;25962:13;;-1:-1:-1;;;;;25954:21:0;;;25962:13;;25954:21;;;;:44;;-1:-1:-1;25985:13:0;;-1:-1:-1;;;;;25979:19:0;;;25985:13;;25979:19;;25954:44;25950:65;;;26010:5;26000:15;;25950:65;26070:4;26026:23;10504:18;;;;;;;;;;;26026:50;;26087:12;26121:19;;26103:15;:37;26102:53;;;;;26145:10;26102:53;26087:68;;26184:7;:35;;;;-1:-1:-1;26208:11:0;;;;;;;26184:35;:62;;;;-1:-1:-1;26237:9:0;;;;;;;26236:10;26184:62;:99;;;;-1:-1:-1;;;;;;26264:19:0;;;;;;:13;:19;;;;;;;;26263:20;26184:99;:134;;;;-1:-1:-1;;;;;;26301:17:0;;;;;;:13;:17;;;;;;;;26300:18;26184:134;26166:280;;;26345:9;:16;;-1:-1:-1;;26345:16:0;;;;;26376:26;26386:15;26376:9;:26::i;:::-;26417:9;:17;;-1:-1:-1;;26417:17:0;;;26166:280;26456:53;26471:4;26477:2;26481:6;26489:7;26498:10;26456:14;:53::i;:::-;24273:2244;;;;24160:2357;;;:::o;27241:472::-;27332:16;;;27346:1;27332:16;;;;;;;;27308:21;;27332:16;;;;;;;;;;-1:-1:-1;27332:16:0;27308:40;;27377:4;27359;27364:1;27359:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27359:23:0;;;:7;;;;;;;;;;:23;;;;27403:15;;:22;;;-1:-1:-1;;;27403:22:0;;;;:15;;;;;:20;;:22;;;;;27359:7;;27403:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27393:4;27398:1;27393:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27393:32:0;;;:7;;;;;;;;;:32;27468:15;;27436:62;;27453:4;;27468:15;27486:11;27436:8;:62::i;:::-;27509:15;;:196;;-1:-1:-1;;;27509:196:0;;-1:-1:-1;;;;;27509:15:0;;;;:66;;:196;;27590:11;;27509:15;;27632:4;;27659;;27679:15;;27509:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27297:416;27241:472;:::o;6821:191::-;6914:6;;;-1:-1:-1;;;;;6931:17:0;;;-1:-1:-1;;;;;;6931:17:0;;;;;;;6964:40;;6914:6;;;6931:17;6914:6;;6964:40;;6895:16;;6964:40;6884:128;6821:191;:::o;27721:93::-;27779:10;;:27;;-1:-1:-1;;;;;27779:10:0;;;;:27;;;;;27799:6;;27779:10;:27;:10;:27;27799:6;27779:10;:27;;;;;;;;;;;;;;;;;;;;;27721:93;:::o;26525:708::-;26618:13;;26589:25;26672:20;;;:46;;-1:-1:-1;26696:22:0;;26672:46;26668:59;;;26720:7;;26525:708;:::o;26668:59::-;26759:19;;:25;;26782:1;26759:25;:::i;:::-;26741:15;:43;26737:105;;;26817:19;;:25;;26840:1;26817:25;:::i;:::-;26799:43;;26737:105;26884:15;26938:21;26970:36;26884:15;26970:16;:36::i;:::-;27019:18;27040:43;27065:17;27040:21;:43;:::i;:::-;27094:17;27137:13;:17;;;27187:10;;27179:46;;27019:64;;-1:-1:-1;27019:64:0;;-1:-1:-1;;;;;27187:10:0;;;;27019:64;;27179:46;;27094:17;27179:46;27019:64;27187:10;27179:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;26525:708:0:o;30532:357::-;30711:7;30706:83;;30720:11;:9;:11::i;:::-;30706:83;;;30756:33;30766:6;30774;30782;30756:9;:33::i;:::-;30747:42;;30706:83;30800:42;30816:6;30824:9;30835:6;30800:15;:42::i;:::-;30860:7;30855:26;;30869:12;29978:18;;29966:9;:30;30020:19;;30007:10;:32;29924:123;30869:12;30532:357;;;;;:::o;29687:229::-;29732:9;;:14;:33;;;;-1:-1:-1;29750:10:0;;:15;29732:33;29728:46;;;29687:229::o;29728:46::-;29807:9;;;29786:18;:30;29849:10;;;29827:19;:32;-1:-1:-1;29870:13:0;;;;29894:14;29687:229::o;30897:481::-;31013:7;31037:6;31033:47;;;31045:10;31436;;31426:7;:20;;;31457:10;:22;31386:101;31045:10;31033:47;;;31071:9;31544;;31534:7;:19;;;31564:10;:22;31495:99;31071:9;31120:10;;31093:12;;31120:14;31116:154;;22191:4;31169:10;;31159:6;:21;;;;:::i;:::-;31158:39;;;;:::i;:::-;31151:46;;31248:10;;31237:7;;31230:4;:14;;;;:::i;:::-;31229:29;;;;:::i;:::-;31212:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;31116:154:0;31284:8;;31280:58;;31294:44;31310:6;31326:4;31333;31294:15;:44::i;:::-;31356:14;31366:4;31356:14;;:::i;:::-;;30897:481;-1:-1:-1;;;;;30897:481:0:o;14826:869::-;-1:-1:-1;;;;;14957:18:0;;14949:68;;;;-1:-1:-1;;;14949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15036:16:0;;15028:64;;;;-1:-1:-1;;;15028:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15174:15:0;;15152:19;15174:15;;;;;;;;;;;15222:21;;;;15200:109;;;;-1:-1:-1;;;15200:109:0;;15609:2:1;15200:109:0;;;15591:21:1;15648:2;15628:18;;;15621:30;15687:34;15667:18;;;15660:62;-1:-1:-1;;;15738:18:1;;;15731:36;15784:19;;15200:109:0;15407:402:1;15200:109:0;-1:-1:-1;;;;;15345:15:0;;;:9;:15;;;;;;;;;;;15363:20;;;15345:38;;15563:13;;;;;;;;;;:23;;;;;;15613:26;;1685:25:1;;;15563:13:0;;15613:26;;1658:18:1;15613:26:0;;;;;;;15650:37;32104:320;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:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1354:180::-;1413:6;1466:2;1454:9;1445:7;1441:23;1437:32;1434:52;;;1482:1;1479;1472:12;1434:52;-1:-1:-1;1505:23:1;;1354:180;-1:-1:-1;1354:180:1:o;1721:456::-;1798:6;1806;1814;1867:2;1855:9;1846:7;1842:23;1838:32;1835:52;;;1883:1;1880;1873:12;1835:52;1922:9;1909:23;1941:31;1966:5;1941:31;:::i;:::-;1991:5;-1:-1:-1;2048:2:1;2033:18;;2020:32;2061:33;2020:32;2061:33;:::i;:::-;1721:456;;2113:7;;-1:-1:-1;;;2167:2:1;2152:18;;;;2139:32;;1721:456::o;2371:247::-;2430:6;2483:2;2471:9;2462:7;2458:23;2454:32;2451:52;;;2499:1;2496;2489:12;2451:52;2538:9;2525:23;2557:31;2582:5;2557:31;:::i;:::-;2607:5;2371:247;-1:-1:-1;;;2371:247:1:o;2831:127::-;2892:10;2887:3;2883:20;2880:1;2873:31;2923:4;2920:1;2913:15;2947:4;2944:1;2937:15;2963:118;3049:5;3042:13;3035:21;3028:5;3025:32;3015:60;;3071:1;3068;3061:12;3086:128;3151:20;;3180:28;3151:20;3180:28;:::i;3219:1191::-;3309:6;3317;3370:2;3358:9;3349:7;3345:23;3341:32;3338:52;;;3386:1;3383;3376:12;3338:52;3426:9;3413:23;3455:18;3496:2;3488:6;3485:14;3482:34;;;3512:1;3509;3502:12;3482:34;3550:6;3539:9;3535:22;3525:32;;3595:7;3588:4;3584:2;3580:13;3576:27;3566:55;;3617:1;3614;3607:12;3566:55;3653:2;3640:16;3675:4;3698:2;3694;3691:10;3688:36;;;3704:18;;:::i;:::-;3750:2;3747:1;3743:10;3782:2;3776:9;3845:2;3841:7;3836:2;3832;3828:11;3824:25;3816:6;3812:38;3900:6;3888:10;3885:22;3880:2;3868:10;3865:18;3862:46;3859:72;;;3911:18;;:::i;:::-;3947:2;3940:22;3997:18;;;4031:15;;;;-1:-1:-1;4073:11:1;;;4069:20;;;4101:19;;;4098:39;;;4133:1;4130;4123:12;4098:39;4157:11;;;;4177:148;4193:6;4188:3;4185:15;4177:148;;;4259:23;4278:3;4259:23;:::i;:::-;4247:36;;4210:12;;;;4303;;;;4177:148;;;4344:6;-1:-1:-1;4369:35:1;;-1:-1:-1;4385:18:1;;;4369:35;:::i;:::-;4359:45;;;;;;3219:1191;;;;;:::o;4415:388::-;4483:6;4491;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4599:9;4586:23;4618:31;4643:5;4618:31;:::i;:::-;4668:5;-1:-1:-1;4725:2:1;4710:18;;4697:32;4738:33;4697:32;4738:33;:::i;:::-;4790:7;4780:17;;;4415:388;;;;;:::o;4808:241::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;4972:9;4959:23;4991:28;5013:5;4991:28;:::i;5054:380::-;5133:1;5129:12;;;;5176;;;5197:61;;5251:4;5243:6;5239:17;5229:27;;5197:61;5304:2;5296:6;5293:14;5273:18;5270:38;5267:161;;5350:10;5345:3;5341:20;5338:1;5331:31;5385:4;5382:1;5375:15;5413:4;5410:1;5403:15;5267:161;;5054:380;;;:::o;6001:127::-;6062:10;6057:3;6053:20;6050:1;6043:31;6093:4;6090:1;6083:15;6117:4;6114:1;6107:15;6133:125;6198:9;;;6219:10;;;6216:36;;;6232:18;;:::i;6618:184::-;6688:6;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;-1:-1:-1;6780:16:1;;6618:184;-1:-1:-1;6618:184:1:o;7423:245::-;7490:6;7543:2;7531:9;7522:7;7518:23;7514:32;7511:52;;;7559:1;7556;7549:12;7511:52;7591:9;7585:16;7610:28;7632:5;7610:28;:::i;8032:127::-;8093:10;8088:3;8084:20;8081:1;8074:31;8124:4;8121:1;8114:15;8148:4;8145:1;8138:15;10504:401;10706:2;10688:21;;;10745:2;10725:18;;;10718:30;10784:34;10779:2;10764:18;;10757:62;-1:-1:-1;;;10850:2:1;10835:18;;10828:35;10895:3;10880:19;;10504:401::o;10910:399::-;11112:2;11094:21;;;11151:2;11131:18;;;11124:30;11190:34;11185:2;11170:18;;11163:62;-1:-1:-1;;;11256:2:1;11241:18;;11234:33;11299:3;11284:19;;10910:399::o;13638:251::-;13708:6;13761:2;13749:9;13740:7;13736:23;13732:32;13729:52;;;13777:1;13774;13767:12;13729:52;13809:9;13803:16;13828:31;13853:5;13828:31;:::i;13894:980::-;14156:4;14204:3;14193:9;14189:19;14235:6;14224:9;14217:25;14261:2;14299:6;14294:2;14283:9;14279:18;14272:34;14342:3;14337:2;14326:9;14322:18;14315:31;14366:6;14401;14395:13;14432:6;14424;14417:22;14470:3;14459:9;14455:19;14448:26;;14509:2;14501:6;14497:15;14483:29;;14530:1;14540:195;14554:6;14551:1;14548:13;14540:195;;;14619:13;;-1:-1:-1;;;;;14615:39:1;14603:52;;14710:15;;;;14675:12;;;;14651:1;14569:9;14540:195;;;-1:-1:-1;;;;;;;14791:32:1;;;;14786:2;14771:18;;14764:60;-1:-1:-1;;;14855:3:1;14840:19;14833:35;14752:3;13894:980;-1:-1:-1;;;13894:980:1:o;14879:168::-;14952:9;;;14983;;15000:15;;;14994:22;;14980:37;14970:71;;15021:18;;:::i;15052:128::-;15119:9;;;15140:11;;;15137:37;;;15154:18;;:::i;15185:217::-;15225:1;15251;15241:132;;15295:10;15290:3;15286:20;15283:1;15276:31;15330:4;15327:1;15320:15;15358:4;15355:1;15348:15;15241:132;-1:-1:-1;15387:9:1;;15185:217::o
Swarm Source
ipfs://eff516eb977fd444c2c7ac233af658c1593fd8c476632aea458d93cfb7ff7af7
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.