Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 SHIELD
Holders
341
Market
Price
$0.00 @ 0.000002 ETH (-5.81%)
Onchain Market Cap
$383,131.16
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
42,299.004616454830921174 SHIELDValue
$162.06 ( ~0.063973940098722 Eth) [0.0423%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Uniswap V2 (Ethereum) | 0X46C0F8259C4E4D50320124E52F3040CB9E4D04C7-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0039 0.0000015 Eth | $186.28 48,295.597 0X46C0F8259C4E4D50320124E52F3040CB9E4D04C7 | 100.0000% |
Contract Name:
CHATTERSHIELD
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-15 */ /** Socials Website: https://chattershield.io/ Twitter: https://twitter.com/ChatterShield Telegram: https://t.me/ChatterShieldBot */ // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; 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; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; 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; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; 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); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/MainNetShield.sol pragma solidity >=0.8.10 >=0.8.0 <0.9.0; contract CHATTERSHIELD is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Chatter Shield", "SHIELD") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 5; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 30; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = (totalSupply * 2 / 100); // 2% from total supply maxTransactionAmountTxn maxWallet = (totalSupply * 2 / 100); // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xA3448C405b665503163053F8caEC2595B7f415Bd); // set as marketing wallet devWallet = address(0xA3448C405b665503163053F8caEC2595B7f415Bd); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660011790556013805490911690553480156200004757600080fd5b50604080518082018252600e81526d10da185d1d195c8814da1a595b1960921b60208083019182528351808501909452600684526514d21251531160d21b9084015281519192916200009c916003916200066d565b508051620000b29060049060208401906200066d565b505050620000cf620000c96200040160201b60201c565b62000405565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f181600162000457565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000162919062000713565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d6919062000713565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000713565b6001600160a01b031660a08190526200026590600162000457565b60a051620002759060016200048b565b60008060058180601e6a52b7d2dcc80cd2e40000006064620002998260026200075b565b620002a591906200077d565b6008556064620002b78260026200075b565b620002c391906200077d565b600a55612710620002d68260056200075b565b620002e291906200077d565b60095560158790556016869055601785905584620003018789620007a0565b6200030d9190620007a0565b6014556019849055601a839055601b829055816200032c8486620007a0565b620003389190620007a0565b6018556006805473a3448c405b665503163053f8caec2595b7f415bd6001600160a01b0319918216811790925560078054909116909117905562000390620003886005546001600160a01b031690565b6001620004df565b6200039d306001620004df565b620003ac61dead6001620004df565b620003cb620003c36005546001600160a01b031690565b600162000457565b620003d830600162000457565b620003e761dead600162000457565b620003f3338262000548565b5050505050505050620007f8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620004616200060f565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004e96200060f565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005b89190620007a0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200066b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200059b565b565b8280546200067b90620007bb565b90600052602060002090601f0160209004810192826200069f5760008555620006ea565b82601f10620006ba57805160ff1916838001178555620006ea565b82800160010185558215620006ea579182015b82811115620006ea578251825591602001919060010190620006cd565b50620006f8929150620006fc565b5090565b5b80821115620006f85760008155600101620006fd565b6000602082840312156200072657600080fd5b81516001600160a01b03811681146200073e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000778576200077862000745565b500290565b6000826200079b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007b657620007b662000745565b500190565b600181811c90821680620007d057607f821691505b60208210811415620007f257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613a3d620008806000396000818161060d015281816111740152818161199e01528181611a3901528181611a6501528181612197015281816130d101528181613173015261319f0152600081816104590152818161213f015281816132d0015281816133b0015281816134120152818161348c01526135020152613a3d6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063dd62ed3e14610a90578063e2f4560514610ae3578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c876d0b9116100dc578063c876d0b914610a2a578063c8c8ebe414610a44578063d257b34f14610a5a578063d85ba06314610a7a57600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c17b5b8c146109ea578063c18bc19514610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063aacebbe31461095b578063b62496f51461097b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f5780638095d564146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104a05780631816467f146104bf578063184c16c5146104e157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b90565b6040516103df919061358d565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613622565b610c22565b60405190151581526020016103df565b34801561042457600080fd5b5061040861043336600461364e565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ac57600080fd5b506002545b6040519081526020016103df565b3480156104cb57600080fd5b506104df6104da36600461364e565b610c3a565b005b3480156104ed57600080fd5b506104b1600f5481565b34801561050357600080fd5b506104b1600b5481565b34801561051957600080fd5b506104b1601d5481565b34801561052f57600080fd5b506104b1601c5481565b34801561054557600080fd5b506104df61055436600461366b565b610cd1565b34801561056557600080fd5b50610408610574366004613684565b610db9565b34801561058557600080fd5b5061047b61dead81565b34801561059b57600080fd5b506104b1600d5481565b3480156105b157600080fd5b50600c546104089060ff1681565b3480156105cb57600080fd5b50604051601281526020016103df565b3480156105e757600080fd5b506104086105f6366004613622565b610ddd565b34801561060757600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063b57600080fd5b506011546104089060ff1681565b34801561065557600080fd5b5061040861066436600461364e565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104b160185481565b3480156106b157600080fd5b506011546104089062010000900460ff1681565b3480156106d157600080fd5b506104b16106e036600461364e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506104df610e29565b34801561072957600080fd5b506104df6107383660046136d5565b610e3d565b34801561074957600080fd5b50610408610fad565b34801561075e57600080fd5b506104df61076d36600461370a565b610fe5565b34801561077e57600080fd5b5060065461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104b160155481565b3480156107c157600080fd5b506104df6107d036600461373f565b611042565b3480156107e157600080fd5b506104df6110e0565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047b565b34801561082157600080fd5b5060075461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104b160195481565b34801561086457600080fd5b506104df61087336600461376b565b61111b565b34801561088457600080fd5b506103d261115b565b34801561089957600080fd5b506104df6108a836600461370a565b61116a565b3480156108b957600080fd5b506104b160175481565b3480156108cf57600080fd5b506104b160105481565b3480156108e557600080fd5b506104b1601e5481565b3480156108fb57600080fd5b506104b1601b5481565b34801561091157600080fd5b50610408610920366004613622565b61125c565b34801561093157600080fd5b506104b1600e5481565b34801561094757600080fd5b50610408610956366004613622565b61132d565b34801561096757600080fd5b506104df61097636600461364e565b61133b565b34801561098757600080fd5b5061040861099636600461364e565b60216020526000908152604090205460ff1681565b3480156109b757600080fd5b5060115461040890610100900460ff1681565b3480156109d657600080fd5b506104df6109e536600461370a565b6113d2565b3480156109f657600080fd5b506104df610a0536600461373f565b611464565b348015610a1657600080fd5b506104df610a2536600461366b565b6114ff565b348015610a3657600080fd5b506013546104089060ff1681565b348015610a5057600080fd5b506104b160085481565b348015610a6657600080fd5b50610408610a7536600461366b565b6115e1565b348015610a8657600080fd5b506104b160145481565b348015610a9c57600080fd5b506104b1610aab366004613786565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610aef57600080fd5b506104b160095481565b348015610b0557600080fd5b5061040861175a565b348015610b1a57600080fd5b506104b160165481565b348015610b3057600080fd5b506104df610b3f36600461364e565b611792565b348015610b5057600080fd5b506104b1601a5481565b348015610b6657600080fd5b506104b1600a5481565b348015610b7c57600080fd5b50610408610b8b36600461366b565b611849565b606060038054610b9f906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb906137bf565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b600033610c30818585611b1a565b5060019392505050565b610c42611ccd565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610cd9611ccd565b670de0b6b3a76400006103e8610cee60025490565b610cf9906001613842565b610d03919061387f565b610d0d919061387f565b811015610da1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3125000000000000000000000000000000000060648201526084015b60405180910390fd5b610db381670de0b6b3a7640000613842565b60085550565b600033610dc7858285611d4e565b610dd2858585611e25565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c309082908690610e249087906138ba565b611b1a565b610e31611ccd565b610e3b6000612ab8565b565b610e45611ccd565b610258831015610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610d98565b6103e88211158015610ee7575060015b610f73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610d98565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000610fb7611ccd565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610fed611ccd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61104a611ccd565b6015839055601682905560178190558061106483856138ba565b61106e91906138ba565b601481815510156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610d98565b505050565b6110e8611ccd565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b611123611ccd565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b9f906137bf565b611172611ccd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d98565b6112588282612b2f565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d98565b610dd28286868403611b1a565b600033610c30818585611e25565b611343611ccd565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6113da611ccd565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61146c611ccd565b6019839055601a829055601b8190558061148683856138ba565b61149091906138ba565b6018819055601910156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610d98565b611507611ccd565b670de0b6b3a76400006103e861151c60025490565b611527906005613842565b611531919061387f565b61153b919061387f565b8110156115c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610d98565b6115db81670de0b6b3a7640000613842565b600a5550565b60006115eb611ccd565b620186a06115f860025490565b611603906001613842565b61160d919061387f565b82101561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610d98565b6103e86116a860025490565b6116b3906005613842565b6116bd919061387f565b82111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610d98565b50600981905560015b919050565b6000611764611ccd565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b61179a611ccd565b73ffffffffffffffffffffffffffffffffffffffff811661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d98565b61184681612ab8565b50565b6000611853611ccd565b600f5460105461186391906138ba565b42116118cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d98565b6103e882111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610d98565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1291906138d2565b90506000611a2c612710611a268487612bae565b90612bc1565b90508015611a6157611a617f000000000000000000000000000000000000000000000000000000000000000061dead83612bcd565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ace57600080fd5b505af1158015611ae2573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216611c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d98565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e1f5781811015611e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d98565b611e1f8484848403611b1a565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216611f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d98565b80611f7c576110db83836000612bcd565b60115460ff161561260b5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611fcd575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611fee575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612012575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612039575060055474010000000000000000000000000000000000000000900460ff16155b1561260b57601154610100900460ff1661210c5773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16806120a6575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610d98565b60135460ff16156122c25760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061218e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121e657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122c2573260009081526012602052604090205443116122af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610d98565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16801561231c575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612453576008548111156123b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d98565b600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546123e690836138ba565b111561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d98565b61260b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff1680156124ad575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b156125445760085481111561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff1661260b57600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546125a390836138ba565b111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d98565b3060009081526020819052604090205460095481108015908190612637575060115462010000900460ff165b801561265e575060055474010000000000000000000000000000000000000000900460ff16155b8015612690575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b80156126c2575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b80156126f4575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b1561276957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612740612e3c565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff161580156127b9575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b80156127c75750600c5460ff165b80156127e25750600d54600e546127de91906138ba565b4210155b8015612814575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b1561282357612821613090565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061289c575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b156128a5575060005b60008115612aa45773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff1680156128e457506000601854115b1561299c576129036064611a2660185488612bae90919063ffffffff16565b9050601854601a54826129169190613842565b612920919061387f565b601d600082825461293191906138ba565b9091555050601854601b546129469083613842565b612950919061387f565b601e600082825461296191906138ba565b90915550506018546019546129769083613842565b612980919061387f565b601c600082825461299191906138ba565b90915550612a869050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156129d357506000601454115b15612a86576129f26064611a2660145488612bae90919063ffffffff16565b905060145460165482612a059190613842565b612a0f919061387f565b601d6000828254612a2091906138ba565b9091555050601454601754612a359083613842565b612a3f919061387f565b601e6000828254612a5091906138ba565b9091555050601454601554612a659083613842565b612a6f919061387f565b601c6000828254612a8091906138ba565b90915550505b8015612a9757612a97873083612bcd565b612aa181866138eb565b94505b612aaf878787612bcd565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612bba8284613842565b9392505050565b6000612bba828461387f565b73ffffffffffffffffffffffffffffffffffffffff8316612c70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216612d13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e1f565b3060009081526020819052604081205490506000601e54601c54601d54612e6391906138ba565b612e6d91906138ba565b90506000821580612e7c575081155b15612e8657505050565b600954612e94906014613842565b831115612eac57600954612ea9906014613842565b92505b6000600283601d5486612ebf9190613842565b612ec9919061387f565b612ed3919061387f565b90506000612ee18583613253565b905047612eed8261325f565b6000612ef94783613253565b90506000612f1687611a26601c5485612bae90919063ffffffff16565b90506000612f3388611a26601e5486612bae90919063ffffffff16565b9050600081612f4284866138eb565b612f4c91906138eb565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114612fb6576040519150601f19603f3d011682016040523d82523d6000602084013e612fbb565b606091505b50909850508615801590612fcf5750600081115b1561302257612fde8782613486565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461307c576040519150601f19603f3d011682016040523d82523d6000602084013e613081565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015613123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314791906138d2565b90506000613166612710611a26600b5485612bae90919063ffffffff16565b9050801561319b5761319b7f000000000000000000000000000000000000000000000000000000000000000061dead83612bcd565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561320857600080fd5b505af115801561321c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612bba82846138eb565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061329457613294613902565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335d9190613931565b8160018151811061337057613370613902565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133d5307f000000000000000000000000000000000000000000000000000000000000000084611b1a565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061345090859060009086903090429060040161394e565b600060405180830381600087803b15801561346a57600080fd5b505af115801561347e573d6000803e3d6000fd5b505050505050565b6134b1307f000000000000000000000000000000000000000000000000000000000000000084611b1a565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613561573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061358691906139d9565b5050505050565b600060208083528351808285015260005b818110156135ba5785810183015185820160400152820161359e565b818111156135cc576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461184657600080fd5b6000806040838503121561363557600080fd5b823561364081613600565b946020939093013593505050565b60006020828403121561366057600080fd5b8135612bba81613600565b60006020828403121561367d57600080fd5b5035919050565b60008060006060848603121561369957600080fd5b83356136a481613600565b925060208401356136b481613600565b929592945050506040919091013590565b8035801515811461175557600080fd5b6000806000606084860312156136ea57600080fd5b8335925060208401359150613701604085016136c5565b90509250925092565b6000806040838503121561371d57600080fd5b823561372881613600565b9150613736602084016136c5565b90509250929050565b60008060006060848603121561375457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561377d57600080fd5b612bba826136c5565b6000806040838503121561379957600080fd5b82356137a481613600565b915060208301356137b481613600565b809150509250929050565b600181811c908216806137d357607f821691505b6020821081141561380d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387a5761387a613813565b500290565b6000826138b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156138cd576138cd613813565b500190565b6000602082840312156138e457600080fd5b5051919050565b6000828210156138fd576138fd613813565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561394357600080fd5b8151612bba81613600565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139ab57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613979565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156139ee57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cdbd21550bd5000eab6e62666ad712dfdf6c0e2636b0b8d96084336835573df964736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063dd62ed3e14610a90578063e2f4560514610ae3578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c876d0b9116100dc578063c876d0b914610a2a578063c8c8ebe414610a44578063d257b34f14610a5a578063d85ba06314610a7a57600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c17b5b8c146109ea578063c18bc19514610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063aacebbe31461095b578063b62496f51461097b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f5780638095d564146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104a05780631816467f146104bf578063184c16c5146104e157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b90565b6040516103df919061358d565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613622565b610c22565b60405190151581526020016103df565b34801561042457600080fd5b5061040861043336600461364e565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ac57600080fd5b506002545b6040519081526020016103df565b3480156104cb57600080fd5b506104df6104da36600461364e565b610c3a565b005b3480156104ed57600080fd5b506104b1600f5481565b34801561050357600080fd5b506104b1600b5481565b34801561051957600080fd5b506104b1601d5481565b34801561052f57600080fd5b506104b1601c5481565b34801561054557600080fd5b506104df61055436600461366b565b610cd1565b34801561056557600080fd5b50610408610574366004613684565b610db9565b34801561058557600080fd5b5061047b61dead81565b34801561059b57600080fd5b506104b1600d5481565b3480156105b157600080fd5b50600c546104089060ff1681565b3480156105cb57600080fd5b50604051601281526020016103df565b3480156105e757600080fd5b506104086105f6366004613622565b610ddd565b34801561060757600080fd5b5061047b7f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be81565b34801561063b57600080fd5b506011546104089060ff1681565b34801561065557600080fd5b5061040861066436600461364e565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104b160185481565b3480156106b157600080fd5b506011546104089062010000900460ff1681565b3480156106d157600080fd5b506104b16106e036600461364e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506104df610e29565b34801561072957600080fd5b506104df6107383660046136d5565b610e3d565b34801561074957600080fd5b50610408610fad565b34801561075e57600080fd5b506104df61076d36600461370a565b610fe5565b34801561077e57600080fd5b5060065461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104b160155481565b3480156107c157600080fd5b506104df6107d036600461373f565b611042565b3480156107e157600080fd5b506104df6110e0565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047b565b34801561082157600080fd5b5060075461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104b160195481565b34801561086457600080fd5b506104df61087336600461376b565b61111b565b34801561088457600080fd5b506103d261115b565b34801561089957600080fd5b506104df6108a836600461370a565b61116a565b3480156108b957600080fd5b506104b160175481565b3480156108cf57600080fd5b506104b160105481565b3480156108e557600080fd5b506104b1601e5481565b3480156108fb57600080fd5b506104b1601b5481565b34801561091157600080fd5b50610408610920366004613622565b61125c565b34801561093157600080fd5b506104b1600e5481565b34801561094757600080fd5b50610408610956366004613622565b61132d565b34801561096757600080fd5b506104df61097636600461364e565b61133b565b34801561098757600080fd5b5061040861099636600461364e565b60216020526000908152604090205460ff1681565b3480156109b757600080fd5b5060115461040890610100900460ff1681565b3480156109d657600080fd5b506104df6109e536600461370a565b6113d2565b3480156109f657600080fd5b506104df610a0536600461373f565b611464565b348015610a1657600080fd5b506104df610a2536600461366b565b6114ff565b348015610a3657600080fd5b506013546104089060ff1681565b348015610a5057600080fd5b506104b160085481565b348015610a6657600080fd5b50610408610a7536600461366b565b6115e1565b348015610a8657600080fd5b506104b160145481565b348015610a9c57600080fd5b506104b1610aab366004613786565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610aef57600080fd5b506104b160095481565b348015610b0557600080fd5b5061040861175a565b348015610b1a57600080fd5b506104b160165481565b348015610b3057600080fd5b506104df610b3f36600461364e565b611792565b348015610b5057600080fd5b506104b1601a5481565b348015610b6657600080fd5b506104b1600a5481565b348015610b7c57600080fd5b50610408610b8b36600461366b565b611849565b606060038054610b9f906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb906137bf565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b600033610c30818585611b1a565b5060019392505050565b610c42611ccd565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610cd9611ccd565b670de0b6b3a76400006103e8610cee60025490565b610cf9906001613842565b610d03919061387f565b610d0d919061387f565b811015610da1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3125000000000000000000000000000000000060648201526084015b60405180910390fd5b610db381670de0b6b3a7640000613842565b60085550565b600033610dc7858285611d4e565b610dd2858585611e25565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c309082908690610e249087906138ba565b611b1a565b610e31611ccd565b610e3b6000612ab8565b565b610e45611ccd565b610258831015610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610d98565b6103e88211158015610ee7575060015b610f73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610d98565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000610fb7611ccd565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610fed611ccd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61104a611ccd565b6015839055601682905560178190558061106483856138ba565b61106e91906138ba565b601481815510156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610d98565b505050565b6110e8611ccd565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b611123611ccd565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b9f906137bf565b611172611ccd565b7f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d98565b6112588282612b2f565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d98565b610dd28286868403611b1a565b600033610c30818585611e25565b611343611ccd565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6113da611ccd565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61146c611ccd565b6019839055601a829055601b8190558061148683856138ba565b61149091906138ba565b6018819055601910156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610d98565b611507611ccd565b670de0b6b3a76400006103e861151c60025490565b611527906005613842565b611531919061387f565b61153b919061387f565b8110156115c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610d98565b6115db81670de0b6b3a7640000613842565b600a5550565b60006115eb611ccd565b620186a06115f860025490565b611603906001613842565b61160d919061387f565b82101561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610d98565b6103e86116a860025490565b6116b3906005613842565b6116bd919061387f565b82111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610d98565b50600981905560015b919050565b6000611764611ccd565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b61179a611ccd565b73ffffffffffffffffffffffffffffffffffffffff811661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d98565b61184681612ab8565b50565b6000611853611ccd565b600f5460105461186391906138ba565b42116118cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d98565b6103e882111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610d98565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be16600482015260009030906370a0823190602401602060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1291906138d2565b90506000611a2c612710611a268487612bae565b90612bc1565b90508015611a6157611a617f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be61dead83612bcd565b60007f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ace57600080fd5b505af1158015611ae2573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216611c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d98565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e1f5781811015611e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d98565b611e1f8484848403611b1a565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216611f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d98565b80611f7c576110db83836000612bcd565b60115460ff161561260b5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611fcd575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611fee575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612012575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612039575060055474010000000000000000000000000000000000000000900460ff16155b1561260b57601154610100900460ff1661210c5773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16806120a6575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610d98565b60135460ff16156122c25760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061218e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121e657507f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122c2573260009081526012602052604090205443116122af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610d98565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16801561231c575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612453576008548111156123b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d98565b600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546123e690836138ba565b111561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d98565b61260b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff1680156124ad575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b156125445760085481111561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff1661260b57600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546125a390836138ba565b111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d98565b3060009081526020819052604090205460095481108015908190612637575060115462010000900460ff165b801561265e575060055474010000000000000000000000000000000000000000900460ff16155b8015612690575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b80156126c2575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b80156126f4575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b1561276957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612740612e3c565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff161580156127b9575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b80156127c75750600c5460ff165b80156127e25750600d54600e546127de91906138ba565b4210155b8015612814575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b1561282357612821613090565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061289c575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b156128a5575060005b60008115612aa45773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff1680156128e457506000601854115b1561299c576129036064611a2660185488612bae90919063ffffffff16565b9050601854601a54826129169190613842565b612920919061387f565b601d600082825461293191906138ba565b9091555050601854601b546129469083613842565b612950919061387f565b601e600082825461296191906138ba565b90915550506018546019546129769083613842565b612980919061387f565b601c600082825461299191906138ba565b90915550612a869050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156129d357506000601454115b15612a86576129f26064611a2660145488612bae90919063ffffffff16565b905060145460165482612a059190613842565b612a0f919061387f565b601d6000828254612a2091906138ba565b9091555050601454601754612a359083613842565b612a3f919061387f565b601e6000828254612a5091906138ba565b9091555050601454601554612a659083613842565b612a6f919061387f565b601c6000828254612a8091906138ba565b90915550505b8015612a9757612a97873083612bcd565b612aa181866138eb565b94505b612aaf878787612bcd565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612bba8284613842565b9392505050565b6000612bba828461387f565b73ffffffffffffffffffffffffffffffffffffffff8316612c70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff8216612d13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d98565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e1f565b3060009081526020819052604081205490506000601e54601c54601d54612e6391906138ba565b612e6d91906138ba565b90506000821580612e7c575081155b15612e8657505050565b600954612e94906014613842565b831115612eac57600954612ea9906014613842565b92505b6000600283601d5486612ebf9190613842565b612ec9919061387f565b612ed3919061387f565b90506000612ee18583613253565b905047612eed8261325f565b6000612ef94783613253565b90506000612f1687611a26601c5485612bae90919063ffffffff16565b90506000612f3388611a26601e5486612bae90919063ffffffff16565b9050600081612f4284866138eb565b612f4c91906138eb565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114612fb6576040519150601f19603f3d011682016040523d82523d6000602084013e612fbb565b606091505b50909850508615801590612fcf5750600081115b1561302257612fde8782613486565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461307c576040519150601f19603f3d011682016040523d82523d6000602084013e613081565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be166004820152600090819030906370a0823190602401602060405180830381865afa158015613123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314791906138d2565b90506000613166612710611a26600b5485612bae90919063ffffffff16565b9050801561319b5761319b7f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be61dead83612bcd565b60007f000000000000000000000000b9bc827fb8f39d08e54ac50ca0bf3dbe1150d0be90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561320857600080fd5b505af115801561321c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612bba82846138eb565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061329457613294613902565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335d9190613931565b8160018151811061337057613370613902565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133d5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b1a565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061345090859060009086903090429060040161394e565b600060405180830381600087803b15801561346a57600080fd5b505af115801561347e573d6000803e3d6000fd5b505050505050565b6134b1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b1a565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613561573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061358691906139d9565b5050505050565b600060208083528351808285015260005b818110156135ba5785810183015185820160400152820161359e565b818111156135cc576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461184657600080fd5b6000806040838503121561363557600080fd5b823561364081613600565b946020939093013593505050565b60006020828403121561366057600080fd5b8135612bba81613600565b60006020828403121561367d57600080fd5b5035919050565b60008060006060848603121561369957600080fd5b83356136a481613600565b925060208401356136b481613600565b929592945050506040919091013590565b8035801515811461175557600080fd5b6000806000606084860312156136ea57600080fd5b8335925060208401359150613701604085016136c5565b90509250925092565b6000806040838503121561371d57600080fd5b823561372881613600565b9150613736602084016136c5565b90509250929050565b60008060006060848603121561375457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561377d57600080fd5b612bba826136c5565b6000806040838503121561379957600080fd5b82356137a481613600565b915060208301356137b481613600565b809150509250929050565b600181811c908216806137d357607f821691505b6020821081141561380d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387a5761387a613813565b500290565b6000826138b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156138cd576138cd613813565b500190565b6000602082840312156138e457600080fd5b5051919050565b6000828210156138fd576138fd613813565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561394357600080fd5b8151612bba81613600565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139ab57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613979565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156139ee57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cdbd21550bd5000eab6e62666ad712dfdf6c0e2636b0b8d96084336835573df964736f6c634300080a0033
Deployed Bytecode Sourcemap
36191:19469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24907:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27258:201;;;;;;;;;;-1:-1:-1;27258:201:0;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;27258:201:0;1154:187:1;37827:63:0;;;;;;;;;;-1:-1:-1;37827:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36274:51;;;;;;;;;;;;;;;;;;1800:42:1;1788:55;;;1770:74;;1758:2;1743:18;36274:51:0;1598:252:1;26027:108:0;;;;;;;;;;-1:-1:-1;26115:12:0;;26027:108;;;2001:25:1;;;1989:2;1974:18;26027:108:0;1855:177:1;44988:157:0;;;;;;;;;;-1:-1:-1;44988:157:0;;;;;:::i;:::-;;:::i;:::-;;36840:47;;;;;;;;;;;;;;;;36654:36;;;;;;;;;;;;;;;;37611:33;;;;;;;;;;;;;;;;37571;;;;;;;;;;;;;;;;42302:275;;;;;;;;;;-1:-1:-1;42302:275:0;;;;;:::i;:::-;;:::i;28039:295::-;;;;;;;;;;-1:-1:-1;28039:295:0;;;;;:::i;:::-;;:::i;36377:53::-;;;;;;;;;;;;36423:6;36377:53;;36750:45;;;;;;;;;;;;;;;;36710:33;;;;;;;;;;-1:-1:-1;36710:33:0;;;;;;;;25869:93;;;;;;;;;;-1:-1:-1;25869:93:0;;25952:2;3056:36:1;;3044:2;3029:18;25869:93:0;2914:184:1;28743:238:0;;;;;;;;;;-1:-1:-1;28743:238:0;;;;;:::i;:::-;;:::i;36332:38::-;;;;;;;;;;;;;;;36938:33;;;;;;;;;;-1:-1:-1;36938:33:0;;;;;;;;45153:126;;;;;;;;;;-1:-1:-1;45153:126:0;;;;;:::i;:::-;45243:28;;45219:4;45243:28;;;:19;:28;;;;;;;;;45153:126;37426:28;;;;;;;;;;;;;;;;37018:31;;;;;;;;;;-1:-1:-1;37018:31:0;;;;;;;;;;;26198:127;;;;;;;;;;-1:-1:-1;26198:127:0;;;;;:::i;:::-;26299:18;;26272:7;26299:18;;;;;;;;;;;;26198:127;18332:103;;;;;;;;;;;;;:::i;53242:555::-;;;;;;;;;;-1:-1:-1;53242:555:0;;;;;:::i;:::-;;:::i;41410:121::-;;;;;;;;;;;;;:::i;42849:167::-;;;;;;;;;;-1:-1:-1;42849:167:0;;;;;:::i;:::-;;:::i;36469:30::-;;;;;;;;;;-1:-1:-1;36469:30:0;;;;;;;;37319;;;;;;;;;;;;;;;;43220:403;;;;;;;;;;-1:-1:-1;43220:403:0;;;;;:::i;:::-;;:::i;41203:155::-;;;;;;;;;;;;;:::i;17684:87::-;;;;;;;;;;-1:-1:-1;17757:6:0;;;;17684:87;;36506:24;;;;;;;;;;-1:-1:-1;36506:24:0;;;;;;;;37461:31;;;;;;;;;;;;;;;;43112:100;;;;;;;;;;-1:-1:-1;43112:100:0;;;;;:::i;:::-;;:::i;25126:104::-;;;;;;;;;;;;;:::i;44241:304::-;;;;;;;;;;-1:-1:-1;44241:304:0;;;;;:::i;:::-;;:::i;37393:24::-;;;;;;;;;;;;;;;;36894:35;;;;;;;;;;;;;;;;37651:27;;;;;;;;;;;;;;;;37537:25;;;;;;;;;;;;;;;;29484:436;;;;;;;;;;-1:-1:-1;29484:436:0;;;;;:::i;:::-;;:::i;36802:29::-;;;;;;;;;;;;;;;;26531:193;;;;;;;;;;-1:-1:-1;26531:193:0;;;;;:::i;:::-;;:::i;44749:231::-;;;;;;;;;;-1:-1:-1;44749:231:0;;;;;:::i;:::-;;:::i;38048:57::-;;;;;;;;;;-1:-1:-1;38048:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36978:33;;;;;;;;;;-1:-1:-1;36978:33:0;;;;;;;;;;;44051:182;;;;;;;;;;-1:-1:-1;44051:182:0;;;;;:::i;:::-;;:::i;43631:412::-;;;;;;;;;;-1:-1:-1;43631:412:0;;;;;:::i;:::-;;:::i;42585:256::-;;;;;;;;;;-1:-1:-1;42585:256:0;;;;;:::i;:::-;;:::i;37236:40::-;;;;;;;;;;-1:-1:-1;37236:40:0;;;;;;;;36539:35;;;;;;;;;;;;;;;;41797:497;;;;;;;;;;-1:-1:-1;41797:497:0;;;;;:::i;:::-;;:::i;37285:27::-;;;;;;;;;;;;;;;;26787:151;;;;;;;;;;-1:-1:-1;26787:151:0;;;;;:::i;:::-;26903:18;;;;26876:7;26903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26787:151;36581:33;;;;;;;;;;;;;;;;41592:135;;;;;;;;;;;;;:::i;37356:30::-;;;;;;;;;;;;;;;;18590:201;;;;;;;;;;-1:-1:-1;18590:201:0;;;;;:::i;:::-;;:::i;37499:31::-;;;;;;;;;;;;;;;;36621:24;;;;;;;;;;;;;;;;54601:1056;;;;;;;;;;-1:-1:-1;54601:1056:0;;;;;:::i;:::-;;:::i;24907:100::-;24961:13;24994:5;24987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24907:100;:::o;27258:201::-;27341:4;16315:10;27397:32;16315:10;27413:7;27422:6;27397:8;:32::i;:::-;-1:-1:-1;27447:4:0;;27258:201;-1:-1:-1;;;27258:201:0:o;44988:157::-;17570:13;:11;:13::i;:::-;45095:9:::1;::::0;45067:38:::1;::::0;45095:9:::1;::::0;;::::1;::::0;45067:38;::::1;::::0;::::1;::::0;45095:9:::1;::::0;45067:38:::1;45116:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44988:157::o;42302:275::-;17570:13;:11;:13::i;:::-;42439:4:::1;42431;42410:13;26115:12:::0;;;26027:108;42410:13:::1;:17;::::0;42426:1:::1;42410:17;:::i;:::-;42409:26;;;;:::i;:::-;42408:35;;;;:::i;:::-;42398:6;:45;;42376:142;;;::::0;::::1;::::0;;6153:2:1;42376:142:0::1;::::0;::::1;6135:21:1::0;6192:2;6172:18;;;6165:30;6231:34;6211:18;;;6204:62;6302:17;6282:18;;;6275:45;6337:19;;42376:142:0::1;;;;;;;;;42552:17;:6:::0;42562::::1;42552:17;:::i;:::-;42529:20;:40:::0;-1:-1:-1;42302:275:0:o;28039:295::-;28170:4;16315:10;28228:38;28244:4;16315:10;28259:6;28228:15;:38::i;:::-;28277:27;28287:4;28293:2;28297:6;28277:9;:27::i;:::-;-1:-1:-1;28322:4:0;;28039:295;-1:-1:-1;;;;28039:295:0:o;28743:238::-;16315:10;28831:4;26903:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;28831:4;;16315:10;28887:64;;16315:10;;26903:27;;28912:38;;28940:10;;28912:38;:::i;:::-;28887:8;:64::i;18332:103::-;17570:13;:11;:13::i;:::-;18397:30:::1;18424:1;18397:18;:30::i;:::-;18332:103::o:0;53242:555::-;17570:13;:11;:13::i;:::-;53444:3:::1;53421:19;:26;;53399:127;;;::::0;::::1;::::0;;6702:2:1;53399:127:0::1;::::0;::::1;6684:21:1::0;6741:2;6721:18;;;6714:30;6780:34;6760:18;;;6753:62;6851:21;6831:18;;;6824:49;6890:19;;53399:127:0::1;6500:415:1::0;53399:127:0::1;53571:4;53559:8;:16;;:33;;;;-1:-1:-1::0;53579:13:0;53559:33:::1;53537:131;;;::::0;::::1;::::0;;7122:2:1;53537:131:0::1;::::0;::::1;7104:21:1::0;7161:2;7141:18;;;7134:30;7200:34;7180:18;;;7173:62;7271:18;7251;;;7244:46;7307:19;;53537:131:0::1;6920:412:1::0;53537:131:0::1;53679:15;:37:::0;;;;53727:16:::1;:27:::0;53765:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;53242:555::o;41410:121::-;41462:4;17570:13;:11;:13::i;:::-;-1:-1:-1;41479:14:0::1;:22:::0;;;::::1;::::0;;;41410:121;:::o;42849:167::-;17570:13;:11;:13::i;:::-;42962:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;42849:167::o;43220:403::-;17570:13;:11;:13::i;:::-;43370:15:::1;:31:::0;;;43412:15:::1;:31:::0;;;43454:9:::1;:19:::0;;;43466:7;43499:33:::1;43430:13:::0;43388;43499:33:::1;:::i;:::-;:45;;;;:::i;:::-;43484:12;:60:::0;;;-1:-1:-1;43563:18:0::1;43555:60;;;::::0;::::1;::::0;;7539:2:1;43555:60:0::1;::::0;::::1;7521:21:1::0;7578:2;7558:18;;;7551:30;7617:31;7597:18;;;7590:59;7666:18;;43555:60:0::1;7337:353:1::0;43555:60:0::1;43220:403:::0;;;:::o;41203:155::-;17570:13;:11;:13::i;:::-;41258::::1;:20:::0;;41289:18;;;;;;41335:15:::1;41318:14;:32:::0;41203:155::o;43112:100::-;17570:13;:11;:13::i;:::-;43183:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;43112:100::o;25126:104::-;25182:13;25215:7;25208:14;;;;;:::i;44241:304::-;17570:13;:11;:13::i;:::-;44385::::1;44377:21;;:4;:21;;;;44355:128;;;::::0;::::1;::::0;;7897:2:1;44355:128:0::1;::::0;::::1;7879:21:1::0;7936:2;7916:18;;;7909:30;7975:34;7955:18;;;7948:62;8046:27;8026:18;;;8019:55;8091:19;;44355:128:0::1;7695:421:1::0;44355:128:0::1;44496:41;44525:4;44531:5;44496:28;:41::i;:::-;44241:304:::0;;:::o;29484:436::-;16315:10;29577:4;26903:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;29577:4;;16315:10;29724:15;29704:16;:35;;29696:85;;;;;;;8323:2:1;29696:85:0;;;8305:21:1;8362:2;8342:18;;;8335:30;8401:34;8381:18;;;8374:62;8472:7;8452:18;;;8445:35;8497:19;;29696:85:0;8121:401:1;29696:85:0;29817:60;29826:5;29833:7;29861:15;29842:16;:34;29817:8;:60::i;26531:193::-;26610:4;16315:10;26666:28;16315:10;26683:2;26687:6;26666:9;:28::i;44749:231::-;17570:13;:11;:13::i;:::-;44909:15:::1;::::0;44866:59:::1;::::0;44909:15:::1;::::0;;::::1;::::0;44866:59;::::1;::::0;::::1;::::0;44909:15:::1;::::0;44866:59:::1;44936:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44749:231::o;44051:182::-;17570:13;:11;:13::i;:::-;44136:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;44191:34;;1294:41:1;;;44191:34:0::1;::::0;1267:18:1;44191:34:0::1;;;;;;;44051:182:::0;;:::o;43631:412::-;17570:13;:11;:13::i;:::-;43782:16:::1;:32:::0;;;43825:16:::1;:32:::0;;;43868:10:::1;:20:::0;;;43881:7;43915:35:::1;43844:13:::0;43801;43915:35:::1;:::i;:::-;:48;;;;:::i;:::-;43899:13;:64:::0;;;43999:2:::1;-1:-1:-1::0;43982:19:0::1;43974:61;;;::::0;::::1;::::0;;8729:2:1;43974:61:0::1;::::0;::::1;8711:21:1::0;8768:2;8748:18;;;8741:30;8807:31;8787:18;;;8780:59;8856:18;;43974:61:0::1;8527:353:1::0;42585:256:0;17570:13;:11;:13::i;:::-;42725:4:::1;42717;42696:13;26115:12:::0;;;26027:108;42696:13:::1;:17;::::0;42712:1:::1;42696:17;:::i;:::-;42695:26;;;;:::i;:::-;42694:35;;;;:::i;:::-;42684:6;:45;;42662:131;;;::::0;::::1;::::0;;9087:2:1;42662:131:0::1;::::0;::::1;9069:21:1::0;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;9236:6;9216:18;;;9209:34;9260:19;;42662:131:0::1;8885:400:1::0;42662:131:0::1;42816:17;:6:::0;42826::::1;42816:17;:::i;:::-;42804:9;:29:::0;-1:-1:-1;42585:256:0:o;41797:497::-;41905:4;17570:13;:11;:13::i;:::-;41984:6:::1;41963:13;26115:12:::0;;;26027:108;41963:13:::1;:17;::::0;41979:1:::1;41963:17;:::i;:::-;41962:28;;;;:::i;:::-;41949:9;:41;;41927:144;;;::::0;::::1;::::0;;9492:2:1;41927:144:0::1;::::0;::::1;9474:21:1::0;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;9641:23;9621:18;;;9614:51;9682:19;;41927:144:0::1;9290:417:1::0;41927:144:0::1;42139:4;42118:13;26115:12:::0;;;26027:108;42118:13:::1;:17;::::0;42134:1:::1;42118:17;:::i;:::-;42117:26;;;;:::i;:::-;42104:9;:39;;42082:141;;;::::0;::::1;::::0;;9914:2:1;42082:141:0::1;::::0;::::1;9896:21:1::0;9953:2;9933:18;;;9926:30;9992:34;9972:18;;;9965:62;10063:22;10043:18;;;10036:50;10103:19;;42082:141:0::1;9712:416:1::0;42082:141:0::1;-1:-1:-1::0;42234:18:0::1;:30:::0;;;42282:4:::1;17594:1;41797:497:::0;;;:::o;41592:135::-;41652:4;17570:13;:11;:13::i;:::-;-1:-1:-1;41669:20:0::1;:28:::0;;;::::1;::::0;;;41592:135;:::o;18590:201::-;17570:13;:11;:13::i;:::-;18679:22:::1;::::0;::::1;18671:73;;;::::0;::::1;::::0;;10335:2:1;18671:73:0::1;::::0;::::1;10317:21:1::0;10374:2;10354:18;;;10347:30;10413:34;10393:18;;;10386:62;10484:8;10464:18;;;10457:36;10510:19;;18671:73:0::1;10133:402:1::0;18671:73:0::1;18755:28;18774:8;18755:18;:28::i;:::-;18590:201:::0;:::o;54601:1056::-;54712:4;17570:13;:11;:13::i;:::-;54797:19:::1;;54774:20;;:42;;;;:::i;:::-;54756:15;:60;54734:142;;;::::0;::::1;::::0;;10742:2:1;54734:142:0::1;::::0;::::1;10724:21:1::0;;;10761:18;;;10754:30;10820:34;10800:18;;;10793:62;10872:18;;54734:142:0::1;10540:356:1::0;54734:142:0::1;54906:4;54895:7;:15;;54887:70;;;::::0;::::1;::::0;;11103:2:1;54887:70:0::1;::::0;::::1;11085:21:1::0;11142:2;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;11252:12;11232:18;;;11225:40;11282:19;;54887:70:0::1;10901:406:1::0;54887:70:0::1;54991:15;54968:20;:38:::0;55092:29:::1;::::0;;;;1800:42:1;55107:13:0::1;1788:55:1::0;55092:29:0::1;::::0;::::1;1770:74:1::0;55061:28:0::1;::::0;55092:4:::1;::::0;:14:::1;::::0;1743:18:1;;55092:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55061:60:::0;-1:-1:-1;55171:20:0::1;55194:44;55232:5;55194:33;55061:60:::0;55219:7;55194:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;55171:67:::0;-1:-1:-1;55343:16:0;;55339:110:::1;;55376:61;55392:13;55415:6;55424:12;55376:15;:61::i;:::-;55524:19;55561:13;55524:51;;55586:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55613:14:0::1;::::0;::::1;::::0;-1:-1:-1;55613:14:0;;-1:-1:-1;55613:14:0::1;-1:-1:-1::0;55645:4:0::1;::::0;54601:1056;-1:-1:-1;;;;54601:1056:0:o;33511:380::-;33647:19;;;33639:68;;;;;;;11703:2:1;33639:68:0;;;11685:21:1;11742:2;11722:18;;;11715:30;11781:34;11761:18;;;11754:62;11852:6;11832:18;;;11825:34;11876:19;;33639:68:0;11501:400:1;33639:68:0;33726:21;;;33718:68;;;;;;;12108:2:1;33718:68:0;;;12090:21:1;12147:2;12127:18;;;12120:30;12186:34;12166:18;;;12159:62;12257:4;12237:18;;;12230:32;12279:19;;33718:68:0;11906:398:1;33718:68:0;33799:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33851:32;;2001:25:1;;;33851:32:0;;1974:18:1;33851:32:0;;;;;;;33511:380;;;:::o;17849:132::-;17757:6;;17913:23;17757:6;16315:10;17913:23;17905:68;;;;;;;12511:2:1;17905:68:0;;;12493:21:1;;;12530:18;;;12523:30;12589:34;12569:18;;;12562:62;12641:18;;17905:68:0;12309:356:1;34182:453:0;26903:18;;;;34317:24;26903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;34404:17;34384:37;;34380:248;;34466:6;34446:16;:26;;34438:68;;;;;;;12872:2:1;34438:68:0;;;12854:21:1;12911:2;12891:18;;;12884:30;12950:31;12930:18;;;12923:59;12999:18;;34438:68:0;12670:353:1;34438:68:0;34550:51;34559:5;34566:7;34594:6;34575:16;:25;34550:8;:51::i;:::-;34306:329;34182:453;;;:::o;45337:5011::-;45469:18;;;45461:68;;;;;;;13230:2:1;45461:68:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;13379:7;13359:18;;;13352:35;13404:19;;45461:68:0;13028:401:1;45461:68:0;45548:16;;;45540:64;;;;;;;13636:2:1;45540:64:0;;;13618:21:1;13675:2;13655:18;;;13648:30;13714:34;13694:18;;;13687:62;13785:5;13765:18;;;13758:33;13808:19;;45540:64:0;13434:399:1;45540:64:0;45621:11;45617:93;;45649:28;45665:4;45671:2;45675:1;45649:15;:28::i;45617:93::-;45726:14;;;;45722:2487;;;17757:6;;;45779:15;;;17757:6;;45779:15;;;;:49;;-1:-1:-1;17757:6:0;;;45815:13;;;17757:6;;45815:13;;45779:49;:86;;;;-1:-1:-1;45849:16:0;;;;;45779:86;:128;;;;-1:-1:-1;45886:21:0;;;45900:6;45886:21;;45779:128;:158;;;;-1:-1:-1;45929:8:0;;;;;;;45928:9;45779:158;45757:2441;;;45977:13;;;;;;;45972:223;;46049:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;46078:23:0;;;;;;;:19;:23;;;;;;;;46049:52;46015:160;;;;;;;14040:2:1;46015:160:0;;;14022:21:1;14079:2;14059:18;;;14052:30;14118:24;14098:18;;;14091:52;14160:18;;46015:160:0;13838:346:1;46015:160:0;46351:20;;;;46347:641;;;17757:6;;;46426:13;;;17757:6;;46426:13;;;;:72;;;46482:15;46468:30;;:2;:30;;;;46426:72;:129;;;;;46541:13;46527:28;;:2;:28;;;;46426:129;46396:573;;;46673:9;46644:39;;;;:28;:39;;;;;;46719:12;-1:-1:-1;46606:258:0;;;;;;;14391:2:1;46606:258:0;;;14373:21:1;14430:2;14410:18;;;14403:30;14469:34;14449:18;;;14442:62;14540:34;14520:18;;;14513:62;14612:11;14591:19;;;14584:40;14641:19;;46606:258:0;14189:477:1;46606:258:0;46920:9;46891:39;;;;:28;:39;;;;;46933:12;46891:54;;46396:573;47062:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;47119:35:0;;;;;;;:31;:35;;;;;;;;47118:36;47062:92;47036:1147;;;47241:20;;47231:6;:30;;47197:169;;;;;;;14873:2:1;47197:169:0;;;14855:21:1;14912:2;14892:18;;;14885:30;14951:34;14931:18;;;14924:62;15022:23;15002:18;;;14995:51;15063:19;;47197:169:0;14671:417:1;47197:169:0;47449:9;;26299:18;;;26272:7;26299:18;;;;;;;;;;;47423:22;;:6;:22;:::i;:::-;:35;;47389:140;;;;;;;15295:2:1;47389:140:0;;;15277:21:1;15334:2;15314:18;;;15307:30;15373:21;15353:18;;;15346:49;15412:18;;47389:140:0;15093:343:1;47389:140:0;47036:1147;;;47627:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;47682:37:0;;;;;;;:31;:37;;;;;;;;47681:38;47627:92;47601:582;;;47806:20;;47796:6;:30;;47762:170;;;;;;;15643:2:1;47762:170:0;;;15625:21:1;15682:2;15662:18;;;15655:30;15721:34;15701:18;;;15694:62;15792:24;15772:18;;;15765:52;15834:19;;47762:170:0;15441:418:1;47601:582:0;47963:35;;;;;;;:31;:35;;;;;;;;47958:225;;48083:9;;26299:18;;;26272:7;26299:18;;;;;;;;;;;48057:22;;:6;:22;:::i;:::-;:35;;48023:140;;;;;;;15295:2:1;48023:140:0;;;15277:21:1;15334:2;15314:18;;;15307:30;15373:21;15353:18;;;15346:49;15412:18;;48023:140:0;15093:343:1;48023:140:0;48270:4;48221:28;26299:18;;;;;;;;;;;48328;;48304:42;;;;;;;48377:35;;-1:-1:-1;48401:11:0;;;;;;;48377:35;:61;;;;-1:-1:-1;48430:8:0;;;;;;;48429:9;48377:61;:110;;;;-1:-1:-1;48456:31:0;;;;;;;:25;:31;;;;;;;;48455:32;48377:110;:153;;;;-1:-1:-1;48505:25:0;;;;;;;:19;:25;;;;;;;;48504:26;48377:153;:194;;;;-1:-1:-1;48548:23:0;;;;;;;:19;:23;;;;;;;;48547:24;48377:194;48359:326;;;48598:8;:15;;;;;;;;48630:10;:8;:10::i;:::-;48657:8;:16;;;;;;48359:326;48716:8;;;;;;;48715:9;:55;;;;-1:-1:-1;48741:29:0;;;;;;;:25;:29;;;;;;;;48715:55;:85;;;;-1:-1:-1;48787:13:0;;;;48715:85;:153;;;;;48853:15;;48836:14;;:32;;;;:::i;:::-;48817:15;:51;;48715:153;:196;;;;-1:-1:-1;48886:25:0;;;;;;;:19;:25;;;;;;;;48885:26;48715:196;48697:282;;;48938:29;:27;:29::i;:::-;;48697:282;49007:8;;49117:25;;;48991:12;49117:25;;;:19;:25;;;;;;49007:8;;;;;;;49006:9;;49117:25;;:52;;-1:-1:-1;49146:23:0;;;;;;;:19;:23;;;;;;;;49117:52;49113:100;;;-1:-1:-1;49196:5:0;49113:100;49225:12;49330:7;49326:969;;;49382:29;;;;;;;:25;:29;;;;;;;;:50;;;;;49431:1;49415:13;;:17;49382:50;49378:768;;;49460:34;49490:3;49460:25;49471:13;;49460:6;:10;;:25;;;;:::i;:34::-;49453:41;;49563:13;;49543:16;;49536:4;:23;;;;:::i;:::-;49535:41;;;;:::i;:::-;49513:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49633:13:0;;49619:10;;49612:17;;:4;:17;:::i;:::-;49611:35;;;;:::i;:::-;49595:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;49715:13:0;;49695:16;;49688:23;;:4;:23;:::i;:::-;49687:41;;;;:::i;:::-;49665:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;49378:768:0;;-1:-1:-1;49378:768:0;;49790:31;;;;;;;:25;:31;;;;;;;;:51;;;;;49840:1;49825:12;;:16;49790:51;49786:360;;;49869:33;49898:3;49869:24;49880:12;;49869:6;:10;;:24;;;;:::i;:33::-;49862:40;;49970:12;;49951:15;;49944:4;:22;;;;:::i;:::-;49943:39;;;;:::i;:::-;49921:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50038:12:0;;50025:9;;50018:16;;:4;:16;:::i;:::-;50017:33;;;;:::i;:::-;50001:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50118:12:0;;50099:15;;50092:22;;:4;:22;:::i;:::-;50091:39;;;;:::i;:::-;50069:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49786:360:0;50166:8;;50162:91;;50195:42;50211:4;50225;50232;50195:15;:42::i;:::-;50269:14;50279:4;50269:14;;:::i;:::-;;;49326:969;50307:33;50323:4;50329:2;50333:6;50307:15;:33::i;:::-;45450:4898;;;;45337:5011;;;:::o;18951:191::-;19044:6;;;;19061:17;;;;;;;;;;;19094:40;;19044:6;;;19061:17;19044:6;;19094:40;;19025:16;;19094:40;19014:128;18951:191;:::o;44553:188::-;44636:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;44693:40;;44636:39;;:31;44693:40;;;44553:188;;:::o;12129:98::-;12187:7;12214:5;12218:1;12214;:5;:::i;:::-;12207:12;12129:98;-1:-1:-1;;;12129:98:0:o;12528:::-;12586:7;12613:5;12617:1;12613;:5;:::i;30390:840::-;30521:18;;;30513:68;;;;;;;13230:2:1;30513:68:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;13379:7;13359:18;;;13352:35;13404:19;;30513:68:0;13028:401:1;30513:68:0;30600:16;;;30592:64;;;;;;;13636:2:1;30592:64:0;;;13618:21:1;13675:2;13655:18;;;13648:30;13714:34;13694:18;;;13687:62;13785:5;13765:18;;;13758:33;13808:19;;30592:64:0;13434:399:1;30592:64:0;30742:15;;;30720:19;30742:15;;;;;;;;;;;30776:21;;;;30768:72;;;;;;;16196:2:1;30768:72:0;;;16178:21:1;16235:2;16215:18;;;16208:30;16274:34;16254:18;;;16247:62;16345:8;16325:18;;;16318:36;16371:19;;30768:72:0;15994:402:1;30768:72:0;30876:15;;;;:9;:15;;;;;;;;;;;30894:20;;;30876:38;;31094:13;;;;;;;;;;:23;;;;;;31146:26;;2001:25:1;;;31094:13:0;;31146:26;;1974:18:1;31146:26:0;;;;;;;31185:37;43220:403;51478:1756;51561:4;51517:23;26299:18;;;;;;;;;;;51517:50;;51578:25;51674:12;;51640:18;;51606;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;51578:108;-1:-1:-1;51697:12:0;51726:20;;;:46;;-1:-1:-1;51750:22:0;;51726:46;51722:85;;;51789:7;;;51478:1756::o;51722:85::-;51841:18;;:23;;51862:2;51841:23;:::i;:::-;51823:15;:41;51819:115;;;51899:18;;:23;;51920:2;51899:23;:::i;:::-;51881:41;;51819:115;51995:23;52108:1;52075:17;52040:18;;52022:15;:36;;;;:::i;:::-;52021:71;;;;:::i;:::-;:88;;;;:::i;:::-;51995:114;-1:-1:-1;52120:26:0;52149:36;:15;51995:114;52149:19;:36::i;:::-;52120:65;-1:-1:-1;52226:21:0;52260:36;52120:65;52260:16;:36::i;:::-;52309:18;52330:44;:21;52356:17;52330:25;:44::i;:::-;52309:65;;52387:23;52413:81;52466:17;52413:34;52428:18;;52413:10;:14;;:34;;;;:::i;:81::-;52387:107;;52505:17;52525:51;52558:17;52525:28;52540:12;;52525:10;:14;;:28;;;;:::i;:51::-;52505:71;-1:-1:-1;52589:23:0;52505:71;52615:28;52628:15;52615:10;:28;:::i;:::-;:40;;;;:::i;:::-;52689:1;52668:18;:22;;;52701:18;:22;;;52734:12;:16;;;52785:9;;52777:45;;52589:66;;-1:-1:-1;52785:9:0;;;52808;;52777:45;52689:1;52777:45;52808:9;52785;52777:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52763:59:0;;-1:-1:-1;;52839:19:0;;;;;:42;;;52880:1;52862:15;:19;52839:42;52835:278;;;52898:46;52911:15;52928;52898:12;:46::i;:::-;53068:18;;52964:137;;;16813:25:1;;;16869:2;16854:18;;16847:34;;;16897:18;;;16890:34;;;;52964:137:0;;;;;;16801:2:1;52964:137:0;;;52835:278;53147:15;;53139:87;;53147:15;;;;;53190:21;;53139:87;;;;53190:21;53147:15;53139:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;51478:1756:0:o;53805:788::-;53896:15;53879:14;:32;53997:29;;;;;1800:42:1;54012:13:0;1788:55:1;53997:29:0;;;1770:74:1;53862:4:0;;;;53997;;:14;;1743:18:1;;53997:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53966:60;;54076:20;54099:77;54160:5;54099:42;54124:16;;54099:20;:24;;:42;;;;:::i;:77::-;54076:100;-1:-1:-1;54281:16:0;;54277:110;;54314:61;54330:13;54353:6;54362:12;54314:15;:61::i;:::-;54462:19;54499:13;54462:51;;54524:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54551:12:0;;;;-1:-1:-1;54551:12:0;;-1:-1:-1;54551:12:0;54581:4;54574:11;;;;;53805:788;:::o;11772:98::-;11830:7;11857:5;11861:1;11857;:5;:::i;50356:589::-;50506:16;;;50520:1;50506:16;;;;;;;;50482:21;;50506:16;;;;;;;;;;-1:-1:-1;50506:16:0;50482:40;;50551:4;50533;50538:1;50533:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;50577:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50567:4;50572:1;50567:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;50612:62;50629:4;50644:15;50662:11;50612:8;:62::i;:::-;50713:224;;;;;:66;:15;:66;;;;:224;;50794:11;;50820:1;;50864:4;;50891;;50911:15;;50713:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50411:534;50356:589;:::o;50953:517::-;51101:62;51118:4;51133:15;51151:11;51101:8;:62::i;:::-;51206:256;;;;;51278:4;51206:256;;;18964:34:1;19014:18;;;19007:34;;;51324:1:0;19057:18:1;;;19050:34;;;19100:18;;;19093:34;36423:6:0;19143:19:1;;;19136:44;51436:15:0;19196:19:1;;;19189:35;51206:15:0;:31;;;;;51245:9;;18875:19:1;;51206:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50953:517;;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1346:247::-;1405:6;1458:2;1446:9;1437:7;1433:23;1429:32;1426:52;;;1474:1;1471;1464:12;1426:52;1513:9;1500:23;1532:31;1557:5;1532:31;:::i;2037:180::-;2096:6;2149:2;2137:9;2128:7;2124:23;2120:32;2117:52;;;2165:1;2162;2155:12;2117:52;-1:-1:-1;2188:23:1;;2037:180;-1:-1:-1;2037:180:1:o;2222:456::-;2299:6;2307;2315;2368:2;2356:9;2347:7;2343:23;2339:32;2336:52;;;2384:1;2381;2374:12;2336:52;2423:9;2410:23;2442:31;2467:5;2442:31;:::i;:::-;2492:5;-1:-1:-1;2549:2:1;2534:18;;2521:32;2562:33;2521:32;2562:33;:::i;:::-;2222:456;;2614:7;;-1:-1:-1;;;2668:2:1;2653:18;;;;2640:32;;2222:456::o;3103:160::-;3168:20;;3224:13;;3217:21;3207:32;;3197:60;;3253:1;3250;3243:12;3268:316;3342:6;3350;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:52;;;3427:1;3424;3417:12;3379:52;3463:9;3450:23;3440:33;;3520:2;3509:9;3505:18;3492:32;3482:42;;3543:35;3574:2;3563:9;3559:18;3543:35;:::i;:::-;3533:45;;3268:316;;;;;:::o;3589:315::-;3654:6;3662;3715:2;3703:9;3694:7;3690:23;3686:32;3683:52;;;3731:1;3728;3721:12;3683:52;3770:9;3757:23;3789:31;3814:5;3789:31;:::i;:::-;3839:5;-1:-1:-1;3863:35:1;3894:2;3879:18;;3863:35;:::i;:::-;3853:45;;3589:315;;;;;:::o;3909:316::-;3986:6;3994;4002;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;-1:-1:-1;;4094:23:1;;;4164:2;4149:18;;4136:32;;-1:-1:-1;4215:2:1;4200:18;;;4187:32;;3909:316;-1:-1:-1;3909:316:1:o;4230:180::-;4286:6;4339:2;4327:9;4318:7;4314:23;4310:32;4307:52;;;4355:1;4352;4345:12;4307:52;4378:26;4394:9;4378:26;:::i;4415:388::-;4483:6;4491;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4599:9;4586:23;4618:31;4643:5;4618:31;:::i;:::-;4668:5;-1:-1:-1;4725:2:1;4710:18;;4697:32;4738:33;4697:32;4738:33;:::i;:::-;4790:7;4780:17;;;4415:388;;;;;:::o;4808:437::-;4887:1;4883:12;;;;4930;;;4951:61;;5005:4;4997:6;4993:17;4983:27;;4951:61;5058:2;5050:6;5047:14;5027:18;5024:38;5021:218;;;5095:77;5092:1;5085:88;5196:4;5193:1;5186:15;5224:4;5221:1;5214:15;5021:218;;4808:437;;;:::o;5250:184::-;5302:77;5299:1;5292:88;5399:4;5396:1;5389:15;5423:4;5420:1;5413:15;5439:228;5479:7;5605:1;5537:66;5533:74;5530:1;5527:81;5522:1;5515:9;5508:17;5504:105;5501:131;;;5612:18;;:::i;:::-;-1:-1:-1;5652:9:1;;5439:228::o;5672:274::-;5712:1;5738;5728:189;;5773:77;5770:1;5763:88;5874:4;5871:1;5864:15;5902:4;5899:1;5892:15;5728:189;-1:-1:-1;5931:9:1;;5672:274::o;6367:128::-;6407:3;6438:1;6434:6;6431:1;6428:13;6425:39;;;6444:18;;:::i;:::-;-1:-1:-1;6480:9:1;;6367:128::o;11312:184::-;11382:6;11435:2;11423:9;11414:7;11410:23;11406:32;11403:52;;;11451:1;11448;11441:12;11403:52;-1:-1:-1;11474:16:1;;11312:184;-1:-1:-1;11312:184:1:o;15864:125::-;15904:4;15932:1;15929;15926:8;15923:34;;;15937:18;;:::i;:::-;-1:-1:-1;15974:9:1;;15864:125::o;17124:184::-;17176:77;17173:1;17166:88;17273:4;17270:1;17263:15;17297:4;17294:1;17287:15;17313:251;17383:6;17436:2;17424:9;17415:7;17411:23;17407:32;17404:52;;;17452:1;17449;17442:12;17404:52;17484:9;17478:16;17503:31;17528:5;17503:31;:::i;17569:1026::-;17831:4;17879:3;17868:9;17864:19;17910:6;17899:9;17892:25;17936:2;17974:6;17969:2;17958:9;17954:18;17947:34;18017:3;18012:2;18001:9;17997:18;17990:31;18041:6;18076;18070:13;18107:6;18099;18092:22;18145:3;18134:9;18130:19;18123:26;;18184:2;18176:6;18172:15;18158:29;;18205:1;18215:218;18229:6;18226:1;18223:13;18215:218;;;18294:13;;18309:42;18290:62;18278:75;;18408:15;;;;18373:12;;;;18251:1;18244:9;18215:218;;;-1:-1:-1;;18501:42:1;18489:55;;;;18484:2;18469:18;;18462:83;-1:-1:-1;;;18576:3:1;18561:19;18554:35;18450:3;17569:1026;-1:-1:-1;;;17569:1026:1:o;19235:306::-;19323:6;19331;19339;19392:2;19380:9;19371:7;19367:23;19363:32;19360:52;;;19408:1;19405;19398:12;19360:52;19437:9;19431:16;19421:26;;19487:2;19476:9;19472:18;19466:25;19456:35;;19531:2;19520:9;19516:18;19510:25;19500:35;;19235:306;;;;;:::o
Swarm Source
ipfs://cdbd21550bd5000eab6e62666ad712dfdf6c0e2636b0b8d96084336835573df9
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.