ERC-20
Overview
Max Total Supply
1,000,000,000 2178
Holders
65
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
27,855,374.643142567 2178Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Musk2178
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-11 */ /** http://Musk2178.com https://t.me/Musk2178 https://twitter.com/Musk2178 */ pragma solidity ^0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @dev 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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 () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; 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_) public { _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 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @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 to 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 {} } contract Musk2178 is ERC20, Ownable { using SafeMath for uint256; string private _name = '2178'; string private _symbol = '2178'; address public constant DEAD_ADDRESS = address(0xdead); IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public buyLiquidityFee = 3; uint256 public sellLiquidityFee = 3; uint256 public buyTxFee = 7; uint256 public sellTxFee = 7; uint256 public tokensForLiquidity; uint256 public tokensForTax; uint256 public _tTotal = 10**9 * 10**9; // 1 billion uint256 public swapAtAmount = _tTotal.mul(10).div(10000); // 0.10% of total supply uint256 public maxTxLimit = _tTotal.mul(100).div(10000); // 1.00% of total supply uint256 public maxWalletLimit = _tTotal.mul(100).div(10000); // 1.00% of total supply address public dev; address public uniswapV2Pair; bool private swapping; bool public isLaunched; // exclude from fees mapping (address => bool) public isExcludedFromFees; // exclude from max transaction amount mapping (address => bool) public isExcludedFromTxLimit; // exclude from max wallet limit mapping (address => bool) public isExcludedFromWalletLimit; // if the account is blacklisted from transacting mapping (address => bool) public isBlacklisted; constructor(address _dev) public ERC20("Musk 2178", "2178") { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); // exclude from fees, wallet limit and transaction limit excludeFromAllLimits(owner(), true); excludeFromAllLimits(address(this), true); excludeFromWalletLimit(uniswapV2Pair, true); dev = _dev; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), _tTotal); } function excludeFromFees(address account, bool value) public onlyOwner() { require(isExcludedFromFees[account] != value, "Fees: Already set to this value"); isExcludedFromFees[account] = value; } function excludeFromTxLimit(address account, bool value) public onlyOwner() { require(isExcludedFromTxLimit[account] != value, "TxLimit: Already set to this value"); isExcludedFromTxLimit[account] = value; } function excludeFromWalletLimit(address account, bool value) public onlyOwner() { require(isExcludedFromWalletLimit[account] != value, "WalletLimit: Already set to this value"); isExcludedFromWalletLimit[account] = value; } function excludeFromAllLimits(address account, bool value) public onlyOwner() { excludeFromFees(account, value); excludeFromTxLimit(account, value); excludeFromWalletLimit(account, value); } function setBuyFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() { buyLiquidityFee = liquidityFee; buyTxFee = txFee; } function setSellFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() { sellLiquidityFee = liquidityFee; sellTxFee = txFee; } function setMaxTxLimit(uint256 newLimit) external onlyOwner() { maxTxLimit = newLimit * (10**9); } function setMaxWalletLimit(uint256 newLimit) external onlyOwner() { maxWalletLimit = newLimit * (10**9); } function setSwapAtAmount(uint256 amountToSwap) external onlyOwner() { swapAtAmount = amountToSwap * (10**9); } function updateDevWallet(address newWallet) external onlyOwner() { dev = newWallet; } function blastoff() external onlyOwner() { require(!isLaunched, "Contract is already launched"); isLaunched = true; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "transfer from the zero address"); require(to != address(0), "transfer to the zero address"); require(amount <= maxTxLimit || isExcludedFromTxLimit[from] || isExcludedFromTxLimit[to], "Tx Amount too large"); require(balanceOf(to).add(amount) <= maxWalletLimit || isExcludedFromWalletLimit[to], "Transfer will exceed wallet limit"); if(amount == 0) { super._transfer(from, to, 0); return; } uint256 totalTokensForFee = tokensForLiquidity + tokensForTax; bool canSwap = totalTokensForFee >= swapAtAmount; if( from != uniswapV2Pair && canSwap && !swapping ) { swapping = true; swapBack(totalTokensForFee); swapping = false; } bool takeFee = !swapping; if(isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } if(takeFee) { uint256 fees; // on sell if (to == uniswapV2Pair) { uint256 sellTotalFees = sellLiquidityFee.add(sellTxFee); fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = tokensForLiquidity.add(fees.mul(sellLiquidityFee).div(sellTotalFees)); tokensForTax = tokensForTax.add(fees.mul(sellTxFee).div(sellTotalFees)); } // on buy & wallet transfers else { uint256 buyTotalFees = buyLiquidityFee.add(buyTxFee); fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = tokensForLiquidity.add(fees.mul(buyLiquidityFee).div(buyTotalFees)); tokensForTax = tokensForTax.add(fees.mul(buyTxFee).div(buyTotalFees)); } if(fees > 0){ super._transfer(from, address(this), fees); amount = amount.sub(fees); } } super._transfer(from, to, amount); } function swapBack(uint256 totalTokensForFee) private { uint256 toSwap = swapAtAmount; // Halve the amount of liquidity tokens uint256 liquidityTokens = toSwap.mul(tokensForLiquidity).div(totalTokensForFee).div(2); uint256 taxTokens = toSwap.sub(liquidityTokens).sub(liquidityTokens); uint256 amountToSwapForETH = toSwap.sub(liquidityTokens); _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance; uint256 ethForTax = ethBalance.mul(taxTokens).div(amountToSwapForETH); uint256 ethForLiquidity = ethBalance.sub(ethForTax); tokensForLiquidity = tokensForLiquidity.sub(liquidityTokens.mul(2)); tokensForTax = tokensForTax.sub(toSwap.sub(liquidityTokens.mul(2))); payable(address(dev)).transfer(ethForTax); _addLiquidity(liquidityTokens, ethForLiquidity); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, DEAD_ADDRESS, block.timestamp ); } function _swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"blastoff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTxFee","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":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromWalletLimit","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":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToSwap","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526004608081905263064626e760e31b60a090815262000027916006919062000b52565b5060408051808201909152600480825263064626e760e31b6020909201918252620000559160079162000b52565b50600360085560036009556007600a556007600b55670de0b6b3a7640000600e55620000ae6127106200009a600a600e546200043a60201b6200154a1790919060201c565b620004a160201b620015aa1790919060201c565b600f55620000d56127106200009a6064600e546200043a60201b6200154a1790919060201c565b601055620000fc6127106200009a6064600e546200043a60201b6200154a1790919060201c565b6011553480156200010c57600080fd5b5060405162002ffb38038062002ffb833981810160405260208110156200013257600080fd5b5051604080518082018252600981526809aeae6d64064626e760bb1b602082810191825283518085019094526004845263064626e760e31b908401528151919291620001819160039162000b52565b5080516200019790600490602084019062000b52565b5050506000620001ac620004eb60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024857600080fd5b505afa1580156200025d573d6000803e3d6000fd5b505050506040513d60208110156200027457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163c9c65396913091737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c4648916004808301926020929190829003018186803b158015620002d657600080fd5b505afa158015620002eb573d6000803e3d6000fd5b505050506040513d60208110156200030257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200035557600080fd5b505af11580156200036a573d6000803e3d6000fd5b505050506040513d60208110156200038157600080fd5b5051601380546001600160a01b0319166001600160a01b03909216919091179055620003c530737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004ef565b620003db620003d3620005df565b6001620005ee565b620003e8306001620005ee565b60135462000401906001600160a01b0316600162000672565b601280546001600160a01b0319166001600160a01b038316179055620004336200042a620005df565b600e5462000759565b5062000bee565b6000826200044b575060006200049b565b828202828482816200045957fe5b0414620004985760405162461bcd60e51b815260040180806020018281038252602181526020018062002f706021913960400191505060405180910390fd5b90505b92915050565b60006200049883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200086860201b60201c565b3390565b6001600160a01b038316620005365760405162461bcd60e51b815260040180806020018281038252602481526020018062002fb16024913960400191505060405180910390fd5b6001600160a01b0382166200057d5760405162461bcd60e51b815260040180806020018281038252602281526020018062002f2c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6005546001600160a01b031690565b620005f8620004eb565b6005546001600160a01b039081169116146200064a576040805162461bcd60e51b8152602060048201819052602482015260008051602062002f91833981519152604482015290519081900360640190fd5b6200065682826200090f565b62000662828262000a0b565b6200066e828262000672565b5050565b6200067c620004eb565b6005546001600160a01b03908116911614620006ce576040805162461bcd60e51b8152602060048201819052602482015260008051602062002f91833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156200072e5760405162461bcd60e51b815260040180806020018281038252602681526020018062002fd56026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b038216620007b5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620007c36000838362000af2565b620007df8160025462000af760201b620015ec1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000812918390620015ec62000af7821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183620008f85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620008bc578181015183820152602001620008a2565b50505050905090810190601f168015620008ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200090557fe5b0495945050505050565b62000919620004eb565b6005546001600160a01b039081169116146200096b576040805162461bcd60e51b8152602060048201819052602482015260008051602062002f91833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620009e0576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b62000a15620004eb565b6005546001600160a01b0390811691161462000a67576040805162461bcd60e51b8152602060048201819052602482015260008051602062002f91833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff161515811515141562000ac75760405162461bcd60e51b815260040180806020018281038252602281526020018062002f4e6022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b505050565b60008282018381101562000498576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b9557805160ff191683800117855562000bc5565b8280016001018555821562000bc5579182015b8281111562000bc557825182559160200191906001019062000ba8565b5062000bd392915062000bd7565b5090565b5b8082111562000bd3576000815560010162000bd8565b61232e8062000bfe6000396000f3fe60806040526004361061026b5760003560e01c80638036d59011610144578063c0246668116100b6578063e9b786cb1161007a578063e9b786cb146108d0578063f11a24d3146108e5578063f2fde38b146108fa578063f63743421461092d578063fb0ecfa414610942578063fe575a871461097257610272565b8063c0246668146107cf578063cd49513f1461080a578063d299b38814610845578063dd62ed3e1461085a578063e16830a81461089557610272565b806395d89b411161010857806395d89b41146106cd578063a457c2d7146106e2578063a9059cbb1461071b578063af465a2714610754578063b40f946914610769578063bf95793d1461079c57610272565b80638036d5901461066457806386917524146106795780638da5cb5b1461068e578063904236d1146106a357806391cca3db146106b857610272565b806349bd5a5e116101dd57806366a88d96116101a157806366a88d96146105985780636ac9a870146105ad5780636d7adcad146105dd57806370a08231146105f2578063715018a614610625578063728d41c91461063a57610272565b806349bd5a5e146104e75780634e6fd6c4146104fc5780634fbee193146105115780636402511e1461054457806364f5a5bb1461056e57610272565b80631a8145bb1161022f5780631a8145bb146103db57806323b872dd146103f057806330280a7114610433578063307aebc91461046e578063313ce5671461048357806339509351146104ae57610272565b806306fdde0314610277578063095ea7b3146103015780631694505e1461034e57806318160ddd1461037f5780631816467f146103a657610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c6109a5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b038135169060200135610a3b565b604080519115158252519081900360200190f35b34801561035a57600080fd5b50610363610a59565b604080516001600160a01b039092168252519081900360200190f35b34801561038b57600080fd5b50610394610a71565b60408051918252519081900360200190f35b3480156103b257600080fd5b506103d9600480360360208110156103c957600080fd5b50356001600160a01b0316610a77565b005b3480156103e757600080fd5b50610394610af1565b3480156103fc57600080fd5b5061033a6004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610af7565b34801561043f57600080fd5b506103d96004803603604081101561045657600080fd5b506001600160a01b0381351690602001351515610b7e565b34801561047a57600080fd5b5061033a610c5f565b34801561048f57600080fd5b50610498610c6f565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b5061033a600480360360408110156104d157600080fd5b506001600160a01b038135169060200135610c74565b3480156104f357600080fd5b50610363610cc2565b34801561050857600080fd5b50610363610cd1565b34801561051d57600080fd5b5061033a6004803603602081101561053457600080fd5b50356001600160a01b0316610cd7565b34801561055057600080fd5b506103d96004803603602081101561056757600080fd5b5035610cec565b34801561057a57600080fd5b506103d96004803603602081101561059157600080fd5b5035610d4f565b3480156105a457600080fd5b50610394610db2565b3480156105b957600080fd5b506103d9600480360360408110156105d057600080fd5b5080359060200135610db8565b3480156105e957600080fd5b50610394610e1b565b3480156105fe57600080fd5b506103946004803603602081101561061557600080fd5b50356001600160a01b0316610e21565b34801561063157600080fd5b506103d9610e3c565b34801561064657600080fd5b506103d96004803603602081101561065d57600080fd5b5035610ede565b34801561067057600080fd5b50610394610f41565b34801561068557600080fd5b50610394610f47565b34801561069a57600080fd5b50610363610f4d565b3480156106af57600080fd5b50610394610f5c565b3480156106c457600080fd5b50610363610f62565b3480156106d957600080fd5b5061028c610f71565b3480156106ee57600080fd5b5061033a6004803603604081101561070557600080fd5b506001600160a01b038135169060200135610fd2565b34801561072757600080fd5b5061033a6004803603604081101561073e57600080fd5b506001600160a01b03813516906020013561103a565b34801561076057600080fd5b5061039461104e565b34801561077557600080fd5b5061033a6004803603602081101561078c57600080fd5b50356001600160a01b0316611054565b3480156107a857600080fd5b5061033a600480360360208110156107bf57600080fd5b50356001600160a01b0316611069565b3480156107db57600080fd5b506103d9600480360360408110156107f257600080fd5b506001600160a01b038135169060200135151561107e565b34801561081657600080fd5b506103d96004803603604081101561082d57600080fd5b506001600160a01b0381351690602001351515611175565b34801561085157600080fd5b506103d96111ef565b34801561086657600080fd5b506103946004803603604081101561087d57600080fd5b506001600160a01b03813581169160200135166112bb565b3480156108a157600080fd5b506103d9600480360360408110156108b857600080fd5b506001600160a01b03813516906020013515156112e6565b3480156108dc57600080fd5b506103946113c7565b3480156108f157600080fd5b506103946113cd565b34801561090657600080fd5b506103d96004803603602081101561091d57600080fd5b50356001600160a01b03166113d3565b34801561093957600080fd5b506103946114cc565b34801561094e57600080fd5b506103d96004803603604081101561096557600080fd5b50803590602001356114d2565b34801561097e57600080fd5b5061033a6004803603602081101561099557600080fd5b50356001600160a01b0316611535565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a4f610a48611646565b848461164a565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610a7f611646565b6005546001600160a01b03908116911614610acf576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b6000610b04848484611736565b610b7484610b10611646565b610b6f856040518060600160405280602881526020016121fc602891396001600160a01b038a16600090815260016020526040812090610b4e611646565b6001600160a01b031681526020810191909152604001600020549190611b13565b61164a565b5060019392505050565b610b86611646565b6005546001600160a01b03908116911614610bd6576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610c345760405162461bcd60e51b81526004018080602001828103825260228152602001806121b96022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354600160a81b900460ff1681565b600990565b6000610a4f610c81611646565b84610b6f8560016000610c92611646565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115ec565b6013546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610cf4611646565b6005546001600160a01b03908116911614610d44576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b610d57611646565b6005546001600160a01b03908116911614610da7576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002601055565b60115481565b610dc0611646565b6005546001600160a01b03908116911614610e10576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b600991909155600b55565b600d5481565b6001600160a01b031660009081526020819052604090205490565b610e44611646565b6005546001600160a01b03908116911614610e94576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610ee6611646565b6005546001600160a01b03908116911614610f36576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002601155565b60105481565b600f5481565b6005546001600160a01b031690565b600b5481565b6012546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a315780601f10610a0657610100808354040283529160200191610a31565b6000610a4f610fdf611646565b84610b6f856040518060600160405280602581526020016122d46025913960016000611009611646565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b13565b6000610a4f611047611646565b8484611736565b600e5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b611086611646565b6005546001600160a01b039081169116146110d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff161515811515141561114a576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b61117d611646565b6005546001600160a01b039081169116146111cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6111d7828261107e565b6111e18282610b7e565b6111eb82826112e6565b5050565b6111f7611646565b6005546001600160a01b03908116911614611247576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b601354600160a81b900460ff16156112a6576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805460ff60a81b1916600160a81b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6112ee611646565b6005546001600160a01b0390811691161461133e576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff161515811515141561139c5760405162461bcd60e51b81526004018080602001828103825260268152602001806122ae6026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b600a5481565b60085481565b6113db611646565b6005546001600160a01b0390811691161461142b576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b0381166114705760405162461bcd60e51b815260040180806020018281038252602681526020018061214b6026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60095481565b6114da611646565b6005546001600160a01b0390811691161461152a576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b600891909155600a55565b60176020526000908152604090205460ff1681565b60008261155957506000610a53565b8282028284828161156657fe5b04146115a35760405162461bcd60e51b81526004018080602001828103825260218152602001806121db6021913960400191505060405180910390fd5b9392505050565b60006115a383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611baa565b6000828201838110156115a3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661168f5760405162461bcd60e51b815260040180806020018281038252602481526020018061228a6024913960400191505060405180910390fd5b6001600160a01b0382166116d45760405162461bcd60e51b81526004018080602001828103825260228152602001806121716022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611791576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b0382166117ec576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b6010548111158061181557506001600160a01b03831660009081526015602052604090205460ff165b8061183857506001600160a01b03821660009081526015602052604090205460ff165b61187f576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b6011546118958261188f85610e21565b906115ec565b1115806118ba57506001600160a01b03821660009081526016602052604090205460ff165b6118f55760405162461bcd60e51b81526004018080602001828103825260218152602001806122446021913960400191505060405180910390fd5b8061190b5761190683836000611c0f565b611b0e565b600d54600c54600f546013549190920191821015906001600160a01b038681169116148015906119385750805b801561194e5750601354600160a01b900460ff16155b1561197d576013805460ff60a01b1916600160a01b17905561196f82611d6a565b6013805460ff60a01b191690555b6013546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526014602052604090205460ff165b156119d4575060005b8015611aff576013546000906001600160a01b0387811691161415611a77576000611a0c600b546009546115ec90919063ffffffff16565b9050611a236064611a1d888461154a565b906115aa565b9150611a4a611a4182611a1d6009548661154a90919063ffffffff16565b600c54906115ec565b600c55600b54611a6e90611a65908390611a1d90869061154a565b600d54906115ec565b600d5550611adf565b6000611a90600a546008546115ec90919063ffffffff16565b9050611aa16064611a1d888461154a565b9150611abf611a4182611a1d6008548661154a90919063ffffffff16565b600c55600a54611ada90611a65908390611a1d90869061154a565b600d55505b8015611afd57611af0873083611c0f565b611afa8582611e70565b94505b505b611b0a868686611c0f565b5050505b505050565b60008184841115611ba25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b67578181015183820152602001611b4f565b50505050905090810190601f168015611b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bf95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b67578181015183820152602001611b4f565b506000838581611c0557fe5b0495945050505050565b6001600160a01b038316611c545760405162461bcd60e51b81526004018080602001828103825260258152602001806122656025913960400191505060405180910390fd5b6001600160a01b038216611c995760405162461bcd60e51b81526004018080602001828103825260238152602001806121286023913960400191505060405180910390fd5b611ca4838383611b0e565b611ce181604051806060016040528060268152602001612193602691396001600160a01b0386166000908152602081905260409020549190611b13565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d1090826115ec565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600f5490506000611d916002611a1d85611a1d600c548761154a90919063ffffffff16565b90506000611da982611da38582611e70565b90611e70565b90506000611db78484611e70565b9050611dc281611eb2565b476000611dd383611a1d848761154a565b90506000611de18383611e70565b9050611dfa611df187600261154a565b600c5490611e70565b600c55611e1e611e15611e0e88600261154a565b8990611e70565b600d5490611e70565b600d556012546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611e5b573d6000803e3d6000fd5b50611e66868261207e565b5050505050505050565b60006115a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b13565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611ee057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f4d57600080fd5b505afa158015611f61573d6000803e3d6000fd5b505050506040513d6020811015611f7757600080fd5b5051815182906001908110611f8857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612041578181015183820152602001612029565b505050509050019650505050505050600060405180830381600087803b15801561206a57600080fd5b505af1158015611b0a573d6000803e3d6000fd5b6040805163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b1580156120f657600080fd5b505af115801561210a573d6000803e3d6000fd5b50505050506040513d606081101561212157600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205dfd5e54f042237caeb0c42177eed94c7462085b7eddf422ea11fabf76ce3c5264736f6c634300060c003345524332303a20617070726f766520746f20746865207a65726f206164647265737354784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c7565000000000000000000000000854fc2e1a19122ec0a960beb2a2c349cf242c5d4
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80638036d59011610144578063c0246668116100b6578063e9b786cb1161007a578063e9b786cb146108d0578063f11a24d3146108e5578063f2fde38b146108fa578063f63743421461092d578063fb0ecfa414610942578063fe575a871461097257610272565b8063c0246668146107cf578063cd49513f1461080a578063d299b38814610845578063dd62ed3e1461085a578063e16830a81461089557610272565b806395d89b411161010857806395d89b41146106cd578063a457c2d7146106e2578063a9059cbb1461071b578063af465a2714610754578063b40f946914610769578063bf95793d1461079c57610272565b80638036d5901461066457806386917524146106795780638da5cb5b1461068e578063904236d1146106a357806391cca3db146106b857610272565b806349bd5a5e116101dd57806366a88d96116101a157806366a88d96146105985780636ac9a870146105ad5780636d7adcad146105dd57806370a08231146105f2578063715018a614610625578063728d41c91461063a57610272565b806349bd5a5e146104e75780634e6fd6c4146104fc5780634fbee193146105115780636402511e1461054457806364f5a5bb1461056e57610272565b80631a8145bb1161022f5780631a8145bb146103db57806323b872dd146103f057806330280a7114610433578063307aebc91461046e578063313ce5671461048357806339509351146104ae57610272565b806306fdde0314610277578063095ea7b3146103015780631694505e1461034e57806318160ddd1461037f5780631816467f146103a657610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c6109a5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b038135169060200135610a3b565b604080519115158252519081900360200190f35b34801561035a57600080fd5b50610363610a59565b604080516001600160a01b039092168252519081900360200190f35b34801561038b57600080fd5b50610394610a71565b60408051918252519081900360200190f35b3480156103b257600080fd5b506103d9600480360360208110156103c957600080fd5b50356001600160a01b0316610a77565b005b3480156103e757600080fd5b50610394610af1565b3480156103fc57600080fd5b5061033a6004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610af7565b34801561043f57600080fd5b506103d96004803603604081101561045657600080fd5b506001600160a01b0381351690602001351515610b7e565b34801561047a57600080fd5b5061033a610c5f565b34801561048f57600080fd5b50610498610c6f565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b5061033a600480360360408110156104d157600080fd5b506001600160a01b038135169060200135610c74565b3480156104f357600080fd5b50610363610cc2565b34801561050857600080fd5b50610363610cd1565b34801561051d57600080fd5b5061033a6004803603602081101561053457600080fd5b50356001600160a01b0316610cd7565b34801561055057600080fd5b506103d96004803603602081101561056757600080fd5b5035610cec565b34801561057a57600080fd5b506103d96004803603602081101561059157600080fd5b5035610d4f565b3480156105a457600080fd5b50610394610db2565b3480156105b957600080fd5b506103d9600480360360408110156105d057600080fd5b5080359060200135610db8565b3480156105e957600080fd5b50610394610e1b565b3480156105fe57600080fd5b506103946004803603602081101561061557600080fd5b50356001600160a01b0316610e21565b34801561063157600080fd5b506103d9610e3c565b34801561064657600080fd5b506103d96004803603602081101561065d57600080fd5b5035610ede565b34801561067057600080fd5b50610394610f41565b34801561068557600080fd5b50610394610f47565b34801561069a57600080fd5b50610363610f4d565b3480156106af57600080fd5b50610394610f5c565b3480156106c457600080fd5b50610363610f62565b3480156106d957600080fd5b5061028c610f71565b3480156106ee57600080fd5b5061033a6004803603604081101561070557600080fd5b506001600160a01b038135169060200135610fd2565b34801561072757600080fd5b5061033a6004803603604081101561073e57600080fd5b506001600160a01b03813516906020013561103a565b34801561076057600080fd5b5061039461104e565b34801561077557600080fd5b5061033a6004803603602081101561078c57600080fd5b50356001600160a01b0316611054565b3480156107a857600080fd5b5061033a600480360360208110156107bf57600080fd5b50356001600160a01b0316611069565b3480156107db57600080fd5b506103d9600480360360408110156107f257600080fd5b506001600160a01b038135169060200135151561107e565b34801561081657600080fd5b506103d96004803603604081101561082d57600080fd5b506001600160a01b0381351690602001351515611175565b34801561085157600080fd5b506103d96111ef565b34801561086657600080fd5b506103946004803603604081101561087d57600080fd5b506001600160a01b03813581169160200135166112bb565b3480156108a157600080fd5b506103d9600480360360408110156108b857600080fd5b506001600160a01b03813516906020013515156112e6565b3480156108dc57600080fd5b506103946113c7565b3480156108f157600080fd5b506103946113cd565b34801561090657600080fd5b506103d96004803603602081101561091d57600080fd5b50356001600160a01b03166113d3565b34801561093957600080fd5b506103946114cc565b34801561094e57600080fd5b506103d96004803603604081101561096557600080fd5b50803590602001356114d2565b34801561097e57600080fd5b5061033a6004803603602081101561099557600080fd5b50356001600160a01b0316611535565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a4f610a48611646565b848461164a565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610a7f611646565b6005546001600160a01b03908116911614610acf576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b6000610b04848484611736565b610b7484610b10611646565b610b6f856040518060600160405280602881526020016121fc602891396001600160a01b038a16600090815260016020526040812090610b4e611646565b6001600160a01b031681526020810191909152604001600020549190611b13565b61164a565b5060019392505050565b610b86611646565b6005546001600160a01b03908116911614610bd6576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610c345760405162461bcd60e51b81526004018080602001828103825260228152602001806121b96022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354600160a81b900460ff1681565b600990565b6000610a4f610c81611646565b84610b6f8560016000610c92611646565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115ec565b6013546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610cf4611646565b6005546001600160a01b03908116911614610d44576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b610d57611646565b6005546001600160a01b03908116911614610da7576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002601055565b60115481565b610dc0611646565b6005546001600160a01b03908116911614610e10576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b600991909155600b55565b600d5481565b6001600160a01b031660009081526020819052604090205490565b610e44611646565b6005546001600160a01b03908116911614610e94576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610ee6611646565b6005546001600160a01b03908116911614610f36576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b633b9aca0002601155565b60105481565b600f5481565b6005546001600160a01b031690565b600b5481565b6012546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a315780601f10610a0657610100808354040283529160200191610a31565b6000610a4f610fdf611646565b84610b6f856040518060600160405280602581526020016122d46025913960016000611009611646565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b13565b6000610a4f611047611646565b8484611736565b600e5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b611086611646565b6005546001600160a01b039081169116146110d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff161515811515141561114a576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b61117d611646565b6005546001600160a01b039081169116146111cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6111d7828261107e565b6111e18282610b7e565b6111eb82826112e6565b5050565b6111f7611646565b6005546001600160a01b03908116911614611247576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b601354600160a81b900460ff16156112a6576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805460ff60a81b1916600160a81b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6112ee611646565b6005546001600160a01b0390811691161461133e576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff161515811515141561139c5760405162461bcd60e51b81526004018080602001828103825260268152602001806122ae6026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b600a5481565b60085481565b6113db611646565b6005546001600160a01b0390811691161461142b576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b6001600160a01b0381166114705760405162461bcd60e51b815260040180806020018281038252602681526020018061214b6026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60095481565b6114da611646565b6005546001600160a01b0390811691161461152a576040805162461bcd60e51b81526020600482018190526024820152600080516020612224833981519152604482015290519081900360640190fd5b600891909155600a55565b60176020526000908152604090205460ff1681565b60008261155957506000610a53565b8282028284828161156657fe5b04146115a35760405162461bcd60e51b81526004018080602001828103825260218152602001806121db6021913960400191505060405180910390fd5b9392505050565b60006115a383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611baa565b6000828201838110156115a3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661168f5760405162461bcd60e51b815260040180806020018281038252602481526020018061228a6024913960400191505060405180910390fd5b6001600160a01b0382166116d45760405162461bcd60e51b81526004018080602001828103825260228152602001806121716022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611791576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b0382166117ec576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b6010548111158061181557506001600160a01b03831660009081526015602052604090205460ff165b8061183857506001600160a01b03821660009081526015602052604090205460ff165b61187f576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b6011546118958261188f85610e21565b906115ec565b1115806118ba57506001600160a01b03821660009081526016602052604090205460ff165b6118f55760405162461bcd60e51b81526004018080602001828103825260218152602001806122446021913960400191505060405180910390fd5b8061190b5761190683836000611c0f565b611b0e565b600d54600c54600f546013549190920191821015906001600160a01b038681169116148015906119385750805b801561194e5750601354600160a01b900460ff16155b1561197d576013805460ff60a01b1916600160a01b17905561196f82611d6a565b6013805460ff60a01b191690555b6013546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526014602052604090205460ff165b156119d4575060005b8015611aff576013546000906001600160a01b0387811691161415611a77576000611a0c600b546009546115ec90919063ffffffff16565b9050611a236064611a1d888461154a565b906115aa565b9150611a4a611a4182611a1d6009548661154a90919063ffffffff16565b600c54906115ec565b600c55600b54611a6e90611a65908390611a1d90869061154a565b600d54906115ec565b600d5550611adf565b6000611a90600a546008546115ec90919063ffffffff16565b9050611aa16064611a1d888461154a565b9150611abf611a4182611a1d6008548661154a90919063ffffffff16565b600c55600a54611ada90611a65908390611a1d90869061154a565b600d55505b8015611afd57611af0873083611c0f565b611afa8582611e70565b94505b505b611b0a868686611c0f565b5050505b505050565b60008184841115611ba25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b67578181015183820152602001611b4f565b50505050905090810190601f168015611b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bf95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b67578181015183820152602001611b4f565b506000838581611c0557fe5b0495945050505050565b6001600160a01b038316611c545760405162461bcd60e51b81526004018080602001828103825260258152602001806122656025913960400191505060405180910390fd5b6001600160a01b038216611c995760405162461bcd60e51b81526004018080602001828103825260238152602001806121286023913960400191505060405180910390fd5b611ca4838383611b0e565b611ce181604051806060016040528060268152602001612193602691396001600160a01b0386166000908152602081905260409020549190611b13565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d1090826115ec565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600f5490506000611d916002611a1d85611a1d600c548761154a90919063ffffffff16565b90506000611da982611da38582611e70565b90611e70565b90506000611db78484611e70565b9050611dc281611eb2565b476000611dd383611a1d848761154a565b90506000611de18383611e70565b9050611dfa611df187600261154a565b600c5490611e70565b600c55611e1e611e15611e0e88600261154a565b8990611e70565b600d5490611e70565b600d556012546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611e5b573d6000803e3d6000fd5b50611e66868261207e565b5050505050505050565b60006115a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b13565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611ee057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f4d57600080fd5b505afa158015611f61573d6000803e3d6000fd5b505050506040513d6020811015611f7757600080fd5b5051815182906001908110611f8857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612041578181015183820152602001612029565b505050509050019650505050505050600060405180830381600087803b15801561206a57600080fd5b505af1158015611b0a573d6000803e3d6000fd5b6040805163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b1580156120f657600080fd5b505af115801561210a573d6000803e3d6000fd5b50505050506040513d606081101561212157600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205dfd5e54f042237caeb0c42177eed94c7462085b7eddf422ea11fabf76ce3c5264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000854FC2e1A19122ec0a960BEB2a2C349Cf242C5d4
-----Decoded View---------------
Arg [0] : _dev (address): 0x854FC2e1A19122ec0a960BEB2a2C349Cf242C5d4
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000854FC2e1A19122ec0a960BEB2a2C349Cf242C5d4
Deployed Bytecode Sourcemap
29286:7934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20683:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22849:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22849:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29499:115;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29499:115:0;;;;;;;;;;;;;;21802:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33118:99;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33118:99:0;-1:-1:-1;;;;;33118:99:0;;:::i;:::-;;29775:33;;;;;;;;;;;;;:::i;23500:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23500:355:0;;;;;;;;;;;;;;;;;:::i;31691:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31691:230:0;;;;;;;;;;:::i;30314:22::-;;;;;;;;;;;;;:::i;21645:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24264:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24264:218:0;;;;;;;;:::i;30243:28::-;;;;;;;;;;;;;:::i;29438:54::-;;;;;;;;;;;;;:::i;30371:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30371:51:0;-1:-1:-1;;;;;30371:51:0;;:::i;32986:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32986:124:0;;:::i;32738:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32738:112:0;;:::i;30122:59::-;;;;;;;;;;;;;:::i;32574:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32574:156:0;;;;;;;:::i;29815:27::-;;;;;;;;;;;;;:::i;21973:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21973:127:0;-1:-1:-1;;;;;21973:127:0;;:::i;5434:148::-;;;;;;;;;;;;;:::i;32858:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32858:120:0;;:::i;30027:55::-;;;;;;;;;;;;;:::i;29933:56::-;;;;;;;;;;;;;:::i;4792:79::-;;;;;;;;;;;;;:::i;29740:28::-;;;;;;;;;;;;;:::i;30218:18::-;;;;;;;;;;;;;:::i;20902:104::-;;;;;;;;;;;;;:::i;24985:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24985:269:0;;;;;;;;:::i;22313:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22313:175:0;;;;;;;;:::i;29851:38::-;;;;;;;;;;;;;:::i;30576:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30576:58:0;-1:-1:-1;;;;;30576:58:0;;:::i;30475:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30475:54:0;-1:-1:-1;;;;;30475:54:0;;:::i;31465:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31465:218:0;;;;;;;;;;:::i;32183:222::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32183:222:0;;;;;;;;;;:::i;33227:142::-;;;;;;;;;;;;;:::i;22551:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22551:151:0;;;;;;;;;;:::i;31929:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31929:246:0;;;;;;;;;;:::i;29706:27::-;;;;;;;;;;;;;:::i;29623:34::-;;;;;;;;;;;;;:::i;5737:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5737:244:0;-1:-1:-1;;;;;5737:244:0;;:::i;29664:35::-;;;;;;;;;;;;;:::i;32413:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32413:153:0;;;;;;;:::i;30698:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30698:46:0;-1:-1:-1;;;;;30698:46:0;;:::i;20683:100::-;20770:5;20763:12;;;;;;;;-1:-1:-1;;20763:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20737:13;;20763:12;;20770:5;;20763:12;;20770:5;20763:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20683:100;:::o;22849:169::-;22932:4;22949:39;22958:12;:10;:12::i;:::-;22972:7;22981:6;22949:8;:39::i;:::-;-1:-1:-1;23006:4:0;22849:169;;;;;:::o;29499:115::-;29571:42;29499:115;:::o;21802:108::-;21890:12;;21802:108;:::o;33118:99::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;33194:3:::1;:15:::0;;-1:-1:-1;;;;;;33194:15:0::1;-1:-1:-1::0;;;;;33194:15:0;;;::::1;::::0;;;::::1;::::0;;33118:99::o;29775:33::-;;;;:::o;23500:355::-;23640:4;23657:36;23667:6;23675:9;23686:6;23657:9;:36::i;:::-;23704:121;23713:6;23721:12;:10;:12::i;:::-;23735:89;23773:6;23735:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23735:19:0;;;;;;:11;:19;;;;;;23755:12;:10;:12::i;:::-;-1:-1:-1;;;;;23735:33:0;;;;;;;;;;;;-1:-1:-1;23735:33:0;;;:89;:37;:89::i;:::-;23704:8;:121::i;:::-;-1:-1:-1;23843:4:0;23500:355;;;;;:::o;31691:230::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31786:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;:39;;::::0;::::1;;;;31778:86;;;;-1:-1:-1::0;;;31778:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31875:30:0;;;::::1;;::::0;;;:21:::1;:30;::::0;;;;:38;;-1:-1:-1;;31875:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31691:230::o;30314:22::-;;;-1:-1:-1;;;30314:22:0;;;;;:::o;21645:92::-;21728:1;21645:92;:::o;24264:218::-;24352:4;24369:83;24378:12;:10;:12::i;:::-;24392:7;24401:50;24440:10;24401:11;:25;24413:12;:10;:12::i;:::-;-1:-1:-1;;;;;24401:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24401:25:0;;;:34;;;;;;;;;;;:38;:50::i;30243:28::-;;;-1:-1:-1;;;;;30243:28:0;;:::o;29438:54::-;29485:6;29438:54;:::o;30371:51::-;;;;;;;;;;;;;;;:::o;32986:124::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;33096:5:::1;33080:22;33065:12;:37:::0;32986:124::o;32738:112::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;32836:5:::1;32824:18;32811:10;:31:::0;32738:112::o;30122:59::-;;;;:::o;32574:156::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;32663:16:::1;:31:::0;;;;32705:9:::1;:17:::0;32574:156::o;29815:27::-;;;;:::o;21973:127::-;-1:-1:-1;;;;;22074:18:0;22047:7;22074:18;;;;;;;;;;;;21973:127::o;5434:148::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;5525:6:::1;::::0;5504:40:::1;::::0;5541:1:::1;::::0;-1:-1:-1;;;;;5525:6:0::1;::::0;5504:40:::1;::::0;5541:1;;5504:40:::1;5555:6;:19:::0;;-1:-1:-1;;;;;;5555:19:0::1;::::0;;5434:148::o;32858:120::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;32964:5:::1;32952:18;32935:14;:35:::0;32858:120::o;30027:55::-;;;;:::o;29933:56::-;;;;:::o;4792:79::-;4857:6;;-1:-1:-1;;;;;4857:6:0;4792:79;:::o;29740:28::-;;;;:::o;30218:18::-;;;-1:-1:-1;;;;;30218:18:0;;:::o;20902:104::-;20991:7;20984:14;;;;;;;;-1:-1:-1;;20984:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20958:13;;20984:14;;20991:7;;20984:14;;20991:7;20984:14;;;;;;;;;;;;;;;;;;;;;;;;24985:269;25078:4;25095:129;25104:12;:10;:12::i;:::-;25118:7;25127:96;25166:15;25127:96;;;;;;;;;;;;;;;;;:11;:25;25139:12;:10;:12::i;:::-;-1:-1:-1;;;;;25127:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25127:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22313:175::-;22399:4;22416:42;22426:12;:10;:12::i;:::-;22440:9;22451:6;22416:9;:42::i;29851:38::-;;;;:::o;30576:58::-;;;;;;;;;;;;;;;:::o;30475:54::-;;;;;;;;;;;;;;;:::o;31465:218::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31557:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;::::1;;:36;;::::0;::::1;;;;31549:80;;;::::0;;-1:-1:-1;;;31549:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31640:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;31640:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31465:218::o;32183:222::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;32272:31:::1;32288:7;32297:5;32272:15;:31::i;:::-;32314:34;32333:7;32342:5;32314:18;:34::i;:::-;32359:38;32382:7;32391:5;32359:22;:38::i;:::-;32183:222:::0;;:::o;33227:142::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;33288:10:::1;::::0;-1:-1:-1;;;33288:10:0;::::1;;;33287:11;33279:52;;;::::0;;-1:-1:-1;;;33279:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33342:10;:17:::0;;-1:-1:-1;;;;33342:17:0::1;-1:-1:-1::0;;;33342:17:0::1;::::0;;33227:142::o;22551:151::-;-1:-1:-1;;;;;22667:18:0;;;22640:7;22667:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22551:151::o;31929:246::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32028:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;:43;;::::0;::::1;;;;32020:94;;;;-1:-1:-1::0;;;32020:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32125:34:0;;;::::1;;::::0;;;:25:::1;:34;::::0;;;;:42;;-1:-1:-1;;32125:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31929:246::o;29706:27::-;;;;:::o;29623:34::-;;;;:::o;5737:244::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5826:22:0;::::1;5818:73;;;;-1:-1:-1::0;;;5818:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5928:6;::::0;5907:38:::1;::::0;-1:-1:-1;;;;;5907:38:0;;::::1;::::0;5928:6:::1;::::0;5907:38:::1;::::0;5928:6:::1;::::0;5907:38:::1;5956:6;:17:::0;;-1:-1:-1;;;;;;5956:17:0::1;-1:-1:-1::0;;;;;5956:17:0;;;::::1;::::0;;;::::1;::::0;;5737:244::o;29664:35::-;;;;:::o;32413:153::-;5014:12;:10;:12::i;:::-;5004:6;;-1:-1:-1;;;;;5004:6:0;;;:22;;;4996:67;;;;;-1:-1:-1;;;4996:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4996:67:0;;;;;;;;;;;;;;;32501:15:::1;:30:::0;;;;32542:8:::1;:16:::0;32413:153::o;30698:46::-;;;;;;;;;;;;;;;:::o;7605:471::-;7663:7;7908:6;7904:47;;-1:-1:-1;7938:1:0;7931:8;;7904:47;7975:5;;;7979:1;7975;:5;:1;7999:5;;;;;:10;7991:56;;;;-1:-1:-1;;;7991:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8067:1;7605:471;-1:-1:-1;;;7605:471:0:o;8552:132::-;8610:7;8637:39;8641:1;8644;8637:39;;;;;;;;;;;;;;;;;:3;:39::i;6251:181::-;6309:7;6341:5;;;6365:6;;;;6357:46;;;;;-1:-1:-1;;;6357:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3945:98;4025:10;3945:98;:::o;28171:380::-;-1:-1:-1;;;;;28307:19:0;;28299:68;;;;-1:-1:-1;;;28299:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28386:21:0;;28378:68;;;;-1:-1:-1;;;28378:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28459:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28511:32;;;;;;;;;;;;;;;;;28171:380;;;:::o;33377:2165::-;-1:-1:-1;;;;;33475:18:0;;33467:61;;;;;-1:-1:-1;;;33467:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33547:16:0;;33539:57;;;;;-1:-1:-1;;;33539:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33625:10;;33615:6;:20;;:51;;;-1:-1:-1;;;;;;33639:27:0;;;;;;:21;:27;;;;;;;;33615:51;:80;;;-1:-1:-1;;;;;;33670:25:0;;;;;;:21;:25;;;;;;;;33615:80;33607:112;;;;;-1:-1:-1;;;33607:112:0;;;;;;;;;;;;-1:-1:-1;;;33607:112:0;;;;;;;;;;;;;;;33767:14;;33738:25;33756:6;33738:13;33748:2;33738:9;:13::i;:::-;:17;;:25::i;:::-;:43;;:76;;;-1:-1:-1;;;;;;33785:29:0;;;;;;:25;:29;;;;;;;;33738:76;33730:122;;;;-1:-1:-1;;;33730:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33868:11;33865:92;;33896:28;33912:4;33918:2;33922:1;33896:15;:28::i;:::-;33939:7;;33865:92;34018:12;;33997:18;;34077:12;;34127:13;;33997:33;;;;;34056;;;;-1:-1:-1;;;;;34119:21:0;;;34127:13;;34119:21;;;;:45;;;34157:7;34119:45;:71;;;;-1:-1:-1;34182:8:0;;-1:-1:-1;;;34182:8:0;;;;34181:9;34119:71;34102:215;;;34217:8;:15;;-1:-1:-1;;;;34217:15:0;-1:-1:-1;;;34217:15:0;;;34247:27;34256:17;34247:8;:27::i;:::-;34289:8;:16;;-1:-1:-1;;;;34289:16:0;;;34102:215;34345:8;;-1:-1:-1;;;;;34369:24:0;;34329:12;34369:24;;;34345:8;34369:24;;;;;;34345:8;-1:-1:-1;;;34345:8:0;;;;;34344:9;;34369:24;;:50;;-1:-1:-1;;;;;;34397:22:0;;;;;;:18;:22;;;;;;;;34369:50;34366:97;;;-1:-1:-1;34446:5:0;34366:97;34478:7;34475:1014;;;34563:13;;34502:12;;-1:-1:-1;;;;;34557:19:0;;;34563:13;;34557:19;34553:776;;;34597:21;34621:31;34642:9;;34621:16;;:20;;:31;;;;:::i;:::-;34597:55;-1:-1:-1;34678:34:0;34708:3;34678:25;:6;34597:55;34678:10;:25::i;:::-;:29;;:34::i;:::-;34671:41;;34752:69;34775:45;34806:13;34775:26;34784:16;;34775:4;:8;;:26;;;;:::i;:45::-;34752:18;;;:22;:69::i;:::-;34731:18;:90;34881:9;;34855:56;;34872:38;;34896:13;;34872:19;;:4;;:8;:19::i;:38::-;34855:12;;;:16;:56::i;:::-;34840:12;:71;-1:-1:-1;34553:776:0;;;35007:20;35030:29;35050:8;;35030:15;;:19;;:29;;;;:::i;:::-;35007:52;-1:-1:-1;35085:33:0;35114:3;35085:24;:6;35007:52;35085:10;:24::i;:33::-;35078:40;;35158:67;35181:43;35211:12;35181:25;35190:15;;35181:4;:8;;:25;;;;:::i;35158:67::-;35137:18;:88;35285:8;;35259:54;;35276:36;;35299:12;;35276:18;;:4;;:8;:18::i;35259:54::-;35244:12;:69;-1:-1:-1;34553:776:0;35348:8;;35345:133;;35376:42;35392:4;35406;35413;35376:15;:42::i;:::-;35446:16;:6;35457:4;35446:10;:16::i;:::-;35437:25;;35345:133;34475:1014;;35501:33;35517:4;35523:2;35527:6;35501:15;:33::i;:::-;33377:2165;;;;;;;:::o;7154:192::-;7240:7;7276:12;7268:6;;;;7260:29;;;;-1:-1:-1;;;7260:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7312:5:0;;;7154:192::o;9180:278::-;9266:7;9301:12;9294:5;9286:28;;;;-1:-1:-1;;;9286:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9325:9;9341:1;9337;:5;;;;;;;9180:278;-1:-1:-1;;;;;9180:278:0:o;25744:573::-;-1:-1:-1;;;;;25884:20:0;;25876:70;;;;-1:-1:-1;;;25876:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25965:23:0;;25957:71;;;;-1:-1:-1;;;25957:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26041:47;26062:6;26070:9;26081:6;26041:20;:47::i;:::-;26121:71;26143:6;26121:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26121:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;26101:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26226:20;;;;;;;:32;;26251:6;26226:24;:32::i;:::-;-1:-1:-1;;;;;26203:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26274:35;;;;;;;26203:20;;26274:35;;;;;;;;;;;;;25744:573;;;:::o;35550:912::-;35614:14;35631:12;;35614:29;;35705:23;35731:60;35789:1;35731:53;35766:17;35731:30;35742:18;;35731:6;:10;;:30;;;;:::i;:60::-;35705:86;-1:-1:-1;35802:17:0;35822:48;35705:86;35822:27;:6;35705:86;35822:10;:27::i;:::-;:31;;:48::i;:::-;35802:68;-1:-1:-1;35881:26:0;35910:27;:6;35921:15;35910:10;:27::i;:::-;35881:56;;35950:37;35968:18;35950:17;:37::i;:::-;36021:21;36000:18;36073:49;36103:18;36073:25;36021:21;36088:9;36073:14;:25::i;:49::-;36053:69;-1:-1:-1;36133:23:0;36159:25;:10;36053:69;36159:14;:25::i;:::-;36133:51;-1:-1:-1;36218:46:0;36241:22;:15;36261:1;36241:19;:22::i;:::-;36218:18;;;:22;:46::i;:::-;36197:18;:67;36290:52;36307:34;36318:22;:15;36338:1;36318:19;:22::i;:::-;36307:6;;:10;:34::i;:::-;36290:12;;;:16;:52::i;:::-;36275:12;:67;36371:3;;36355:41;;-1:-1:-1;;;;;36371:3:0;;;;36355:41;;;;;36386:9;;36371:3;36355:41;36371:3;36355:41;36386:9;36371:3;36355:41;;;;;;;;;;;;;;;;;;;;;36407:47;36421:15;36438;36407:13;:47::i;:::-;35550:912;;;;;;;;:::o;6715:136::-;6773:7;6800:43;6804:1;6807;6800:43;;;;;;;;;;;;;;;;;:3;:43::i;36773:403::-;36866:16;;;36880:1;36866:16;;;36842:21;36866:16;;;;;36842:21;36866:16;;;;;;;;;;-1:-1:-1;36866:16:0;36842:40;;36911:4;36893;36898:1;36893:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;36893:23:0;;;-1:-1:-1;;;;;36893:23:0;;;;;29571:42;-1:-1:-1;;;;;36937:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36937:22:0;36927:7;;:4;;36932:1;;36927:7;;;;;;;;;;;:32;-1:-1:-1;;;;;36927:32:0;;;-1:-1:-1;;;;;36927:32:0;;;;;29571:42;-1:-1:-1;;;;;36972:66:0;;37053:11;37079:1;37095:4;37122;37142:15;36972:196;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36972:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36470:295;36554:203;;;-1:-1:-1;;;36554:203:0;;36626:4;36554:203;;;;;;;;;;36672:1;36554:203;;;;;;;;;;29485:6;36554:203;;;;36731:15;36554:203;;;;;;29571:42;;36554:31;;36593:9;;36554:203;;;;;;;;;;;;;;;36593:9;29571:42;36554:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;36470:295:0:o
Swarm Source
ipfs://5dfd5e54f042237caeb0c42177eed94c7462085b7eddf422ea11fabf76ce3c52
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.