ERC-20
Overview
Max Total Supply
10,000,000 SENTAI
Holders
82
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
18,284.201341383202686207 SENTAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sentiment
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2023-12-1 */ /* https://twitter.com/0xsentimentTG https://t.me/SentimentAI_TG https://docs.sentiment-tg.com/ https://sentiment-tg.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.22; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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) /** * @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) /** * @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 {} } contract Ownable is Context { address public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; authorizations[_owner] = true; emit OwnershipTransferred(address(0), msgSender); } mapping (address => bool) internal authorizations; function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED if (_status == _ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } contract Sentiment is Ownable, ERC20, ReentrancyGuard { error TradingClosed(); error TransactionTooLarge(); error MaxBalanceExceeded(); error PercentOutOfRange(); error NotExternalToken(); error TransferFailed(); error UnknownCaller(); bool public tradingOpen; bool private _inSwap; address public marketingFeeReceiver; uint256 public maxTxAmount; uint256 public maxWalletBalance; mapping(address => bool) private _authorizations; mapping(address => bool) private _feeExemptions; address private constant _ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private immutable _factory; address public immutable uniswapV2Pair; uint256 public swapThreshold; uint256 public sellTax; uint256 public buyTax; modifier swapping() { _inSwap = true; _; _inSwap = false; } address private originAddr; constructor( string memory _name, string memory _symbol, uint256 _tokenSupply, uint8 _maxWalletPercent, uint8 _maxTxPercent, uint8 _buyTax, uint8 _sellTax ) ERC20(_name, _symbol) { // Adjust token supply for 18 decimals uint256 supply = _tokenSupply * 1 ether; swapThreshold = Math.mulDiv(supply, 3, 1000); marketingFeeReceiver = msg.sender; buyTax = _buyTax; sellTax = _sellTax; // Calculate max wallet balance and transaction amount maxWalletBalance = Math.mulDiv(supply, _maxWalletPercent, 100); maxTxAmount = Math.mulDiv(supply, _maxTxPercent, 100); // Create UniswapV2Pair IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER); address pair = IUniswapV2Factory(router.factory()).createPair( router.WETH(), address(this) ); uniswapV2Pair = pair; originAddr = msg.sender; _authorizations[msg.sender] = true; _authorizations[address(this)] = true; _authorizations[address(0xdead)] = true; _authorizations[address(0)] = true; _authorizations[pair] = true; _authorizations[address(router)] = true; _factory = msg.sender; _feeExemptions[msg.sender] = true; _feeExemptions[address(this)] = true; _approve(msg.sender, _ROUTER, type(uint256).max); _approve(msg.sender, pair, type(uint256).max); _approve(address(this), _ROUTER, type(uint256).max); _approve(address(this), pair, type(uint256).max); _mint(msg.sender, supply); } function setMaxWalletAndTxPercent( uint256 _maxWalletPercent, uint256 _maxTxPercent ) external onlyOwner { if (_maxWalletPercent == 0 || _maxWalletPercent > 100) { revert PercentOutOfRange(); } if (_maxTxPercent == 0 || _maxTxPercent > 100) { revert PercentOutOfRange(); } uint256 supply = totalSupply(); maxWalletBalance = Math.mulDiv(supply, _maxWalletPercent, 100); maxTxAmount = Math.mulDiv(supply, _maxTxPercent, 100); } function setExemptFromMaxTx(address addr, bool value) public onlyOwner { _authorizations[addr] = value; } function setExemptFromFee(address addr, bool value) public onlyOwner { _feeExemptions[addr] = value; } function _transfer( address _from, address _to, uint256 _amount ) internal override { if (_shouldSwapBack()) { _swapBack(); } if (_inSwap) { return super._transfer(_from, _to, _amount); } uint256 fee = (_feeExemptions[_from] || _feeExemptions[_to]) ? 0 : _calculateFee(_from, _to, _amount); if (fee != 0) { super._transfer(_from, address(this), fee); _amount -= fee; } super._transfer(_from, _to, _amount); } function _swapBack() internal swapping nonReentrant { IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER); address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( balanceOf(address(this)), 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; (bool success, ) = payable(marketingFeeReceiver).call{ value: balance }(""); if (!success) { revert TransferFailed(); } } function _calculateFee( address sender, address recipient, uint256 amount ) internal view returns (uint256) { if (recipient == uniswapV2Pair) { return Math.mulDiv(amount, sellTax, 100); } else if (sender == uniswapV2Pair) { return Math.mulDiv(amount, buyTax, 100); } return (0); } function _shouldSwapBack() internal view returns (bool) { return msg.sender != uniswapV2Pair && !_inSwap && balanceOf(address(this)) >= swapThreshold; } function clearStuckToken( address tokenAddress, uint256 tokens ) external returns (bool success) { if (tokenAddress == address(this)) { revert NotExternalToken(); } else { if (tokens == 0) { tokens = ERC20(tokenAddress).balanceOf(address(this)); return ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens); } else { return ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens); } } } function setTaxes(uint256 _buyTax, uint256 _sellTax) external onlyOwner { if (sellTax >= 100) { revert PercentOutOfRange(); } if (buyTax >= 100) { revert PercentOutOfRange(); } sellTax = _sellTax; buyTax = _buyTax; } function openTrading() public onlyOwner { tradingOpen = true; } function setMarketingWallet( address _marketingFeeReceiver ) external onlyOwner { marketingFeeReceiver = _marketingFeeReceiver; } function setSwapBackSettings(uint256 _amount) external onlyOwner { uint256 total = totalSupply(); uint newAmount = _amount * 1 ether; require( newAmount >= total / 1000 && newAmount <= total / 20, "The amount should be between 0.1% and 5% of total supply" ); swapThreshold = newAmount; } function _beforeTokenTransfer( address _from, address _to, uint256 _amount ) internal view override { // Check if trading is open, if not, block all transfers except from authorized parties (owner by default) if (!tradingOpen) { if (!_authorizations[_from] && !_authorizations[_to]) { revert TradingClosed(); } } // Confirm the recipient cannot receive over the max wallet balance if (!_authorizations[_to]) { if ((balanceOf(_to) + _amount) > maxWalletBalance) { revert MaxBalanceExceeded(); } } // Confirm the sender cannot exceed the max transaction limit if (!_authorizations[_from]) { if (_amount > maxTxAmount) { revert TransactionTooLarge(); } } } receive() external payable {} fallback() external payable {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_tokenSupply","type":"uint256"},{"internalType":"uint8","name":"_maxWalletPercent","type":"uint8"},{"internalType":"uint8","name":"_maxTxPercent","type":"uint8"},{"internalType":"uint8","name":"_buyTax","type":"uint8"},{"internalType":"uint8","name":"_sellTax","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"MaxBalanceExceeded","type":"error"},{"inputs":[],"name":"NotExternalToken","type":"error"},{"inputs":[],"name":"PercentOutOfRange","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"TradingClosed","type":"error"},{"inputs":[],"name":"TransactionTooLarge","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"UnknownCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingFeeReceiver","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletPercent","type":"uint256"},{"internalType":"uint256","name":"_maxTxPercent","type":"uint256"}],"name":"setMaxWalletAndTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801562000010575f80fd5b5060405162004b1f38038062004b1f8339818101604052810190620000369190620010d6565b86865f620000496200082c60201b60201c565b9050805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001805f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600590816200016a9190620013f0565b5080600690816200017c9190620013f0565b50505060016007819055505f670de0b6b3a7640000866200019e919062001501565b9050620001b68160036103e86200083360201b60201c565b600d8190555033600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260ff16600f819055508160ff16600e8190555062000228818660ff1660646200083360201b60201c565b600a8190555062000245818560ff1660646200083360201b60201c565b6009819055505f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d49190620015ac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653968373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000339573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200035f9190620015ac565b306040518363ffffffff1660e01b81526004016200037f929190620015ed565b6020604051808303815f875af11580156200039c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003c29190620015ac565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250503360105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200075d33737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200093a60201b60201c565b6200079033827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200093a60201b60201c565b620007d730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200093a60201b60201c565b6200080a30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200093a60201b60201c565b6200081c338462000b0560201b60201c565b5050505050505050505062001851565b5f33905090565b5f805f80198587098587029250828110838203039150505f8103620008705783828162000865576200086462001618565b5b049250505062000933565b808411620008aa576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8486880990508281118203915080830392505f60018619018616905080860495508084049350600181825f0304019050808302841793505f600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a290620016c9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a13906200175d565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000af891906200178e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6d90620017f7565b60405180910390fd5b62000b895f838362000c6b60201b60201c565b8060045f82825462000b9c919062001817565b925050819055508060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c4c91906200178e565b60405180910390a362000c675f838362000e9360201b60201c565b5050565b60085f9054906101000a900460ff1662000d5757600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801562000d1e5750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1562000d56576040517fe2c865df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1662000e0157600a548162000dbb8462000e9860201b60201c565b62000dc7919062001817565b111562000e00576040517f24691f6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1662000e8e5760095481111562000e8d576040517f973ec46f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000f3f8262000ef7565b810181811067ffffffffffffffff8211171562000f615762000f6062000f07565b5b80604052505050565b5f62000f7562000ede565b905062000f83828262000f34565b919050565b5f67ffffffffffffffff82111562000fa55762000fa462000f07565b5b62000fb08262000ef7565b9050602081019050919050565b5f5b8381101562000fdc57808201518184015260208101905062000fbf565b5f8484015250505050565b5f62000ffd62000ff78462000f88565b62000f6a565b9050828152602081018484840111156200101c576200101b62000ef3565b5b6200102984828562000fbd565b509392505050565b5f82601f83011262001048576200104762000eef565b5b81516200105a84826020860162000fe7565b91505092915050565b5f819050919050565b620010778162001063565b811462001082575f80fd5b50565b5f8151905062001095816200106c565b92915050565b5f60ff82169050919050565b620010b2816200109b565b8114620010bd575f80fd5b50565b5f81519050620010d081620010a7565b92915050565b5f805f805f805f60e0888a031215620010f457620010f362000ee7565b5b5f88015167ffffffffffffffff81111562001114576200111362000eeb565b5b620011228a828b0162001031565b975050602088015167ffffffffffffffff81111562001146576200114562000eeb565b5b620011548a828b0162001031565b9650506040620011678a828b0162001085565b95505060606200117a8a828b01620010c0565b94505060806200118d8a828b01620010c0565b93505060a0620011a08a828b01620010c0565b92505060c0620011b38a828b01620010c0565b91505092959891949750929550565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200121157607f821691505b602082108103620012275762001226620011cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200128b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200124e565b6200129786836200124e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620012d8620012d2620012cc8462001063565b620012af565b62001063565b9050919050565b5f819050919050565b620012f383620012b8565b6200130b6200130282620012df565b8484546200125a565b825550505050565b5f90565b6200132162001313565b6200132e818484620012e8565b505050565b5b818110156200135557620013495f8262001317565b60018101905062001334565b5050565b601f821115620013a4576200136e816200122d565b62001379846200123f565b8101602085101562001389578190505b620013a162001398856200123f565b83018262001333565b50505b505050565b5f82821c905092915050565b5f620013c65f1984600802620013a9565b1980831691505092915050565b5f620013e08383620013b5565b9150826002028217905092915050565b620013fb82620011c2565b67ffffffffffffffff81111562001417576200141662000f07565b5b620014238254620011f9565b6200143082828562001359565b5f60209050601f83116001811462001466575f841562001451578287015190505b6200145d8582620013d3565b865550620014cc565b601f19841662001476866200122d565b5f5b828110156200149f5784890151825560018201915060208501945060208101905062001478565b86831015620014bf5784890151620014bb601f891682620013b5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200150d8262001063565b91506200151a8362001063565b92508282026200152a8162001063565b91508282048414831517620015445762001543620014d4565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001576826200154b565b9050919050565b62001588816200156a565b811462001593575f80fd5b50565b5f81519050620015a6816200157d565b92915050565b5f60208284031215620015c457620015c362000ee7565b5b5f620015d38482850162001596565b91505092915050565b620015e7816200156a565b82525050565b5f604082019050620016025f830185620015dc565b620016116020830184620015dc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f620016b160248362001645565b9150620016be8262001655565b604082019050919050565b5f6020820190508181035f830152620016e281620016a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200174560228362001645565b91506200175282620016e9565b604082019050919050565b5f6020820190508181035f830152620017768162001737565b9050919050565b620017888162001063565b82525050565b5f602082019050620017a35f8301846200177d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620017df601f8362001645565b9150620017ec82620017a9565b602082019050919050565b5f6020820190508181035f8301526200181081620017d1565b9050919050565b5f620018238262001063565b9150620018308362001063565b92508282019050808211156200184b576200184a620014d4565b5b92915050565b60805160a05161329a620018855f395f818161088301528181611bdf015281816121c7015261222f01525f505061329a5ff3fe6080604052600436106101db575f3560e01c80638448660411610101578063bedafd0111610094578063dd62ed3e11610063578063dd62ed3e1461069c578063e96fada2146106d8578063f2fde38b14610702578063ffb54a991461072a576101e2565b8063bedafd011461060c578063c647b20e14610634578063c9567bf91461065c578063cc1776d314610672576101e2565b8063a457c2d7116100d0578063a457c2d714610540578063a9059cbb1461057c578063b2bdfa7b146105b8578063bbde77c1146105e2576101e2565b8063844866041461049a5780638c0b5e22146104c25780638da5cb5b146104ec57806395d89b4114610516576101e2565b806349bd5a5e1161017957806370a082311161014857806370a08231146103e4578063715018a61461042057806377b54bad14610436578063796431d014610472576101e2565b806349bd5a5e146103405780634ab7cb581461036a5780634f7041a5146103925780635d098b38146103bc576101e2565b806318160ddd116101b557806318160ddd1461027457806323b872dd1461029e578063313ce567146102da5780633950935114610304576101e2565b80630445b667146101e457806306fdde031461020e578063095ea7b314610238576101e2565b366101e257005b005b3480156101ef575f80fd5b506101f8610754565b6040516102059190612524565b60405180910390f35b348015610219575f80fd5b5061022261075a565b60405161022f91906125c7565b60405180910390f35b348015610243575f80fd5b5061025e6004803603810190610259919061266f565b6107ea565b60405161026b91906126c7565b60405180910390f35b34801561027f575f80fd5b5061028861080c565b6040516102959190612524565b60405180910390f35b3480156102a9575f80fd5b506102c460048036038101906102bf91906126e0565b610815565b6040516102d191906126c7565b60405180910390f35b3480156102e5575f80fd5b506102ee610843565b6040516102fb919061274b565b60405180910390f35b34801561030f575f80fd5b5061032a6004803603810190610325919061266f565b61084b565b60405161033791906126c7565b60405180910390f35b34801561034b575f80fd5b50610354610881565b6040516103619190612773565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b919061278c565b6108a5565b005b34801561039d575f80fd5b506103a66109f7565b6040516103b39190612524565b60405180910390f35b3480156103c7575f80fd5b506103e260048036038101906103dd91906127ca565b6109fd565b005b3480156103ef575f80fd5b5061040a600480360381019061040591906127ca565b610ad5565b6040516104179190612524565b60405180910390f35b34801561042b575f80fd5b50610434610b1b565b005b348015610441575f80fd5b5061045c6004803603810190610457919061266f565b610c69565b60405161046991906126c7565b60405180910390f35b34801561047d575f80fd5b50610498600480360381019061049391906127f5565b610e9a565b005b3480156104a5575f80fd5b506104c060048036038101906104bb919061284a565b610fc4565b005b3480156104cd575f80fd5b506104d66110b0565b6040516104e39190612524565b60405180910390f35b3480156104f7575f80fd5b506105006110b6565b60405161050d9190612773565b60405180910390f35b348015610521575f80fd5b5061052a6110dd565b60405161053791906125c7565b60405180910390f35b34801561054b575f80fd5b506105666004803603810190610561919061266f565b61116d565b60405161057391906126c7565b60405180910390f35b348015610587575f80fd5b506105a2600480360381019061059d919061266f565b6111e2565b6040516105af91906126c7565b60405180910390f35b3480156105c3575f80fd5b506105cc611204565b6040516105d99190612773565b60405180910390f35b3480156105ed575f80fd5b506105f6611227565b6040516106039190612524565b60405180910390f35b348015610617575f80fd5b50610632600480360381019061062d919061284a565b61122d565b005b34801561063f575f80fd5b5061065a6004803603810190610655919061278c565b611319565b005b348015610667575f80fd5b50610670611437565b005b34801561067d575f80fd5b506106866114e7565b6040516106939190612524565b60405180910390f35b3480156106a7575f80fd5b506106c260048036038101906106bd9190612888565b6114ed565b6040516106cf9190612524565b60405180910390f35b3480156106e3575f80fd5b506106ec61156f565b6040516106f99190612773565b60405180910390f35b34801561070d575f80fd5b50610728600480360381019061072391906127ca565b611595565b005b348015610735575f80fd5b5061073e611752565b60405161074b91906126c7565b60405180910390f35b600d5481565b606060058054610769906128f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906128f3565b80156107e05780601f106107b7576101008083540402835291602001916107e0565b820191905f5260205f20905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b5f806107f4611764565b905061080181858561176b565b600191505092915050565b5f600454905090565b5f8061081f611764565b905061082c85828561192e565b6108378585856119b9565b60019150509392505050565b5f6012905090565b5f80610855611764565b905061087681858561086785896114ed565b6108719190612950565b61176b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6108ad611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906129cd565b60405180910390fd5b5f8214806109475750606482115b1561097e576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81148061098c5750606481115b156109c3576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6109cc61080c565b90506109da81846064611adb565b600a819055506109ec81836064611adb565b600981905550505050565b600f5481565b610a05611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906129cd565b60405180910390fd5b80600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b23611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba6906129cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccf576040517f34131c8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8203610df4578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d0f9190612773565b602060405180830381865afa158015610d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4e91906129ff565b91508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610dad929190612a2a565b6020604051808303815f875af1158015610dc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ded9190612a65565b9050610e94565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610e51929190612a2a565b6020604051808303815f875af1158015610e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e919190612a65565b90505b92915050565b610ea2611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906129cd565b60405180910390fd5b5f610f3761080c565b90505f670de0b6b3a764000083610f4e9190612a90565b90506103e882610f5e9190612afe565b8110158015610f795750601482610f759190612afe565b8111155b610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90612b9e565b60405180910390fd5b80600d81905550505050565b610fcc611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906129cd565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546110ec906128f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611118906128f3565b80156111635780601f1061113a57610100808354040283529160200191611163565b820191905f5260205f20905b81548152906001019060200180831161114657829003601f168201915b5050505050905090565b5f80611177611764565b90505f61118482866114ed565b9050838110156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090612c2c565b60405180910390fd5b6111d6828686840361176b565b60019250505092915050565b5f806111ec611764565b90506111f98185856119b9565b600191505092915050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611235611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906129cd565b60405180910390fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611321611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906129cd565b60405180910390fd5b6064600e54106113e9576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600f5410611425576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e8190555081600f819055505050565b61143f611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c2906129cd565b60405180910390fd5b600160085f6101000a81548160ff021916908315150217905550565b600e5481565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61159d611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611620906129cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612cba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612d48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90612dd6565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119219190612524565b60405180910390a3505050565b5f61193984846114ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119b357818110156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612e3e565b60405180910390fd5b6119b2848484840361176b565b5b50505050565b6119c1611bdc565b156119cf576119ce611c61565b5b600860019054906101000a900460ff16156119f4576119ef838383611f55565b611ad6565b5f600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a905750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611aa457611a9f8484846121c4565b611aa6565b5f5b90505f8114611ac957611aba843083611f55565b8082611ac69190612e5c565b91505b611ad4848484611f55565b505b505050565b5f805f80198587098587029250828110838203039150505f8103611b1357838281611b0957611b08612ad1565b5b0492505050611bd5565b808411611b4c576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8486880990508281118203915080830392505f60018619018616905080860495508084049350600181825f0304019050808302841793505f600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611c465750600860019054906101000a900460ff16155b8015611c5c5750600d54611c5930610ad5565b10155b905090565b6001600860016101000a81548160ff021916908315150217905550611c846122a0565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f600267ffffffffffffffff811115611cb857611cb7612e8f565b5b604051908082528060200260200182016040528015611ce65781602001602082028036833780820191505090505b50905030815f81518110611cfd57611cfc612ebc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da49190612efd565b81600181518110611db857611db7612ebc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663791ac947611e1730610ad5565b5f8430426040518663ffffffff1660e01b8152600401611e3b959493929190613021565b5f604051808303815f87803b158015611e52575f80fd5b505af1158015611e64573d5f803e3d5ffd5b505050505f4790505f600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611eb3906130a6565b5f6040518083038185875af1925050503d805f8114611eed576040519150601f19603f3d011682016040523d82523d5f602084013e611ef2565b606091505b5050905080611f2d576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050611f396122e6565b5f600860016101000a81548160ff021916908315150217905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba9061312a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906131b8565b60405180910390fd5b61203c8383836122f0565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613246565b60405180910390fd5b81810360025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121ab9190612524565b60405180910390a36121be848484612507565b50505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361222d5761222682600e546064611adb565b9050612299565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122955761228e82600f546064611adb565b9050612299565b5f90505b9392505050565b6002600754036122dc576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600781905550565b6001600781905550565b60085f9054906101000a900460ff166123d957600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156123a15750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123d8576040517fe2c865df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661247757600a548161243484610ad5565b61243e9190612950565b1115612476576040517f24691f6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661250257600954811115612501576040517f973ec46f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b5f819050919050565b61251e8161250c565b82525050565b5f6020820190506125375f830184612515565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612574578082015181840152602081019050612559565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125998261253d565b6125a38185612547565b93506125b3818560208601612557565b6125bc8161257f565b840191505092915050565b5f6020820190508181035f8301526125df818461258f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612614826125eb565b9050919050565b6126248161260a565b811461262e575f80fd5b50565b5f8135905061263f8161261b565b92915050565b61264e8161250c565b8114612658575f80fd5b50565b5f8135905061266981612645565b92915050565b5f8060408385031215612685576126846125e7565b5b5f61269285828601612631565b92505060206126a38582860161265b565b9150509250929050565b5f8115159050919050565b6126c1816126ad565b82525050565b5f6020820190506126da5f8301846126b8565b92915050565b5f805f606084860312156126f7576126f66125e7565b5b5f61270486828701612631565b935050602061271586828701612631565b92505060406127268682870161265b565b9150509250925092565b5f60ff82169050919050565b61274581612730565b82525050565b5f60208201905061275e5f83018461273c565b92915050565b61276d8161260a565b82525050565b5f6020820190506127865f830184612764565b92915050565b5f80604083850312156127a2576127a16125e7565b5b5f6127af8582860161265b565b92505060206127c08582860161265b565b9150509250929050565b5f602082840312156127df576127de6125e7565b5b5f6127ec84828501612631565b91505092915050565b5f6020828403121561280a576128096125e7565b5b5f6128178482850161265b565b91505092915050565b612829816126ad565b8114612833575f80fd5b50565b5f8135905061284481612820565b92915050565b5f80604083850312156128605761285f6125e7565b5b5f61286d85828601612631565b925050602061287e85828601612836565b9150509250929050565b5f806040838503121561289e5761289d6125e7565b5b5f6128ab85828601612631565b92505060206128bc85828601612631565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061290a57607f821691505b60208210810361291d5761291c6128c6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61295a8261250c565b91506129658361250c565b925082820190508082111561297d5761297c612923565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6129b7602083612547565b91506129c282612983565b602082019050919050565b5f6020820190508181035f8301526129e4816129ab565b9050919050565b5f815190506129f981612645565b92915050565b5f60208284031215612a1457612a136125e7565b5b5f612a21848285016129eb565b91505092915050565b5f604082019050612a3d5f830185612764565b612a4a6020830184612515565b9392505050565b5f81519050612a5f81612820565b92915050565b5f60208284031215612a7a57612a796125e7565b5b5f612a8784828501612a51565b91505092915050565b5f612a9a8261250c565b9150612aa58361250c565b9250828202612ab38161250c565b91508282048414831517612aca57612ac9612923565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b088261250c565b9150612b138361250c565b925082612b2357612b22612ad1565b5b828204905092915050565b7f54686520616d6f756e742073686f756c64206265206265747765656e20302e315f8201527f2520616e64203525206f6620746f74616c20737570706c790000000000000000602082015250565b5f612b88603883612547565b9150612b9382612b2e565b604082019050919050565b5f6020820190508181035f830152612bb581612b7c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612c16602583612547565b9150612c2182612bbc565b604082019050919050565b5f6020820190508181035f830152612c4381612c0a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ca4602683612547565b9150612caf82612c4a565b604082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612d32602483612547565b9150612d3d82612cd8565b604082019050919050565b5f6020820190508181035f830152612d5f81612d26565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612dc0602283612547565b9150612dcb82612d66565b604082019050919050565b5f6020820190508181035f830152612ded81612db4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612e28601d83612547565b9150612e3382612df4565b602082019050919050565b5f6020820190508181035f830152612e5581612e1c565b9050919050565b5f612e668261250c565b9150612e718361250c565b9250828203905081811115612e8957612e88612923565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612ef78161261b565b92915050565b5f60208284031215612f1257612f116125e7565b5b5f612f1f84828501612ee9565b91505092915050565b5f819050919050565b5f819050919050565b5f612f54612f4f612f4a84612f28565b612f31565b61250c565b9050919050565b612f6481612f3a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612f9c8161260a565b82525050565b5f612fad8383612f93565b60208301905092915050565b5f602082019050919050565b5f612fcf82612f6a565b612fd98185612f74565b9350612fe483612f84565b805f5b83811015613014578151612ffb8882612fa2565b975061300683612fb9565b925050600181019050612fe7565b5085935050505092915050565b5f60a0820190506130345f830188612515565b6130416020830187612f5b565b81810360408301526130538186612fc5565b90506130626060830185612764565b61306f6080830184612515565b9695505050505050565b5f81905092915050565b50565b5f6130915f83613079565b915061309c82613083565b5f82019050919050565b5f6130b082613086565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613114602583612547565b915061311f826130ba565b604082019050919050565b5f6020820190508181035f83015261314181613108565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6131a2602383612547565b91506131ad82613148565b604082019050919050565b5f6020820190508181035f8301526131cf81613196565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613230602683612547565b915061323b826131d6565b604082019050919050565b5f6020820190508181035f83015261325d81613224565b905091905056fea264697066735822122096d2a25a733828a1f5e257e3c412ab22148f5a70bea21193e2666e312e3df0eb64736f6c6343000816003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000c53656e74696d656e742041490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653454e5441490000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101db575f3560e01c80638448660411610101578063bedafd0111610094578063dd62ed3e11610063578063dd62ed3e1461069c578063e96fada2146106d8578063f2fde38b14610702578063ffb54a991461072a576101e2565b8063bedafd011461060c578063c647b20e14610634578063c9567bf91461065c578063cc1776d314610672576101e2565b8063a457c2d7116100d0578063a457c2d714610540578063a9059cbb1461057c578063b2bdfa7b146105b8578063bbde77c1146105e2576101e2565b8063844866041461049a5780638c0b5e22146104c25780638da5cb5b146104ec57806395d89b4114610516576101e2565b806349bd5a5e1161017957806370a082311161014857806370a08231146103e4578063715018a61461042057806377b54bad14610436578063796431d014610472576101e2565b806349bd5a5e146103405780634ab7cb581461036a5780634f7041a5146103925780635d098b38146103bc576101e2565b806318160ddd116101b557806318160ddd1461027457806323b872dd1461029e578063313ce567146102da5780633950935114610304576101e2565b80630445b667146101e457806306fdde031461020e578063095ea7b314610238576101e2565b366101e257005b005b3480156101ef575f80fd5b506101f8610754565b6040516102059190612524565b60405180910390f35b348015610219575f80fd5b5061022261075a565b60405161022f91906125c7565b60405180910390f35b348015610243575f80fd5b5061025e6004803603810190610259919061266f565b6107ea565b60405161026b91906126c7565b60405180910390f35b34801561027f575f80fd5b5061028861080c565b6040516102959190612524565b60405180910390f35b3480156102a9575f80fd5b506102c460048036038101906102bf91906126e0565b610815565b6040516102d191906126c7565b60405180910390f35b3480156102e5575f80fd5b506102ee610843565b6040516102fb919061274b565b60405180910390f35b34801561030f575f80fd5b5061032a6004803603810190610325919061266f565b61084b565b60405161033791906126c7565b60405180910390f35b34801561034b575f80fd5b50610354610881565b6040516103619190612773565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b919061278c565b6108a5565b005b34801561039d575f80fd5b506103a66109f7565b6040516103b39190612524565b60405180910390f35b3480156103c7575f80fd5b506103e260048036038101906103dd91906127ca565b6109fd565b005b3480156103ef575f80fd5b5061040a600480360381019061040591906127ca565b610ad5565b6040516104179190612524565b60405180910390f35b34801561042b575f80fd5b50610434610b1b565b005b348015610441575f80fd5b5061045c6004803603810190610457919061266f565b610c69565b60405161046991906126c7565b60405180910390f35b34801561047d575f80fd5b50610498600480360381019061049391906127f5565b610e9a565b005b3480156104a5575f80fd5b506104c060048036038101906104bb919061284a565b610fc4565b005b3480156104cd575f80fd5b506104d66110b0565b6040516104e39190612524565b60405180910390f35b3480156104f7575f80fd5b506105006110b6565b60405161050d9190612773565b60405180910390f35b348015610521575f80fd5b5061052a6110dd565b60405161053791906125c7565b60405180910390f35b34801561054b575f80fd5b506105666004803603810190610561919061266f565b61116d565b60405161057391906126c7565b60405180910390f35b348015610587575f80fd5b506105a2600480360381019061059d919061266f565b6111e2565b6040516105af91906126c7565b60405180910390f35b3480156105c3575f80fd5b506105cc611204565b6040516105d99190612773565b60405180910390f35b3480156105ed575f80fd5b506105f6611227565b6040516106039190612524565b60405180910390f35b348015610617575f80fd5b50610632600480360381019061062d919061284a565b61122d565b005b34801561063f575f80fd5b5061065a6004803603810190610655919061278c565b611319565b005b348015610667575f80fd5b50610670611437565b005b34801561067d575f80fd5b506106866114e7565b6040516106939190612524565b60405180910390f35b3480156106a7575f80fd5b506106c260048036038101906106bd9190612888565b6114ed565b6040516106cf9190612524565b60405180910390f35b3480156106e3575f80fd5b506106ec61156f565b6040516106f99190612773565b60405180910390f35b34801561070d575f80fd5b50610728600480360381019061072391906127ca565b611595565b005b348015610735575f80fd5b5061073e611752565b60405161074b91906126c7565b60405180910390f35b600d5481565b606060058054610769906128f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906128f3565b80156107e05780601f106107b7576101008083540402835291602001916107e0565b820191905f5260205f20905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b5f806107f4611764565b905061080181858561176b565b600191505092915050565b5f600454905090565b5f8061081f611764565b905061082c85828561192e565b6108378585856119b9565b60019150509392505050565b5f6012905090565b5f80610855611764565b905061087681858561086785896114ed565b6108719190612950565b61176b565b600191505092915050565b7f000000000000000000000000b5d0ebfb514591b9ef730e158bffd725904e31c081565b6108ad611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906129cd565b60405180910390fd5b5f8214806109475750606482115b1561097e576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81148061098c5750606481115b156109c3576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6109cc61080c565b90506109da81846064611adb565b600a819055506109ec81836064611adb565b600981905550505050565b600f5481565b610a05611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906129cd565b60405180910390fd5b80600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b23611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba6906129cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccf576040517f34131c8500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8203610df4578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d0f9190612773565b602060405180830381865afa158015610d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4e91906129ff565b91508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610dad929190612a2a565b6020604051808303815f875af1158015610dc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ded9190612a65565b9050610e94565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610e51929190612a2a565b6020604051808303815f875af1158015610e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e919190612a65565b90505b92915050565b610ea2611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906129cd565b60405180910390fd5b5f610f3761080c565b90505f670de0b6b3a764000083610f4e9190612a90565b90506103e882610f5e9190612afe565b8110158015610f795750601482610f759190612afe565b8111155b610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90612b9e565b60405180910390fd5b80600d81905550505050565b610fcc611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906129cd565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546110ec906128f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611118906128f3565b80156111635780601f1061113a57610100808354040283529160200191611163565b820191905f5260205f20905b81548152906001019060200180831161114657829003601f168201915b5050505050905090565b5f80611177611764565b90505f61118482866114ed565b9050838110156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090612c2c565b60405180910390fd5b6111d6828686840361176b565b60019250505092915050565b5f806111ec611764565b90506111f98185856119b9565b600191505092915050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611235611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906129cd565b60405180910390fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611321611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906129cd565b60405180910390fd5b6064600e54106113e9576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600f5410611425576040517fd58822aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e8190555081600f819055505050565b61143f611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c2906129cd565b60405180910390fd5b600160085f6101000a81548160ff021916908315150217905550565b600e5481565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61159d611764565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611620906129cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612cba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612d48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90612dd6565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119219190612524565b60405180910390a3505050565b5f61193984846114ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119b357818110156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612e3e565b60405180910390fd5b6119b2848484840361176b565b5b50505050565b6119c1611bdc565b156119cf576119ce611c61565b5b600860019054906101000a900460ff16156119f4576119ef838383611f55565b611ad6565b5f600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a905750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611aa457611a9f8484846121c4565b611aa6565b5f5b90505f8114611ac957611aba843083611f55565b8082611ac69190612e5c565b91505b611ad4848484611f55565b505b505050565b5f805f80198587098587029250828110838203039150505f8103611b1357838281611b0957611b08612ad1565b5b0492505050611bd5565b808411611b4c576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8486880990508281118203915080830392505f60018619018616905080860495508084049350600181825f0304019050808302841793505f600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b5f7f000000000000000000000000b5d0ebfb514591b9ef730e158bffd725904e31c073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611c465750600860019054906101000a900460ff16155b8015611c5c5750600d54611c5930610ad5565b10155b905090565b6001600860016101000a81548160ff021916908315150217905550611c846122a0565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f600267ffffffffffffffff811115611cb857611cb7612e8f565b5b604051908082528060200260200182016040528015611ce65781602001602082028036833780820191505090505b50905030815f81518110611cfd57611cfc612ebc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da49190612efd565b81600181518110611db857611db7612ebc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663791ac947611e1730610ad5565b5f8430426040518663ffffffff1660e01b8152600401611e3b959493929190613021565b5f604051808303815f87803b158015611e52575f80fd5b505af1158015611e64573d5f803e3d5ffd5b505050505f4790505f600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611eb3906130a6565b5f6040518083038185875af1925050503d805f8114611eed576040519150601f19603f3d011682016040523d82523d5f602084013e611ef2565b606091505b5050905080611f2d576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050611f396122e6565b5f600860016101000a81548160ff021916908315150217905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba9061312a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906131b8565b60405180910390fd5b61203c8383836122f0565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613246565b60405180910390fd5b81810360025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121ab9190612524565b60405180910390a36121be848484612507565b50505050565b5f7f000000000000000000000000b5d0ebfb514591b9ef730e158bffd725904e31c073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361222d5761222682600e546064611adb565b9050612299565b7f000000000000000000000000b5d0ebfb514591b9ef730e158bffd725904e31c073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122955761228e82600f546064611adb565b9050612299565b5f90505b9392505050565b6002600754036122dc576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600781905550565b6001600781905550565b60085f9054906101000a900460ff166123d957600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156123a15750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123d8576040517fe2c865df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661247757600a548161243484610ad5565b61243e9190612950565b1115612476576040517f24691f6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661250257600954811115612501576040517f973ec46f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b5f819050919050565b61251e8161250c565b82525050565b5f6020820190506125375f830184612515565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612574578082015181840152602081019050612559565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125998261253d565b6125a38185612547565b93506125b3818560208601612557565b6125bc8161257f565b840191505092915050565b5f6020820190508181035f8301526125df818461258f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612614826125eb565b9050919050565b6126248161260a565b811461262e575f80fd5b50565b5f8135905061263f8161261b565b92915050565b61264e8161250c565b8114612658575f80fd5b50565b5f8135905061266981612645565b92915050565b5f8060408385031215612685576126846125e7565b5b5f61269285828601612631565b92505060206126a38582860161265b565b9150509250929050565b5f8115159050919050565b6126c1816126ad565b82525050565b5f6020820190506126da5f8301846126b8565b92915050565b5f805f606084860312156126f7576126f66125e7565b5b5f61270486828701612631565b935050602061271586828701612631565b92505060406127268682870161265b565b9150509250925092565b5f60ff82169050919050565b61274581612730565b82525050565b5f60208201905061275e5f83018461273c565b92915050565b61276d8161260a565b82525050565b5f6020820190506127865f830184612764565b92915050565b5f80604083850312156127a2576127a16125e7565b5b5f6127af8582860161265b565b92505060206127c08582860161265b565b9150509250929050565b5f602082840312156127df576127de6125e7565b5b5f6127ec84828501612631565b91505092915050565b5f6020828403121561280a576128096125e7565b5b5f6128178482850161265b565b91505092915050565b612829816126ad565b8114612833575f80fd5b50565b5f8135905061284481612820565b92915050565b5f80604083850312156128605761285f6125e7565b5b5f61286d85828601612631565b925050602061287e85828601612836565b9150509250929050565b5f806040838503121561289e5761289d6125e7565b5b5f6128ab85828601612631565b92505060206128bc85828601612631565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061290a57607f821691505b60208210810361291d5761291c6128c6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61295a8261250c565b91506129658361250c565b925082820190508082111561297d5761297c612923565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6129b7602083612547565b91506129c282612983565b602082019050919050565b5f6020820190508181035f8301526129e4816129ab565b9050919050565b5f815190506129f981612645565b92915050565b5f60208284031215612a1457612a136125e7565b5b5f612a21848285016129eb565b91505092915050565b5f604082019050612a3d5f830185612764565b612a4a6020830184612515565b9392505050565b5f81519050612a5f81612820565b92915050565b5f60208284031215612a7a57612a796125e7565b5b5f612a8784828501612a51565b91505092915050565b5f612a9a8261250c565b9150612aa58361250c565b9250828202612ab38161250c565b91508282048414831517612aca57612ac9612923565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b088261250c565b9150612b138361250c565b925082612b2357612b22612ad1565b5b828204905092915050565b7f54686520616d6f756e742073686f756c64206265206265747765656e20302e315f8201527f2520616e64203525206f6620746f74616c20737570706c790000000000000000602082015250565b5f612b88603883612547565b9150612b9382612b2e565b604082019050919050565b5f6020820190508181035f830152612bb581612b7c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612c16602583612547565b9150612c2182612bbc565b604082019050919050565b5f6020820190508181035f830152612c4381612c0a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ca4602683612547565b9150612caf82612c4a565b604082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612d32602483612547565b9150612d3d82612cd8565b604082019050919050565b5f6020820190508181035f830152612d5f81612d26565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612dc0602283612547565b9150612dcb82612d66565b604082019050919050565b5f6020820190508181035f830152612ded81612db4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612e28601d83612547565b9150612e3382612df4565b602082019050919050565b5f6020820190508181035f830152612e5581612e1c565b9050919050565b5f612e668261250c565b9150612e718361250c565b9250828203905081811115612e8957612e88612923565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612ef78161261b565b92915050565b5f60208284031215612f1257612f116125e7565b5b5f612f1f84828501612ee9565b91505092915050565b5f819050919050565b5f819050919050565b5f612f54612f4f612f4a84612f28565b612f31565b61250c565b9050919050565b612f6481612f3a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612f9c8161260a565b82525050565b5f612fad8383612f93565b60208301905092915050565b5f602082019050919050565b5f612fcf82612f6a565b612fd98185612f74565b9350612fe483612f84565b805f5b83811015613014578151612ffb8882612fa2565b975061300683612fb9565b925050600181019050612fe7565b5085935050505092915050565b5f60a0820190506130345f830188612515565b6130416020830187612f5b565b81810360408301526130538186612fc5565b90506130626060830185612764565b61306f6080830184612515565b9695505050505050565b5f81905092915050565b50565b5f6130915f83613079565b915061309c82613083565b5f82019050919050565b5f6130b082613086565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613114602583612547565b915061311f826130ba565b604082019050919050565b5f6020820190508181035f83015261314181613108565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6131a2602383612547565b91506131ad82613148565b604082019050919050565b5f6020820190508181035f8301526131cf81613196565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613230602683612547565b915061323b826131d6565b604082019050919050565b5f6020820190508181035f83015261325d81613224565b905091905056fea264697066735822122096d2a25a733828a1f5e257e3c412ab22148f5a70bea21193e2666e312e3df0eb64736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000c53656e74696d656e742041490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653454e5441490000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Sentiment AI
Arg [1] : _symbol (string): SENTAI
Arg [2] : _tokenSupply (uint256): 10000000
Arg [3] : _maxWalletPercent (uint8): 3
Arg [4] : _maxTxPercent (uint8): 3
Arg [5] : _buyTax (uint8): 5
Arg [6] : _sellTax (uint8): 5
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 53656e74696d656e742041490000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 53454e5441490000000000000000000000000000000000000000000000000000
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.