More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 238 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20890717 | 109 days ago | IN | 0 ETH | 0.00026335 | ||||
Approve | 20890660 | 109 days ago | IN | 0 ETH | 0.00028843 | ||||
Approve | 18047907 | 507 days ago | IN | 0 ETH | 0.00049172 | ||||
Approve | 18034967 | 509 days ago | IN | 0 ETH | 0.00182804 | ||||
Approve | 18032862 | 509 days ago | IN | 0 ETH | 0.00069887 | ||||
Approve | 18030767 | 510 days ago | IN | 0 ETH | 0.00069856 | ||||
Approve | 18030287 | 510 days ago | IN | 0 ETH | 0.00092712 | ||||
Approve | 18030272 | 510 days ago | IN | 0 ETH | 0.00083719 | ||||
Approve | 18030262 | 510 days ago | IN | 0 ETH | 0.0008921 | ||||
Approve | 18030243 | 510 days ago | IN | 0 ETH | 0.00099658 | ||||
Approve | 18030211 | 510 days ago | IN | 0 ETH | 0.00082691 | ||||
Approve | 18030178 | 510 days ago | IN | 0 ETH | 0.0009278 | ||||
Approve | 18030175 | 510 days ago | IN | 0 ETH | 0.00089221 | ||||
Approve | 18030162 | 510 days ago | IN | 0 ETH | 0.00099526 | ||||
Approve | 18030156 | 510 days ago | IN | 0 ETH | 0.00109321 | ||||
Approve | 18030145 | 510 days ago | IN | 0 ETH | 0.00110261 | ||||
Approve | 18030131 | 510 days ago | IN | 0 ETH | 0.00100666 | ||||
Approve | 18030119 | 510 days ago | IN | 0 ETH | 0.00119036 | ||||
Approve | 18030119 | 510 days ago | IN | 0 ETH | 0.00119036 | ||||
Approve | 18030109 | 510 days ago | IN | 0 ETH | 0.00137097 | ||||
Approve | 18030106 | 510 days ago | IN | 0 ETH | 0.00155967 | ||||
Approve | 18030088 | 510 days ago | IN | 0 ETH | 0.00139035 | ||||
Approve | 18030062 | 510 days ago | IN | 0 ETH | 0.00136542 | ||||
Approve | 18030023 | 510 days ago | IN | 0 ETH | 0.0015185 | ||||
Approve | 18030022 | 510 days ago | IN | 0 ETH | 0.00155742 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18047916 | 507 days ago | 0.00078824 ETH | ||||
18047916 | 507 days ago | 0.00078824 ETH | ||||
18030735 | 510 days ago | 0.00101495 ETH | ||||
18030735 | 510 days ago | 0.00101495 ETH | ||||
18030451 | 510 days ago | 0.0012666 ETH | ||||
18030451 | 510 days ago | 0.0012666 ETH | ||||
18030287 | 510 days ago | 0.00139965 ETH | ||||
18030287 | 510 days ago | 0.00139965 ETH | ||||
18030213 | 510 days ago | 0.00224145 ETH | ||||
18030213 | 510 days ago | 0.00224145 ETH | ||||
18030168 | 510 days ago | 0.00230926 ETH | ||||
18030168 | 510 days ago | 0.00230926 ETH | ||||
18030162 | 510 days ago | 0.00256587 ETH | ||||
18030162 | 510 days ago | 0.00256587 ETH | ||||
18030142 | 510 days ago | 0.01535765 ETH | ||||
18030142 | 510 days ago | 0.01535765 ETH | ||||
18030104 | 510 days ago | 0.01461925 ETH | ||||
18030104 | 510 days ago | 0.01461925 ETH | ||||
18030019 | 510 days ago | 0.00128052 ETH | ||||
18030019 | 510 days ago | 0.00128052 ETH | ||||
18029987 | 510 days ago | 0.00158066 ETH | ||||
18029987 | 510 days ago | 0.00158066 ETH | ||||
18029975 | 510 days ago | 0.00169144 ETH | ||||
18029975 | 510 days ago | 0.00169144 ETH | ||||
18029974 | 510 days ago | 0.00169144 ETH |
Loading...
Loading
Contract Name:
SheikhPepe
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-30 */ /** * SPDX-License-Identifier: MIT * https://t.me/SheikhPepeEntry * https://twitter.com/SheikhPepeCoin * https://sheikhpepe.vip/ */ pragma solidity 0.8.20; 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; } } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Indicates a failed `decreaseAllowance` request. */ error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `requestedDecrease`. * * NOTE: Although this function is designed to avoid double spending with {approval}, * it can still be frontrunned, preventing any attempt of allowance reduction. */ function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < requestedDecrease) { revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } unchecked { _approve(owner, spender, currentAllowance - requestedDecrease); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0). * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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 value) internal virtual { _approve(owner, spender, value, true); } /** * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true * using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } 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); } } interface IUniV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SheikhPepe is ERC20, Ownable { using SafeMath for uint256; IUniV2Router public immutable uniV2Router; address public immutable uniV2Pair; // Swapback bool private duringSwapBack; bool public swapForFeesEnabled = false; uint256 public minSwapbackTreshold; uint256 public maxSwapbackLimit; //Anti-whale bool public launchTradingLimitsInPlace = true; bool public sameBlockTxLimitOn = true; uint256 public maxWalletPerAddress; uint256 public maxTokensPerTransfer; mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch // Fee receivers address public feeReceiverWallet1; address public feeReceiverWallet2; bool public isTradingEnabled = false; uint256 public totalFeeForBuys; uint256 public fee1ForBuy; uint256 public fee2ForBuy; uint256 public totalFeeForSells; uint256 public fee1ForSell; uint256 public fee2ForSell; uint256 public tokensForReceiver1; uint256 public tokensForReceiver2; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private feeWhitelisted; mapping(address => bool) public txLimitWhitelisted; // 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 isDexPair; event AddressExcludedFromFees(address indexed account, bool isExcluded); event SetDexPair(address indexed pair, bool indexed value); event feeReceiverWallet1Updated( address indexed newWallet, address indexed oldWallet ); event feeReceiverWallet2Updated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Sheikh Pepe", "SHEIKE") { IUniV2Router _uniV2Router = IUniV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); exemptFromTxLimits(address(_uniV2Router), true); uniV2Router = _uniV2Router; uniV2Pair = IUniV2Factory(_uniV2Router.factory()) .createPair(address(this), _uniV2Router.WETH()); exemptFromTxLimits(address(uniV2Pair), true); SetAsDexPair(address(uniV2Pair), true); uint256 tokenSupply = 1000000000 * 1e18; maxTokensPerTransfer = (tokenSupply * 1) / 100; // 1% of total supply maxWalletPerAddress = (tokenSupply * 1) / 100; // 1% of total supply minSwapbackTreshold = (tokenSupply * 5) / 10000; // 0.05% swapback trigger maxSwapbackLimit = (tokenSupply * 4) / 100; // 4% max swapback fee1ForBuy = 20; fee2ForBuy = 5; totalFeeForBuys = fee1ForBuy + fee2ForBuy; fee1ForSell = 60; fee2ForSell = 15; totalFeeForSells = fee1ForSell + fee2ForSell; feeReceiverWallet1 = address(0xb1cAc71e09163903E0b25525F843fa5DAef3e15A); feeReceiverWallet2 = address(msg.sender); // exclude from paying fees or having max transaction amount exemptFromSwapFees(owner(), true); exemptFromSwapFees(address(this), true); exemptFromSwapFees(address(0xdead), true); exemptFromSwapFees(feeReceiverWallet1, true); exemptFromTxLimits(owner(), true); exemptFromTxLimits(address(this), true); exemptFromTxLimits(address(0xdead), true); exemptFromTxLimits(feeReceiverWallet1, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, tokenSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function habibi() external onlyOwner { isTradingEnabled = true; swapForFeesEnabled = true; } /// @notice Removes the max wallet and max transaction limits function halal() external onlyOwner returns (bool) { launchTradingLimitsInPlace = false; return true; } /// @notice Disables the Same wallet block transfer delay function removeSameBlockRestriction() external onlyOwner returns (bool) { sameBlockTxLimitOn = false; return true; } function changeMinSwapbackTreshold( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (500 * totalSupply()) / 100000, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= maxSwapbackLimit, "Swap amount cannot be higher than maxSwapbackLimit" ); minSwapbackTreshold = newAmount; return true; } function changeMaxSwapbackLimit( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= minSwapbackTreshold, "Swap amount cannot be lower than minSwapbackTreshold" ); maxSwapbackLimit = newAmount; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTokensPerTransfer lower than 0.2%"); maxTokensPerTransfer = (newNum * totalSupply()) / 1000; } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxWalletPerAddress lower than 0.5%"); maxWalletPerAddress = (newNum * totalSupply()) / 1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function exemptFromTxLimits( address updAds, bool isEx ) public onlyOwner { txLimitWhitelisted[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function changeSwapForFeesEnabled(bool enabled) external onlyOwner { swapForFeesEnabled = enabled; } /// @notice Sets the fees for buys /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function changeFeesForBuys( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { fee1ForBuy = _treasuryFee; fee2ForBuy = _projectFee; totalFeeForBuys = fee1ForBuy + fee2ForBuy; require(totalFeeForBuys <= 12, "Must keep fees at 12% or less"); } /// @notice Sets the fees for sells /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function changeFeesForSells( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { fee1ForSell = _treasuryFee; fee2ForSell = _projectFee; totalFeeForSells = fee1ForSell + fee2ForSell; require(totalFeeForSells <= 12, "Must keep fees at 12% or less"); } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function exemptFromSwapFees(address account, bool excluded) public onlyOwner { feeWhitelisted[account] = excluded; emit AddressExcludedFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function changeAddressIsDexPair( address pair, bool value ) public onlyOwner { require( pair != uniV2Pair, "The pair cannot be removed from isDexPair" ); SetAsDexPair(pair, value); } function SetAsDexPair(address pair, bool value) private { isDexPair[pair] = value; emit SetDexPair(pair, value); } /// @notice Sets a wallet as the new fee receiver 1 wallet /// @param newFeeReceiver1 The new fee receiver 1 wallet function changeFeeReceiver1( address newFeeReceiver1 ) external onlyOwner { emit feeReceiverWallet1Updated(newFeeReceiver1, feeReceiverWallet1); feeReceiverWallet1 = newFeeReceiver1; } /// @notice Sets a wallet as the new fee receiver 2 wallet /// @param newFeeReceiver2 The new fee receiver 2 wallet function changeFeeReceiver2(address newFeeReceiver2) external onlyOwner { emit feeReceiverWallet2Updated(newFeeReceiver2, feeReceiverWallet2); feeReceiverWallet2 = newFeeReceiver2; } function isAddressWhitelistedFromFees(address account) public view returns (bool) { return feeWhitelisted[account]; } function _update( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._update(from, to, 0); return; } if (launchTradingLimitsInPlace) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !duringSwapBack ) { if (!isTradingEnabled) { require( feeWhitelisted[from] || feeWhitelisted[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (sameBlockTxLimitOn) { if ( to != owner() && to != address(uniV2Router) && to != address(uniV2Pair) ) { require( lastTransferBlock[tx.origin] < block.number, "_update:: Transfer Delay enabled. Only one purchase per block allowed." ); lastTransferBlock[tx.origin] = block.number; } } //when buy if (isDexPair[from] && !txLimitWhitelisted[to]) { require( amount <= maxTokensPerTransfer, "Buy transfer amount exceeds the maxTokensPerTransfer." ); require( amount + balanceOf(to) <= maxWalletPerAddress, "Max wallet exceeded" ); } //when sell else if ( isDexPair[to] && !txLimitWhitelisted[from] ) { require( amount <= maxTokensPerTransfer, "Sell transfer amount exceeds the maxTokensPerTransfer." ); } else if (!txLimitWhitelisted[to]) { require( amount + balanceOf(to) <= maxWalletPerAddress, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minSwapbackTreshold; if ( canSwap && swapForFeesEnabled && !duringSwapBack && !isDexPair[from] && !feeWhitelisted[from] && !feeWhitelisted[to] ) { duringSwapBack = true; swapTaxesForETH(); duringSwapBack = false; } bool takeFee = !duringSwapBack; // if any account belongs to _isExcludedFromFee account then remove the fee if (feeWhitelisted[from] || feeWhitelisted[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (isDexPair[to] && totalFeeForSells > 0) { fees = amount.mul(totalFeeForSells).div(100); tokensForReceiver2 += (fees * fee2ForSell) / totalFeeForSells; tokensForReceiver1 += (fees * fee1ForSell) / totalFeeForSells; } // on buy else if (isDexPair[from] && totalFeeForBuys > 0) { fees = amount.mul(totalFeeForBuys).div(100); tokensForReceiver2 += (fees * fee2ForBuy) / totalFeeForBuys; tokensForReceiver1 += (fees * fee1ForBuy) / totalFeeForBuys; } if (fees > 0) { super._update(from, address(this), fees); } amount -= fees; } super._update(from, to, amount); } function swapExactTokensForETHOnUniV2Router(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniV2Router.WETH(); _approve(address(this), address(uniV2Router), tokenAmount); // make the swap uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapTaxesForETH() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxSwapbackLimit) { contractBalance = maxSwapbackLimit; } uint256 initialETHBalance = address(this).balance; swapExactTokensForETHOnUniV2Router(contractBalance); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap); tokensForReceiver1 = 0; tokensForReceiver2 = 0; (success, ) = address(feeReceiverWallet2).call{value: ethForProject}(""); (success, ) = address(feeReceiverWallet1).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeReceiverWallet1Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeReceiverWallet2Updated","type":"event"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"changeAddressIsDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver1","type":"address"}],"name":"changeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver2","type":"address"}],"name":"changeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"changeFeesForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"changeFeesForSells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxSwapbackLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"changeSwapForFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee1ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee1ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee2ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee2ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiverWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiverWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"habibi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAddressWhitelistedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDexPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTradingLimitsInPlace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeSameBlockRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sameBlockTxLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeForBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeForSells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff60a01b1916905534801562000039575f80fd5b506040518060400160405280600b81526020016a536865696b68205065706560a81b81525060405180604001604052806006815260200165534845494b4560d01b81525081600390816200008e919062001355565b5060046200009d828262001355565b505050620000ba620000b46200040760201b60201c565b6200040b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000dc8160016200045c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014b91906200141d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000197573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bd91906200141d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000208573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022e91906200141d565b6001600160a01b031660a0819052620002499060016200045c565b60a05162000259906001620004d4565b6b033b2e3c9fd0803ce800000060646200027582600162001460565b6200028191906200147a565b600a5560646200029382600162001460565b6200029f91906200147a565b600955612710620002b282600562001460565b620002be91906200147a565b6006556064620002d082600462001460565b620002dc91906200147a565b6007556014600f81905560056010819055620002f8916200149a565b600e55603c6012819055600f601381905562000314916200149a565b601155600c80546001600160a01b031990811673b1cac71e09163903e0b25525f843fa5daef3e15a17909155600d8054909116331790556200036a620003626005546001600160a01b031690565b600162000527565b6200037730600162000527565b6200038661dead600162000527565b600c546200039f906001600160a01b0316600162000527565b620003be620003b66005546001600160a01b031690565b60016200045c565b620003cb3060016200045c565b620003da61dead60016200045c565b600c54620003f3906001600160a01b031660016200045c565b620003ff3382620005cf565b50506200154b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004aa5760405162461bcd60e51b815260206004820181905260248201525f8051602062003b5783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005715760405162461bcd60e51b815260206004820181905260248201525f8051602062003b578339815191526044820152606401620004a1565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620005fa5760405163ec442f0560e01b81525f6004820152602401620004a1565b620006075f83836200060b565b5050565b805f0362000625576200062083835f62000dca565b505050565b60085460ff161562000ad8576005546001600160a01b038481169116148015906200065e57506005546001600160a01b03838116911614155b80156200067357506001600160a01b03821615155b80156200068b57506001600160a01b03821661dead14155b8015620006a25750600554600160a01b900460ff16155b1562000ad857600d54600160a01b900460ff1662000746576001600160a01b0383165f9081526016602052604090205460ff1680620006f857506001600160a01b0382165f9081526016602052604090205460ff165b620007465760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004a1565b600854610100900460ff161562000858576005546001600160a01b038381169116148015906200078a57506080516001600160a01b0316826001600160a01b031614155b8015620007ab575060a0516001600160a01b0316826001600160a01b031614155b156200085857325f908152600b60205260409020544311620008465760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004a1565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff1680156200089857506001600160a01b0382165f9081526017602052604090205460ff16155b156200098b57600a54811115620009185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178546f6b656e735065725472616e736665722e00000000000000000000006064820152608401620004a1565b6009546001600160a01b0383165f908152602081905260409020546200093f90836200149a565b1115620009855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a1565b62000ad8565b6001600160a01b0382165f9081526018602052604090205460ff168015620009cb57506001600160a01b0383165f9081526017602052604090205460ff16155b1562000a4b57600a54811115620009855760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d6178546f6b656e735065725472616e736665722e000000000000000000006064820152608401620004a1565b6001600160a01b0382165f9081526017602052604090205460ff1662000ad8576009546001600160a01b0383165f9081526020819052604090205462000a9290836200149a565b111562000ad85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a1565b305f908152602081905260409020546006548110801590819062000b055750600554600160a81b900460ff165b801562000b1c5750600554600160a01b900460ff16155b801562000b4157506001600160a01b0385165f9081526018602052604090205460ff16155b801562000b6657506001600160a01b0385165f9081526016602052604090205460ff16155b801562000b8b57506001600160a01b0384165f9081526016602052604090205460ff16155b1562000bbc576005805460ff60a01b1916600160a01b17905562000bae62000ef9565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b90920482161591168062000c0957506001600160a01b0385165f9081526016602052604090205460ff165b1562000c1257505f5b5f811562000db4576001600160a01b0386165f9081526018602052604090205460ff16801562000c4357505f601154115b1562000cdc5760115462000c689060649062000c619088906200103b565b9062001051565b90506011546013548262000c7d919062001460565b62000c8991906200147a565b60155f82825462000c9b91906200149a565b909155505060115460125462000cb2908362001460565b62000cbe91906200147a565b60145f82825462000cd091906200149a565b9091555062000d919050565b6001600160a01b0387165f9081526018602052604090205460ff16801562000d0557505f600e54115b1562000d9157600e5462000d239060649062000c619088906200103b565b9050600e546010548262000d38919062001460565b62000d4491906200147a565b60155f82825462000d5691906200149a565b9091555050600e54600f5462000d6d908362001460565b62000d7991906200147a565b60145f82825462000d8b91906200149a565b90915550505b801562000da55762000da587308362000dca565b62000db18186620014b0565b94505b62000dc187878762000dca565b50505050505050565b6001600160a01b03831662000df8578060025f82825462000dec91906200149a565b9091555062000e6a9050565b6001600160a01b0383165f908152602081905260409020548181101562000e4c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004a1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000e885760028054829003905562000ea6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000eec91815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f60155460145462000f1d91906200149a565b90505f82158062000f2c575081155b1562000f3757505050565b60075483111562000f485760075492505b4762000f54846200105e565b5f62000f614783620011cf565b90505f62000f808562000c61601554856200103b60201b90919060201c565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f811462000fd7576040519150601f19603f3d011682016040523d82523d5f602084013e62000fdc565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f81146200102b576040519150601f19603f3d011682016040523d82523d5f602084013e62001030565b606091505b505050505050505050565b5f62001048828462001460565b90505b92915050565b5f6200104882846200147a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110620010945762001094620014c6565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620010f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200111991906200141d565b816001815181106200112f576200112f620014c6565b60200260200101906001600160a01b031690816001600160a01b031681525050620011643060805184620011dc60201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b81526004016200119c959493929190620014da565b5f604051808303815f87803b158015620011b4575f80fd5b505af1158015620011c7573d5f803e3d5ffd5b505050505050565b5f620010488284620014b0565b6200062083838360016001600160a01b038416620012105760405163e602df0560e01b81525f6004820152602401620004a1565b6001600160a01b0383166200123b57604051634a1406b160e11b81525f6004820152602401620004a1565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620012b857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620012af91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620012e757607f821691505b6020821081036200130657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000620575f81815260208120601f850160051c81016020861015620013345750805b601f850160051c820191505b81811015620011c75782815560010162001340565b81516001600160401b03811115620013715762001371620012be565b6200138981620013828454620012d2565b846200130c565b602080601f831160018114620013bf575f8415620013a75750858301515b5f19600386901b1c1916600185901b178555620011c7565b5f85815260208120601f198616915b82811015620013ef57888601518255948401946001909101908401620013ce565b50858210156200140d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200142e575f80fd5b81516001600160a01b038116811462001445575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200104b576200104b6200144c565b5f826200149557634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200104b576200104b6200144c565b818103818111156200104b576200104b6200144c565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156200152a5784516001600160a01b03168352938301939183019160010162001503565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a0516125c0620015975f395f81816106ab015281816111ba015261182a01525f81816106fb015281816117ec015281816120f8015281816121af01526121eb01526125c05ff3fe6080604052600436106102f6575f3560e01c8063715018a611610189578063c138cea4116100d8578063e09f6b0b11610092578063f2fde38b1161006d578063f2fde38b146108c9578063f66d2e15146108e8578063fdf27e4114610907578063fe2655a01461091c575f80fd5b8063e09f6b0b14610880578063ec7311ab14610895578063eda376c6146108b4575f80fd5b8063c138cea4146107e5578063c72d783e146107fa578063cc7e59ac14610819578063d026ba421461082e578063dd62ed3e14610842578063dfd028f014610861575f80fd5b806395d89b4111610143578063a9059cbb1161011e578063a9059cbb14610765578063aaa1fe4514610784578063b317766a146107b2578063bb27b8b8146107c6575f80fd5b806395d89b411461071d578063a42bff2014610731578063a457c2d714610746575f80fd5b8063715018a6146106525780637600627314610666578063868f4cbc1461067b5780638bcea9391461069a5780638da5cb5b146106cd578063958c2e52146106ea575f80fd5b80633c594ed511610245578063536c7d67116101ff5780635e92fef6116101da5780635e92fef6146105b357806365e00719146105ea5780636886ad3e146105ff57806370a082311461061e575f80fd5b8063536c7d671461055c57806358915a86146105755780635b97752014610594575f80fd5b80633c594ed5146104995780633d56af6b146104ae57806340009927146104c3578063435bb2f9146104f1578063522ef4c71461050557806352a0c53c14610525575f80fd5b806318c39fb3116102b0578063313ce5671161028b578063313ce5671461042b57806335c094a414610446578063383041de1461045b578063395093511461047a575f80fd5b806318c39fb3146103cc57806323b872dd146103ed5780632548dd3e1461040c575f80fd5b8063064a59d01461030157806306fdde0314610336578063095ea7b31461035757806309b0ba5a14610376578063171a65861461039957806318160ddd146103b8575f80fd5b366102fd57005b5f80fd5b34801561030c575f80fd5b50600d5461032190600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b348015610341575f80fd5b5061034a61093a565b60405161032d9190612264565b348015610362575f80fd5b506103216103713660046122c3565b6109ca565b348015610381575f80fd5b5061038b60095481565b60405190815260200161032d565b3480156103a4575f80fd5b506103216103b33660046122ed565b6109e3565b3480156103c3575f80fd5b5060025461038b565b3480156103d7575f80fd5b506103eb6103e6366004612304565b610ba6565b005b3480156103f8575f80fd5b5061032161040736600461231f565b610c2c565b348015610417575f80fd5b506103eb610426366004612304565b610c4f565b348015610436575f80fd5b506040516012815260200161032d565b348015610451575f80fd5b5061038b60145481565b348015610466575f80fd5b506103216104753660046122ed565b610cd5565b348015610485575f80fd5b506103216104943660046122c3565b610d79565b3480156104a4575f80fd5b5061038b60105481565b3480156104b9575f80fd5b5061038b60155481565b3480156104ce575f80fd5b506103216104dd366004612304565b60186020525f908152604090205460ff1681565b3480156104fc575f80fd5b506103eb610d9a565b348015610510575f80fd5b5060055461032190600160a81b900460ff1681565b348015610530575f80fd5b50600d54610544906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b348015610567575f80fd5b506008546103219060ff1681565b348015610580575f80fd5b506103eb61058f3660046122ed565b610dec565b34801561059f575f80fd5b506103eb6105ae36600461235d565b610ea5565b3480156105be575f80fd5b506103216105cd366004612304565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156105f5575f80fd5b5061038b60075481565b34801561060a575f80fd5b506103eb61061936600461238c565b610f3c565b348015610629575f80fd5b5061038b610638366004612304565b6001600160a01b03165f9081526020819052604090205490565b34801561065d575f80fd5b506103eb610f90565b348015610671575f80fd5b5061038b60065481565b348015610686575f80fd5b506103eb61069536600461235d565b610fc5565b3480156106a5575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d8575f80fd5b506005546001600160a01b0316610544565b3480156106f5575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b348015610728575f80fd5b5061034a611058565b34801561073c575f80fd5b5061038b60135481565b348015610751575f80fd5b506103216107603660046122c3565b611067565b348015610770575f80fd5b5061032161077f3660046122c3565b6110bd565b34801561078f575f80fd5b5061032161079e366004612304565b60176020525f908152604090205460ff1681565b3480156107bd575f80fd5b506103216110ca565b3480156107d1575f80fd5b506103eb6107e036600461238c565b611106565b3480156107f0575f80fd5b5061038b60125481565b348015610805575f80fd5b506103eb61081436600461238c565b61118e565b348015610824575f80fd5b5061038b600f5481565b348015610839575f80fd5b50610321611255565b34801561084d575f80fd5b5061038b61085c3660046123bf565b611292565b34801561086c575f80fd5b506103eb61087b3660046122ed565b6112bc565b34801561088b575f80fd5b5061038b60115481565b3480156108a0575f80fd5b50600c54610544906001600160a01b031681565b3480156108bf575f80fd5b5061038b600e5481565b3480156108d4575f80fd5b506103eb6108e3366004612304565b611374565b3480156108f3575f80fd5b506103eb6109023660046123f6565b61140f565b348015610912575f80fd5b5061038b600a5481565b348015610927575f80fd5b5060085461032190610100900460ff1681565b6060600380546109499061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546109759061240f565b80156109c05780601f10610997576101008083540402835291602001916109c0565b820191905f5260205f20905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b5f336109d7818585611457565b60019150505b92915050565b6005545f906001600160a01b03163314610a185760405162461bcd60e51b8152600401610a0f90612447565b60405180910390fd5b620186a0610a2560025490565b610a2f9190612490565b821015610a9c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a0f565b620186a0610aa960025490565b610ab5906101f46124af565b610abf9190612490565b821115610b2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a0f565b600754821115610b985760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610a0f565b50600681905560015b919050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610a0f90612447565b600d546040516001600160a01b03918216918316907f4c735f7a680994fe54ecedae3b22c35421143bb5e6b561532c043b9ab4c2a989905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610c39858285611469565b610c448585856114cc565b506001949350505050565b6005546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a0f90612447565b600c546040516001600160a01b03918216918316907ff6a29a3723f5ef6e6b95ccefa6940cb9225e185e80c83681168ceb24b6345be9905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a0f90612447565b600654821015610d705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b6064820152608401610a0f565b50600755600190565b5f336109d7818585610d8b8383611292565b610d9591906124c6565b611457565b6005546001600160a01b03163314610dc45760405162461bcd60e51b8152600401610a0f90612447565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a0f90612447565b6002811015610e7f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d6178546f6b656e735065725472616e736665722060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a0f565b6103e8610e8b60025490565b610e9590836124af565b610e9f9190612490565b600a5550565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a0f90612447565b600f8290556010819055610ee381836124c6565b600e819055600c1015610f385760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a0f565b5050565b6005546001600160a01b03163314610f665760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610a0f90612447565b610fc35f611529565b565b6005546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610a0f90612447565b6012829055601381905561100381836124c6565b6011819055600c1015610f385760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a0f565b6060600480546109499061240f565b5f33816110748286611292565b9050838110156110b057604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a0f565b610c448286868403611457565b5f336109d78185856114cc565b6005545f906001600160a01b031633146110f65760405162461bcd60e51b8152600401610a0f90612447565b506008805460ff19169055600190565b6005546001600160a01b031633146111305760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610a0f90612447565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361124b5760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a232bc2830b4b960b91b6064820152608401610a0f565b610f38828261157a565b6005545f906001600160a01b031633146112815760405162461bcd60e51b8152600401610a0f90612447565b506008805461ff0019169055600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146112e65760405162461bcd60e51b8152600401610a0f90612447565b600581101561134e5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d617857616c6c657450657241646472657373206c60448201526d6f776572207468616e20302e352560901b6064820152608401610a0f565b6103e861135a60025490565b61136490836124af565b61136e9190612490565b60095550565b6005546001600160a01b0316331461139e5760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0f565b61140c81611529565b50565b6005546001600160a01b031633146114395760405162461bcd60e51b8152600401610a0f90612447565b60058054911515600160a81b0260ff60a81b19909216919091179055565b61146483838360016115cd565b505050565b5f6114748484611292565b90505f1981146114c657818110156114b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b6114c684848484035f6115cd565b50505050565b6001600160a01b0383166114f557604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b03821661151e5760405163ec442f0560e01b81525f6004820152602401610a0f565b61146483838361169f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166115f65760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b03831661161f57604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156114c657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161169191815260200190565b60405180910390a350505050565b805f036116b15761146483835f611e2e565b60085460ff1615611b68576005546001600160a01b038481169116148015906116e857506005546001600160a01b03838116911614155b80156116fc57506001600160a01b03821615155b801561171357506001600160a01b03821661dead14155b80156117295750600554600160a01b900460ff16155b15611b6857600d54600160a01b900460ff166117c1576001600160a01b0383165f9081526016602052604090205460ff168061177c57506001600160a01b0382165f9081526016602052604090205460ff165b6117c15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0f565b600854610100900460ff1615611909576005546001600160a01b0383811691161480159061182157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561185f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561190957325f908152600b602052604090205443116118f75760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a0f565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff16801561194857506001600160a01b0382165f9081526017602052604090205460ff16155b15611a2b57600a548111156119bd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a37b5b2b739a832b92a3930b739b332b91760591b6064820152608401610a0f565b6009546001600160a01b0383165f908152602081905260409020546119e290836124c6565b1115611a265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611b68565b6001600160a01b0382165f9081526018602052604090205460ff168015611a6a57506001600160a01b0383165f9081526017602052604090205460ff16155b15611ae057600a54811115611a265760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a0f565b6001600160a01b0382165f9081526017602052604090205460ff16611b68576009546001600160a01b0383165f90815260208190526040902054611b2490836124c6565b1115611b685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460065481108015908190611b945750600554600160a81b900460ff165b8015611baa5750600554600160a01b900460ff16155b8015611bce57506001600160a01b0385165f9081526018602052604090205460ff16155b8015611bf257506001600160a01b0385165f9081526016602052604090205460ff16155b8015611c1657506001600160a01b0384165f9081526016602052604090205460ff16155b15611c44576005805460ff60a01b1916600160a01b179055611c36611f54565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b909204821615911680611c9057506001600160a01b0385165f9081526016602052604090205460ff165b15611c9857505f5b5f8115611e1a576001600160a01b0386165f9081526018602052604090205460ff168015611cc757505f601154115b15611d5357611cec6064611ce66011548861208690919063ffffffff16565b90612098565b905060115460135482611cff91906124af565b611d099190612490565b60155f828254611d1991906124c6565b9091555050601154601254611d2e90836124af565b611d389190612490565b60145f828254611d4891906124c6565b90915550611dfc9050565b6001600160a01b0387165f9081526018602052604090205460ff168015611d7b57505f600e54115b15611dfc57611d9a6064611ce6600e548861208690919063ffffffff16565b9050600e5460105482611dad91906124af565b611db79190612490565b60155f828254611dc791906124c6565b9091555050600e54600f54611ddc90836124af565b611de69190612490565b60145f828254611df691906124c6565b90915550505b8015611e0d57611e0d873083611e2e565b611e1781866124d9565b94505b611e25878787611e2e565b50505050505050565b6001600160a01b038316611e58578060025f828254611e4d91906124c6565b90915550611ec89050565b6001600160a01b0383165f9081526020819052604090205481811015611eaa5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611ee457600280548290039055611f02565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f4791815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f601554601454611f7691906124c6565b90505f821580611f84575081155b15611f8e57505050565b600754831115611f9e5760075492505b47611fa8846120a3565b5f611fb34783612259565b90505f611fcf85611ce66015548561208690919063ffffffff16565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f8114612024576040519150601f19603f3d011682016040523d82523d5f602084013e612029565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f8114612076576040519150601f19603f3d011682016040523d82523d5f602084013e61207b565b606091505b505050505050505050565b5f61209182846124af565b9392505050565b5f6120918284612490565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106120d6576120d66124ec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121769190612500565b81600181518110612189576121896124ec565b60200260200101906001600160a01b031690816001600160a01b0316815250506121d4307f000000000000000000000000000000000000000000000000000000000000000084611457565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122289085905f9086903090429060040161251b565b5f604051808303815f87803b15801561223f575f80fd5b505af1158015612251573d5f803e3d5ffd5b505050505050565b5f61209182846124d9565b5f6020808352835180828501525f5b8181101561228f57858101830151858201604001528201612273565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461140c575f80fd5b5f80604083850312156122d4575f80fd5b82356122df816122af565b946020939093013593505050565b5f602082840312156122fd575f80fd5b5035919050565b5f60208284031215612314575f80fd5b8135612091816122af565b5f805f60608486031215612331575f80fd5b833561233c816122af565b9250602084013561234c816122af565b929592945050506040919091013590565b5f806040838503121561236e575f80fd5b50508035926020909101359150565b80358015158114610ba1575f80fd5b5f806040838503121561239d575f80fd5b82356123a8816122af565b91506123b66020840161237d565b90509250929050565b5f80604083850312156123d0575f80fd5b82356123db816122af565b915060208301356123eb816122af565b809150509250929050565b5f60208284031215612406575f80fd5b6120918261237d565b600181811c9082168061242357607f821691505b60208210810361244157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f826124aa57634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176109dd576109dd61247c565b808201808211156109dd576109dd61247c565b818103818111156109dd576109dd61247c565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612510575f80fd5b8151612091816122af565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156125695784516001600160a01b031683529383019391830191600101612544565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b167b6cd3263c34e8ec224b9302470246ac5c1e5e369e2bb831a80c6a549362264736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102f6575f3560e01c8063715018a611610189578063c138cea4116100d8578063e09f6b0b11610092578063f2fde38b1161006d578063f2fde38b146108c9578063f66d2e15146108e8578063fdf27e4114610907578063fe2655a01461091c575f80fd5b8063e09f6b0b14610880578063ec7311ab14610895578063eda376c6146108b4575f80fd5b8063c138cea4146107e5578063c72d783e146107fa578063cc7e59ac14610819578063d026ba421461082e578063dd62ed3e14610842578063dfd028f014610861575f80fd5b806395d89b4111610143578063a9059cbb1161011e578063a9059cbb14610765578063aaa1fe4514610784578063b317766a146107b2578063bb27b8b8146107c6575f80fd5b806395d89b411461071d578063a42bff2014610731578063a457c2d714610746575f80fd5b8063715018a6146106525780637600627314610666578063868f4cbc1461067b5780638bcea9391461069a5780638da5cb5b146106cd578063958c2e52146106ea575f80fd5b80633c594ed511610245578063536c7d67116101ff5780635e92fef6116101da5780635e92fef6146105b357806365e00719146105ea5780636886ad3e146105ff57806370a082311461061e575f80fd5b8063536c7d671461055c57806358915a86146105755780635b97752014610594575f80fd5b80633c594ed5146104995780633d56af6b146104ae57806340009927146104c3578063435bb2f9146104f1578063522ef4c71461050557806352a0c53c14610525575f80fd5b806318c39fb3116102b0578063313ce5671161028b578063313ce5671461042b57806335c094a414610446578063383041de1461045b578063395093511461047a575f80fd5b806318c39fb3146103cc57806323b872dd146103ed5780632548dd3e1461040c575f80fd5b8063064a59d01461030157806306fdde0314610336578063095ea7b31461035757806309b0ba5a14610376578063171a65861461039957806318160ddd146103b8575f80fd5b366102fd57005b5f80fd5b34801561030c575f80fd5b50600d5461032190600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b348015610341575f80fd5b5061034a61093a565b60405161032d9190612264565b348015610362575f80fd5b506103216103713660046122c3565b6109ca565b348015610381575f80fd5b5061038b60095481565b60405190815260200161032d565b3480156103a4575f80fd5b506103216103b33660046122ed565b6109e3565b3480156103c3575f80fd5b5060025461038b565b3480156103d7575f80fd5b506103eb6103e6366004612304565b610ba6565b005b3480156103f8575f80fd5b5061032161040736600461231f565b610c2c565b348015610417575f80fd5b506103eb610426366004612304565b610c4f565b348015610436575f80fd5b506040516012815260200161032d565b348015610451575f80fd5b5061038b60145481565b348015610466575f80fd5b506103216104753660046122ed565b610cd5565b348015610485575f80fd5b506103216104943660046122c3565b610d79565b3480156104a4575f80fd5b5061038b60105481565b3480156104b9575f80fd5b5061038b60155481565b3480156104ce575f80fd5b506103216104dd366004612304565b60186020525f908152604090205460ff1681565b3480156104fc575f80fd5b506103eb610d9a565b348015610510575f80fd5b5060055461032190600160a81b900460ff1681565b348015610530575f80fd5b50600d54610544906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b348015610567575f80fd5b506008546103219060ff1681565b348015610580575f80fd5b506103eb61058f3660046122ed565b610dec565b34801561059f575f80fd5b506103eb6105ae36600461235d565b610ea5565b3480156105be575f80fd5b506103216105cd366004612304565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156105f5575f80fd5b5061038b60075481565b34801561060a575f80fd5b506103eb61061936600461238c565b610f3c565b348015610629575f80fd5b5061038b610638366004612304565b6001600160a01b03165f9081526020819052604090205490565b34801561065d575f80fd5b506103eb610f90565b348015610671575f80fd5b5061038b60065481565b348015610686575f80fd5b506103eb61069536600461235d565b610fc5565b3480156106a5575f80fd5b506105447f000000000000000000000000f5e640b16097d7111f8101ef163f16200d8ae08881565b3480156106d8575f80fd5b506005546001600160a01b0316610544565b3480156106f5575f80fd5b506105447f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610728575f80fd5b5061034a611058565b34801561073c575f80fd5b5061038b60135481565b348015610751575f80fd5b506103216107603660046122c3565b611067565b348015610770575f80fd5b5061032161077f3660046122c3565b6110bd565b34801561078f575f80fd5b5061032161079e366004612304565b60176020525f908152604090205460ff1681565b3480156107bd575f80fd5b506103216110ca565b3480156107d1575f80fd5b506103eb6107e036600461238c565b611106565b3480156107f0575f80fd5b5061038b60125481565b348015610805575f80fd5b506103eb61081436600461238c565b61118e565b348015610824575f80fd5b5061038b600f5481565b348015610839575f80fd5b50610321611255565b34801561084d575f80fd5b5061038b61085c3660046123bf565b611292565b34801561086c575f80fd5b506103eb61087b3660046122ed565b6112bc565b34801561088b575f80fd5b5061038b60115481565b3480156108a0575f80fd5b50600c54610544906001600160a01b031681565b3480156108bf575f80fd5b5061038b600e5481565b3480156108d4575f80fd5b506103eb6108e3366004612304565b611374565b3480156108f3575f80fd5b506103eb6109023660046123f6565b61140f565b348015610912575f80fd5b5061038b600a5481565b348015610927575f80fd5b5060085461032190610100900460ff1681565b6060600380546109499061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546109759061240f565b80156109c05780601f10610997576101008083540402835291602001916109c0565b820191905f5260205f20905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b5f336109d7818585611457565b60019150505b92915050565b6005545f906001600160a01b03163314610a185760405162461bcd60e51b8152600401610a0f90612447565b60405180910390fd5b620186a0610a2560025490565b610a2f9190612490565b821015610a9c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a0f565b620186a0610aa960025490565b610ab5906101f46124af565b610abf9190612490565b821115610b2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a0f565b600754821115610b985760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610a0f565b50600681905560015b919050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610a0f90612447565b600d546040516001600160a01b03918216918316907f4c735f7a680994fe54ecedae3b22c35421143bb5e6b561532c043b9ab4c2a989905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610c39858285611469565b610c448585856114cc565b506001949350505050565b6005546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a0f90612447565b600c546040516001600160a01b03918216918316907ff6a29a3723f5ef6e6b95ccefa6940cb9225e185e80c83681168ceb24b6345be9905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a0f90612447565b600654821015610d705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b6064820152608401610a0f565b50600755600190565b5f336109d7818585610d8b8383611292565b610d9591906124c6565b611457565b6005546001600160a01b03163314610dc45760405162461bcd60e51b8152600401610a0f90612447565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a0f90612447565b6002811015610e7f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d6178546f6b656e735065725472616e736665722060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a0f565b6103e8610e8b60025490565b610e9590836124af565b610e9f9190612490565b600a5550565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a0f90612447565b600f8290556010819055610ee381836124c6565b600e819055600c1015610f385760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a0f565b5050565b6005546001600160a01b03163314610f665760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610a0f90612447565b610fc35f611529565b565b6005546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610a0f90612447565b6012829055601381905561100381836124c6565b6011819055600c1015610f385760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a0f565b6060600480546109499061240f565b5f33816110748286611292565b9050838110156110b057604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a0f565b610c448286868403611457565b5f336109d78185856114cc565b6005545f906001600160a01b031633146110f65760405162461bcd60e51b8152600401610a0f90612447565b506008805460ff19169055600190565b6005546001600160a01b031633146111305760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610a0f90612447565b7f000000000000000000000000f5e640b16097d7111f8101ef163f16200d8ae0886001600160a01b0316826001600160a01b03160361124b5760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a232bc2830b4b960b91b6064820152608401610a0f565b610f38828261157a565b6005545f906001600160a01b031633146112815760405162461bcd60e51b8152600401610a0f90612447565b506008805461ff0019169055600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146112e65760405162461bcd60e51b8152600401610a0f90612447565b600581101561134e5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d617857616c6c657450657241646472657373206c60448201526d6f776572207468616e20302e352560901b6064820152608401610a0f565b6103e861135a60025490565b61136490836124af565b61136e9190612490565b60095550565b6005546001600160a01b0316331461139e5760405162461bcd60e51b8152600401610a0f90612447565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0f565b61140c81611529565b50565b6005546001600160a01b031633146114395760405162461bcd60e51b8152600401610a0f90612447565b60058054911515600160a81b0260ff60a81b19909216919091179055565b61146483838360016115cd565b505050565b5f6114748484611292565b90505f1981146114c657818110156114b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b6114c684848484035f6115cd565b50505050565b6001600160a01b0383166114f557604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b03821661151e5760405163ec442f0560e01b81525f6004820152602401610a0f565b61146483838361169f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166115f65760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b03831661161f57604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156114c657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161169191815260200190565b60405180910390a350505050565b805f036116b15761146483835f611e2e565b60085460ff1615611b68576005546001600160a01b038481169116148015906116e857506005546001600160a01b03838116911614155b80156116fc57506001600160a01b03821615155b801561171357506001600160a01b03821661dead14155b80156117295750600554600160a01b900460ff16155b15611b6857600d54600160a01b900460ff166117c1576001600160a01b0383165f9081526016602052604090205460ff168061177c57506001600160a01b0382165f9081526016602052604090205460ff165b6117c15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0f565b600854610100900460ff1615611909576005546001600160a01b0383811691161480159061182157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561185f57507f000000000000000000000000f5e640b16097d7111f8101ef163f16200d8ae0886001600160a01b0316826001600160a01b031614155b1561190957325f908152600b602052604090205443116118f75760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a0f565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff16801561194857506001600160a01b0382165f9081526017602052604090205460ff16155b15611a2b57600a548111156119bd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a37b5b2b739a832b92a3930b739b332b91760591b6064820152608401610a0f565b6009546001600160a01b0383165f908152602081905260409020546119e290836124c6565b1115611a265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611b68565b6001600160a01b0382165f9081526018602052604090205460ff168015611a6a57506001600160a01b0383165f9081526017602052604090205460ff16155b15611ae057600a54811115611a265760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a0f565b6001600160a01b0382165f9081526017602052604090205460ff16611b68576009546001600160a01b0383165f90815260208190526040902054611b2490836124c6565b1115611b685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460065481108015908190611b945750600554600160a81b900460ff165b8015611baa5750600554600160a01b900460ff16155b8015611bce57506001600160a01b0385165f9081526018602052604090205460ff16155b8015611bf257506001600160a01b0385165f9081526016602052604090205460ff16155b8015611c1657506001600160a01b0384165f9081526016602052604090205460ff16155b15611c44576005805460ff60a01b1916600160a01b179055611c36611f54565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b909204821615911680611c9057506001600160a01b0385165f9081526016602052604090205460ff165b15611c9857505f5b5f8115611e1a576001600160a01b0386165f9081526018602052604090205460ff168015611cc757505f601154115b15611d5357611cec6064611ce66011548861208690919063ffffffff16565b90612098565b905060115460135482611cff91906124af565b611d099190612490565b60155f828254611d1991906124c6565b9091555050601154601254611d2e90836124af565b611d389190612490565b60145f828254611d4891906124c6565b90915550611dfc9050565b6001600160a01b0387165f9081526018602052604090205460ff168015611d7b57505f600e54115b15611dfc57611d9a6064611ce6600e548861208690919063ffffffff16565b9050600e5460105482611dad91906124af565b611db79190612490565b60155f828254611dc791906124c6565b9091555050600e54600f54611ddc90836124af565b611de69190612490565b60145f828254611df691906124c6565b90915550505b8015611e0d57611e0d873083611e2e565b611e1781866124d9565b94505b611e25878787611e2e565b50505050505050565b6001600160a01b038316611e58578060025f828254611e4d91906124c6565b90915550611ec89050565b6001600160a01b0383165f9081526020819052604090205481811015611eaa5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611ee457600280548290039055611f02565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f4791815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f601554601454611f7691906124c6565b90505f821580611f84575081155b15611f8e57505050565b600754831115611f9e5760075492505b47611fa8846120a3565b5f611fb34783612259565b90505f611fcf85611ce66015548561208690919063ffffffff16565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f8114612024576040519150601f19603f3d011682016040523d82523d5f602084013e612029565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f8114612076576040519150601f19603f3d011682016040523d82523d5f602084013e61207b565b606091505b505050505050505050565b5f61209182846124af565b9392505050565b5f6120918284612490565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106120d6576120d66124ec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121769190612500565b81600181518110612189576121896124ec565b60200260200101906001600160a01b031690816001600160a01b0316815250506121d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611457565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122289085905f9086903090429060040161251b565b5f604051808303815f87803b15801561223f575f80fd5b505af1158015612251573d5f803e3d5ffd5b505050505050565b5f61209182846124d9565b5f6020808352835180828501525f5b8181101561228f57858101830151858201604001528201612273565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461140c575f80fd5b5f80604083850312156122d4575f80fd5b82356122df816122af565b946020939093013593505050565b5f602082840312156122fd575f80fd5b5035919050565b5f60208284031215612314575f80fd5b8135612091816122af565b5f805f60608486031215612331575f80fd5b833561233c816122af565b9250602084013561234c816122af565b929592945050506040919091013590565b5f806040838503121561236e575f80fd5b50508035926020909101359150565b80358015158114610ba1575f80fd5b5f806040838503121561239d575f80fd5b82356123a8816122af565b91506123b66020840161237d565b90509250929050565b5f80604083850312156123d0575f80fd5b82356123db816122af565b915060208301356123eb816122af565b809150509250929050565b5f60208284031215612406575f80fd5b6120918261237d565b600181811c9082168061242357607f821691505b60208210810361244157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f826124aa57634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176109dd576109dd61247c565b808201808211156109dd576109dd61247c565b818103818111156109dd576109dd61247c565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612510575f80fd5b8151612091816122af565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156125695784516001600160a01b031683529383019391830191600101612544565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b167b6cd3263c34e8ec224b9302470246ac5c1e5e369e2bb831a80c6a549362264736f6c63430008140033
Deployed Bytecode Sourcemap
26358:15205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27121:36;;;;;;;;;;-1:-1:-1;27121:36:0;;;;-1:-1:-1;;;27121:36:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;27121:36:0;;;;;;;;12828:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15121:190::-;;;;;;;;;;-1:-1:-1;15121:190:0;;;;;:::i;:::-;;:::i;26820:34::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26820:34:0;1215:177:1;30772:621:0;;;;;;;;;;-1:-1:-1;30772:621:0;;;;;:::i;:::-;;:::i;13930:99::-;;;;;;;;;;-1:-1:-1;14009:12:0;;13930:99;;35380:205;;;;;;;;;;-1:-1:-1;35380:205:0;;;;;:::i;:::-;;:::i;:::-;;15889:249;;;;;;;;;;-1:-1:-1;15889:249:0;;;;;:::i;:::-;;:::i;35025:221::-;;;;;;;;;;-1:-1:-1;35025:221:0;;;;;:::i;:::-;;:::i;13781:84::-;;;;;;;;;;-1:-1:-1;13781:84:0;;13855:2;2437:36:1;;2425:2;2410:18;13781:84:0;2295:184:1;27375:33:0;;;;;;;;;;;;;;;;31401:315;;;;;;;;;;-1:-1:-1;31401:315:0;;;;;:::i;:::-;;:::i;16547:238::-;;;;;;;;;;-1:-1:-1;16547:238:0;;;;;:::i;:::-;;:::i;27235:25::-;;;;;;;;;;;;;;;;27415:33;;;;;;;;;;;;;;;;27800:41;;;;;;;;;;-1:-1:-1;27800:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30238:115;;;;;;;;;;;;;:::i;26580:38::-;;;;;;;;;;-1:-1:-1;26580:38:0;;;;-1:-1:-1;;;26580:38:0;;;;;;27079:33;;;;;;;;;;-1:-1:-1;27079:33:0;;;;-1:-1:-1;;;;;27079:33:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;27079:33:0;2484:203:1;26724:45:0;;;;;;;;;;-1:-1:-1;26724:45:0;;;;;;;;31874:226;;;;;;;;;;-1:-1:-1;31874:226:0;;;;;:::i;:::-;;:::i;33179:319::-;;;;;;;;;;-1:-1:-1;33179:319:0;;;;;:::i;:::-;;:::i;35593:131::-;;;;;;;;;;-1:-1:-1;35593:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;35693:23:0;35669:4;35693:23;;;:14;:23;;;;;;;;;35593:131;26666:31;;;;;;;;;;;;;;;;32634:149;;;;;;;;;;-1:-1:-1;32634:149:0;;;;;:::i;:::-;;:::i;14092:118::-;;;;;;;;;;-1:-1:-1;14092:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14184:18:0;14157:7;14184:18;;;;;;;;;;;;14092:118;24989:103;;;;;;;;;;;;;:::i;26625:34::-;;;;;;;;;;;;;;;;33663:326;;;;;;;;;;-1:-1:-1;33663:326:0;;;;;:::i;:::-;;:::i;26486:34::-;;;;;;;;;;;;;;;24338:87;;;;;;;;;;-1:-1:-1;24411:6:0;;-1:-1:-1;;;;;24411:6:0;24338:87;;26438:41;;;;;;;;;;;;;;;13038:95;;;;;;;;;;;;;:::i;27340:26::-;;;;;;;;;;;;;;;;17473:504;;;;;;;;;;-1:-1:-1;17473:504:0;;;;;:::i;:::-;;:::i;14415:182::-;;;;;;;;;;-1:-1:-1;14415:182:0;;;;;:::i;:::-;;:::i;27592:50::-;;;;;;;;;;-1:-1:-1;27592:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30428:126;;;;;;;;;;;;;:::i;34156:188::-;;;;;;;;;;-1:-1:-1;34156:188:0;;;;;:::i;:::-;;:::i;27307:26::-;;;;;;;;;;;;;;;;34479:265;;;;;;;;;;-1:-1:-1;34479:265:0;;;;;:::i;:::-;;:::i;27203:25::-;;;;;;;;;;;;;;;;30625:139;;;;;;;;;;;;;:::i;14660:142::-;;;;;;;;;;-1:-1:-1;14660:142:0;;;;;:::i;:::-;;:::i;32225:223::-;;;;;;;;;;-1:-1:-1;32225:223:0;;;;;:::i;:::-;;:::i;27269:31::-;;;;;;;;;;;;;;;;27039:33;;;;;;;;;;-1:-1:-1;27039:33:0;;;;-1:-1:-1;;;;;27039:33:0;;;27166:30;;;;;;;;;;;;;;;;25247:238;;;;;;;;;;-1:-1:-1;25247:238:0;;;;;:::i;:::-;;:::i;32901:114::-;;;;;;;;;;-1:-1:-1;32901:114:0;;;;;:::i;:::-;;:::i;26861:35::-;;;;;;;;;;;;;;;;26776:37;;;;;;;;;;-1:-1:-1;26776:37:0;;;;;;;;;;;12828:91;12873:13;12906:5;12899:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12828:91;:::o;15121:190::-;15194:4;9997:10;15250:31;9997:10;15266:7;15275:5;15250:8;:31::i;:::-;15299:4;15292:11;;;15121:190;;;;;:::o;30772:621::-;24411:6;;30870:4;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;;;;;;;;;30938:6:::1;30922:13;14009:12:::0;;;13930:99;30922:13:::1;:22;;;;:::i;:::-;30909:9;:35;;30887:138;;;::::0;-1:-1:-1;;;30887:138:0;;5539:2:1;30887:138:0::1;::::0;::::1;5521:21:1::0;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:1;;;5661:51;5729:19;;30887:138:0::1;5337:417:1::0;30887:138:0::1;31095:6;31078:13;14009:12:::0;;;13930:99;31078:13:::1;31072:19;::::0;:3:::1;:19;:::i;:::-;31071:30;;;;:::i;:::-;31058:9;:43;;31036:145;;;::::0;-1:-1:-1;;;31036:145:0;;6134:2:1;31036:145:0::1;::::0;::::1;6116:21:1::0;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;-1:-1:-1;;;6263:18:1;;;6256:50;6323:19;;31036:145:0::1;5932:416:1::0;31036:145:0::1;31227:16;;31214:9;:29;;31192:129;;;::::0;-1:-1:-1;;;31192:129:0;;6555:2:1;31192:129:0::1;::::0;::::1;6537:21:1::0;6594:2;6574:18;;;6567:30;6633:34;6613:18;;;6606:62;-1:-1:-1;;;6684:18:1;;;6677:48;6742:19;;31192:129:0::1;6353:414:1::0;31192:129:0::1;-1:-1:-1::0;31332:19:0::1;:31:::0;;;31381:4:::1;24629:1;30772:621:::0;;;:::o;35380:205::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;35511:18:::1;::::0;35468:62:::1;::::0;-1:-1:-1;;;;;35511:18:0;;::::1;::::0;35468:62;::::1;::::0;::::1;::::0;35511:18:::1;::::0;35468:62:::1;35541:18;:36:::0;;-1:-1:-1;;;;;;35541:36:0::1;-1:-1:-1::0;;;;;35541:36:0;;;::::1;::::0;;;::::1;::::0;;35380:205::o;15889:249::-;15976:4;9997:10;16034:37;16050:4;9997:10;16065:5;16034:15;:37::i;:::-;16082:26;16092:4;16098:2;16102:5;16082:9;:26::i;:::-;-1:-1:-1;16126:4:0;;15889:249;-1:-1:-1;;;;15889:249:0:o;35025:221::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;35172:18:::1;::::0;35129:62:::1;::::0;-1:-1:-1;;;;;35172:18:0;;::::1;::::0;35129:62;::::1;::::0;::::1;::::0;35172:18:::1;::::0;35129:62:::1;35202:18;:36:::0;;-1:-1:-1;;;;;;35202:36:0::1;-1:-1:-1::0;;;;;35202:36:0;;;::::1;::::0;;;::::1;::::0;;35025:221::o;31401:315::-;24411:6;;31496:4;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;31548:19:::1;;31535:9;:32;;31513:134;;;::::0;-1:-1:-1;;;31513:134:0;;6974:2:1;31513:134:0::1;::::0;::::1;6956:21:1::0;7013:2;6993:18;;;6986:30;7052:34;7032:18;;;7025:62;-1:-1:-1;;;7103:18:1;;;7096:50;7163:19;;31513:134:0::1;6772:416:1::0;31513:134:0::1;-1:-1:-1::0;31658:16:0::1;:28:::0;31704:4:::1;::::0;31401:315::o;16547:238::-;16635:4;9997:10;16691:64;9997:10;16707:7;16744:10;16716:25;9997:10;16707:7;16716:9;:25::i;:::-;:38;;;;:::i;:::-;16691:8;:64::i;30238:115::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;30286:16:::1;:23:::0;;-1:-1:-1;;;;30286:23:0::1;-1:-1:-1::0;;;30286:23:0::1;::::0;;30320:18:::1;:25:::0;;-1:-1:-1;;;;30320:25:0::1;-1:-1:-1::0;;;30320:25:0::1;::::0;;30238:115::o;31874:226::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;31974:1:::1;31964:6;:11;;31956:71;;;::::0;-1:-1:-1;;;31956:71:0;;7525:2:1;31956:71:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:45;7709:19;;31956:71:0::1;7323:411:1::0;31956:71:0::1;32088:4;32071:13;14009:12:::0;;;13930:99;32071:13:::1;32062:22;::::0;:6;:22:::1;:::i;:::-;32061:31;;;;:::i;:::-;32038:20;:54:::0;-1:-1:-1;31874:226:0:o;33179:319::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;33304:10:::1;:25:::0;;;33340:10:::1;:24:::0;;;33393:23:::1;33353:11:::0;33317:12;33393:23:::1;:::i;:::-;33375:15;:41:::0;;;33454:2:::1;-1:-1:-1::0;33435:21:0::1;33427:63;;;::::0;-1:-1:-1;;;33427:63:0;;7941:2:1;33427:63:0::1;::::0;::::1;7923:21:1::0;7980:2;7960:18;;;7953:30;8019:31;7999:18;;;7992:59;8068:18;;33427:63:0::1;7739:353:1::0;33427:63:0::1;33179:319:::0;;:::o;32634:149::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32742:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32742:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32634:149::o;24989:103::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;25054:30:::1;25081:1;25054:18;:30::i;:::-;24989:103::o:0;33663:326::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;33789:11:::1;:26:::0;;;33826:11:::1;:25:::0;;;33881::::1;33840:11:::0;33803:12;33881:25:::1;:::i;:::-;33862:16;:44:::0;;;33945:2:::1;-1:-1:-1::0;33925:22:0::1;33917:64;;;::::0;-1:-1:-1;;;33917:64:0;;7941:2:1;33917:64:0::1;::::0;::::1;7923:21:1::0;7980:2;7960:18;;;7953:30;8019:31;7999:18;;;7992:59;8068:18;;33917:64:0::1;7739:353:1::0;13038:95:0;13085:13;13118:7;13111:14;;;;;:::i;17473:504::-;17568:4;9997:10;17568:4;17651:25;9997:10;17668:7;17651:9;:25::i;:::-;17624:52;;17710:17;17691:16;:36;17687:150;;;17751:74;;-1:-1:-1;;;17751:74:0;;-1:-1:-1;;;;;8317:32:1;;17751:74:0;;;8299:51:1;8366:18;;;8359:34;;;8409:18;;;8402:34;;;8272:18;;17751:74:0;8097:345:1;17687:150:0;17872:62;17881:5;17888:7;17916:17;17897:16;:36;17872:8;:62::i;14415:182::-;14484:4;9997:10;14540:27;9997:10;14557:2;14561:5;14540:9;:27::i;30428:126::-;24411:6;;30473:4;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;-1:-1:-1;30490:26:0::1;:34:::0;;-1:-1:-1;;30490:34:0::1;::::0;;;30428:126;:::o;34156:188::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34244:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34244:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34294:42;;154:41:1;;;34294:42:0::1;::::0;127:18:1;34294:42:0::1;;;;;;;34156:188:::0;;:::o;34479:265::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;34620:9:::1;-1:-1:-1::0;;;;;34612:17:0::1;:4;-1:-1:-1::0;;;;;34612:17:0::1;::::0;34590:108:::1;;;::::0;-1:-1:-1;;;34590:108:0;;8649:2:1;34590:108:0::1;::::0;::::1;8631:21:1::0;8688:2;8668:18;;;8661:30;8727:34;8707:18;;;8700:62;-1:-1:-1;;;8778:18:1;;;8771:39;8827:19;;34590:108:0::1;8447:405:1::0;34590:108:0::1;34711:25;34724:4;34730:5;34711:12;:25::i;30625:139::-:0;24411:6;;30691:4;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;-1:-1:-1;30708:18:0::1;:26:::0;;-1:-1:-1;;30708:26:0::1;::::0;;:18:::1;30625:139:::0;:::o;14660:142::-;-1:-1:-1;;;;;14767:18:0;;;14740:7;14767:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14660:142::o;32225:223::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;32324:1:::1;32314:6;:11;;32306:70;;;::::0;-1:-1:-1;;;32306:70:0;;9059:2:1;32306:70:0::1;::::0;::::1;9041:21:1::0;9098:2;9078:18;;;9071:30;9137:34;9117:18;;;9110:62;-1:-1:-1;;;9188:18:1;;;9181:44;9242:19;;32306:70:0::1;8857:410:1::0;32306:70:0::1;32436:4;32419:13;14009:12:::0;;;13930:99;32419:13:::1;32410:22;::::0;:6;:22:::1;:::i;:::-;32409:31;;;;:::i;:::-;32387:19;:53:::0;-1:-1:-1;32225:223:0:o;25247:238::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25350:22:0;::::1;25328:110;;;::::0;-1:-1:-1;;;25328:110:0;;9474:2:1;25328:110:0::1;::::0;::::1;9456:21:1::0;9513:2;9493:18;;;9486:30;9552:34;9532:18;;;9525:62;-1:-1:-1;;;9603:18:1;;;9596:36;9649:19;;25328:110:0::1;9272:402:1::0;25328:110:0::1;25449:28;25468:8;25449:18;:28::i;:::-;25247:238:::0;:::o;32901:114::-;24411:6;;-1:-1:-1;;;;;24411:6:0;9997:10;24558:23;24550:68;;;;-1:-1:-1;;;24550:68:0;;;;;;;:::i;:::-;32979:18:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;32979:28:0::1;-1:-1:-1::0;;;;32979:28:0;;::::1;::::0;;;::::1;::::0;;32901:114::o;21670:138::-;21763:37;21772:5;21779:7;21788:5;21795:4;21763:8;:37::i;:::-;21670:138;;;:::o;23407:487::-;23507:24;23534:25;23544:5;23551:7;23534:9;:25::i;:::-;23507:52;;-1:-1:-1;;23574:16:0;:37;23570:317;;23651:5;23632:16;:24;23628:132;;;23684:60;;-1:-1:-1;;;23684:60:0;;-1:-1:-1;;;;;8317:32:1;;23684:60:0;;;8299:51:1;8366:18;;;8359:34;;;8409:18;;;8402:34;;;8272:18;;23684:60:0;8097:345:1;23628:132:0;23803:57;23812:5;23819:7;23847:5;23828:16;:24;23854:5;23803:8;:57::i;:::-;23496:398;23407:487;;;:::o;18362:308::-;-1:-1:-1;;;;;18446:18:0;;18442:88;;18488:30;;-1:-1:-1;;;18488:30:0;;18515:1;18488:30;;;2630:51:1;2603:18;;18488:30:0;2484:203:1;18442:88:0;-1:-1:-1;;;;;18544:16:0;;18540:88;;18584:32;;-1:-1:-1;;;18584:32:0;;18613:1;18584:32;;;2630:51:1;2603:18;;18584:32:0;2484:203:1;18540:88:0;18638:24;18646:4;18652:2;18656:5;18638:7;:24::i;25645:191::-;25738:6;;;-1:-1:-1;;;;;25755:17:0;;;-1:-1:-1;;;;;;25755:17:0;;;;;;;25788:40;;25738:6;;;25755:17;25738:6;;25788:40;;25719:16;;25788:40;25708:128;25645:191;:::o;34752:139::-;-1:-1:-1;;;;;34819:15:0;;;;;;:9;:15;;;;;;:23;;-1:-1:-1;;34819:23:0;;;;;;;;;;34860;;34819;;:15;34860:23;;;34752:139;;:::o;22675:443::-;-1:-1:-1;;;;;22788:19:0;;22784:91;;22831:32;;-1:-1:-1;;;22831:32:0;;22860:1;22831:32;;;2630:51:1;2603:18;;22831:32:0;2484:203:1;22784:91:0;-1:-1:-1;;;;;22889:21:0;;22885:92;;22934:31;;-1:-1:-1;;;22934:31:0;;22962:1;22934:31;;;2630:51:1;2603:18;;22934:31:0;2484:203:1;22885:92:0;-1:-1:-1;;;;;22987:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23033:78;;;;23084:7;-1:-1:-1;;;;;23068:31:0;23077:5;-1:-1:-1;;;;;23068:31:0;;23093:5;23068:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;23068:31:0;;;;;;;;22675:443;;;;:::o;35732:4234::-;35858:6;35868:1;35858:11;35854:91;;35886:26;35900:4;35906:2;35910:1;35886:13;:26::i;35854:91::-;35961:26;;;;35957:2331;;;24411:6;;-1:-1:-1;;;;;36026:15:0;;;24411:6;;36026:15;;;;:49;;-1:-1:-1;24411:6:0;;-1:-1:-1;;;;;36062:13:0;;;24411:6;;36062:13;;36026:49;:86;;;;-1:-1:-1;;;;;;36096:16:0;;;;36026:86;:128;;;;-1:-1:-1;;;;;;36133:21:0;;36147:6;36133:21;;36026:128;:164;;;;-1:-1:-1;36176:14:0;;-1:-1:-1;;;36176:14:0;;;;36175:15;36026:164;36004:2273;;;36230:16;;-1:-1:-1;;;36230:16:0;;;;36225:216;;-1:-1:-1;;;;;36305:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;36329:18:0;;;;;;:14;:18;;;;;;;;36305:42;36271:150;;;;-1:-1:-1;;;36271:150:0;;9881:2:1;36271:150:0;;;9863:21:1;9920:2;9900:18;;;9893:30;-1:-1:-1;;;9939:18:1;;;9932:52;10001:18;;36271:150:0;9679:346:1;36271:150:0;36597:18;;;;;;;36593:607;;;24411:6;;-1:-1:-1;;;;;36670:13:0;;;24411:6;;36670:13;;;;:68;;;36726:11;-1:-1:-1;;;;;36712:26:0;:2;-1:-1:-1;;;;;36712:26:0;;;36670:68;:121;;;;;36781:9;-1:-1:-1;;;;;36767:24:0;:2;-1:-1:-1;;;;;36767:24:0;;;36670:121;36640:541;;;36898:9;36880:28;;;;:17;:28;;;;;;36944:12;-1:-1:-1;36842:245:0;;;;-1:-1:-1;;;36842:245:0;;10232:2:1;36842:245:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310:34;10290:18;;;10283:62;10381:34;10361:18;;;10354:62;-1:-1:-1;;;10432:19:1;;;10425:38;10480:19;;36842:245:0;10030:475:1;36842:245:0;37132:9;37114:28;;;;:17;:28;;;;;37145:12;37114:43;;36640:541;-1:-1:-1;;;;;37252:15:0;;;;;;:9;:15;;;;;;;;:42;;;;-1:-1:-1;;;;;;37272:22:0;;;;;;:18;:22;;;;;;;;37271:23;37252:42;37248:1014;;;37363:20;;37353:6;:30;;37319:169;;;;-1:-1:-1;;;37319:169:0;;10712:2:1;37319:169:0;;;10694:21:1;10751:2;10731:18;;;10724:30;10790:34;10770:18;;;10763:62;-1:-1:-1;;;10841:18:1;;;10834:51;10902:19;;37319:169:0;10510:417:1;37319:169:0;37571:19;;-1:-1:-1;;;;;14184:18:0;;14157:7;14184:18;;;;;;;;;;;37545:22;;:6;:22;:::i;:::-;:45;;37511:150;;;;-1:-1:-1;;;37511:150:0;;11134:2:1;37511:150:0;;;11116:21:1;11173:2;11153:18;;;11146:30;-1:-1:-1;;;11192:18:1;;;11185:49;11251:18;;37511:150:0;10932:343:1;37511:150:0;37248:1014;;;-1:-1:-1;;;;;37759:13:0;;;;;;:9;:13;;;;;;;;:42;;;;-1:-1:-1;;;;;;37777:24:0;;;;;;:18;:24;;;;;;;;37776:25;37759:42;37733:529;;;37888:20;;37878:6;:30;;37844:170;;;;-1:-1:-1;;;37844:170:0;;11482:2:1;37844:170:0;;;11464:21:1;11521:2;11501:18;;;11494:30;11560:34;11540:18;;;11533:62;-1:-1:-1;;;11611:18:1;;;11604:52;11673:19;;37844:170:0;11280:418:1;37733:529:0;-1:-1:-1;;;;;38045:22:0;;;;;;:18;:22;;;;;;;;38040:222;;38152:19;;-1:-1:-1;;;;;14184:18:0;;14157:7;14184:18;;;;;;;;;;;38126:22;;:6;:22;:::i;:::-;:45;;38092:150;;;;-1:-1:-1;;;38092:150:0;;11134:2:1;38092:150:0;;;11116:21:1;11173:2;11153:18;;;11146:30;-1:-1:-1;;;11192:18:1;;;11185:49;11251:18;;38092:150:0;10932:343:1;38092:150:0;38349:4;38300:28;14184:18;;;;;;;;;;;38407:19;;38383:43;;;;;;;38457:42;;-1:-1:-1;38481:18:0;;-1:-1:-1;;;38481:18:0;;;;38457:42;:74;;;;-1:-1:-1;38517:14:0;;-1:-1:-1;;;38517:14:0;;;;38516:15;38457:74;:107;;;;-1:-1:-1;;;;;;38549:15:0;;;;;;:9;:15;;;;;;;;38548:16;38457:107;:145;;;;-1:-1:-1;;;;;;38582:20:0;;;;;;:14;:20;;;;;;;;38581:21;38457:145;:181;;;;-1:-1:-1;;;;;;38620:18:0;;;;;;:14;:18;;;;;;;;38619:19;38457:181;38439:332;;;38665:14;:21;;-1:-1:-1;;;;38665:21:0;-1:-1:-1;;;38665:21:0;;;38703:17;:15;:17::i;:::-;38737:14;:22;;-1:-1:-1;;;;38737:22:0;;;38439:332;38799:14;;-1:-1:-1;;;;;38915:20:0;;38783:12;38915:20;;;:14;:20;;;;;;38799:14;-1:-1:-1;;;38799:14:0;;;;;38798:15;;38915:20;;:42;;-1:-1:-1;;;;;;38939:18:0;;;;;;:14;:18;;;;;;;;38915:42;38911:90;;;-1:-1:-1;38984:5:0;38911:90;39013:12;39118:7;39114:801;;;-1:-1:-1;;;;;39170:13:0;;;;;;:9;:13;;;;;;;;:37;;;;;39206:1;39187:16;;:20;39170:37;39166:602;;;39235:37;39268:3;39235:28;39246:16;;39235:6;:10;;:28;;;;:::i;:::-;:32;;:37::i;:::-;39228:44;;39336:16;;39321:11;;39314:4;:18;;;;:::i;:::-;39313:39;;;;:::i;:::-;39291:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;39416:16:0;;39401:11;;39394:18;;:4;:18;:::i;:::-;39393:39;;;;:::i;:::-;39371:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;39166:602:0;;-1:-1:-1;39166:602:0;;-1:-1:-1;;;;;39494:15:0;;;;;;:9;:15;;;;;;;;:38;;;;;39531:1;39513:15;;:19;39494:38;39490:278;;;39560:36;39592:3;39560:27;39571:15;;39560:6;:10;;:27;;;;:::i;:36::-;39553:43;;39659:15;;39645:10;;39638:4;:17;;;;:::i;:::-;39637:37;;;;:::i;:::-;39615:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39737:15:0;;39723:10;;39716:17;;:4;:17;:::i;:::-;39715:37;;;;:::i;:::-;39693:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39490:278:0;39788:8;;39784:89;;39817:40;39831:4;39845;39852;39817:13;:40::i;:::-;39889:14;39899:4;39889:14;;:::i;:::-;;;39114:801;39927:31;39941:4;39947:2;39951:6;39927:13;:31::i;:::-;35843:4123;;;;35732:4234;;;:::o;18986:1135::-;-1:-1:-1;;;;;19076:18:0;;19072:552;;19230:5;19214:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19072:552:0;;-1:-1:-1;19072:552:0;;-1:-1:-1;;;;;19290:15:0;;19268:19;19290:15;;;;;;;;;;;19324:19;;;19320:117;;;19371:50;;-1:-1:-1;;;19371:50:0;;-1:-1:-1;;;;;8317:32:1;;19371:50:0;;;8299:51:1;8366:18;;;8359:34;;;8409:18;;;8402:34;;;8272:18;;19371:50:0;8097:345:1;19320:117:0;-1:-1:-1;;;;;19560:15:0;;:9;:15;;;;;;;;;;19578:19;;;;19560:37;;19072:552;-1:-1:-1;;;;;19640:16:0;;19636:435;;19806:12;:21;;;;;;;19636:435;;;-1:-1:-1;;;;;20022:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19636:435;20103:2;-1:-1:-1;;;;;20088:25:0;20097:4;-1:-1:-1;;;;;20088:25:0;;20107:5;20088:25;;;;1361::1;;1349:2;1334:18;;1215:177;20088:25:0;;;;;;;;18986:1135;;;:::o;40577:983::-;40667:4;40623:23;14184:18;;;;;;;;;;;40623:50;;40684:25;40733:18;;40712;;:39;;;;:::i;:::-;40684:67;-1:-1:-1;40762:12:0;40791:20;;;:46;;-1:-1:-1;40815:22:0;;40791:46;40787:85;;;40854:7;;;40577:983::o;40787:85::-;40906:16;;40888:15;:34;40884:101;;;40957:16;;40939:34;;40884:101;41025:21;41059:51;41094:15;41059:34;:51::i;:::-;41123:18;41144:44;:21;41170:17;41144:25;:44::i;:::-;41123:65;;41201:21;41225:57;41264:17;41225:34;41240:18;;41225:10;:14;;:34;;;;:::i;:57::-;41316:1;41295:18;:22;;;41328:18;:22;;;41385:18;;41377:58;;41201:81;;-1:-1:-1;;;;;;41385:18:0;;41201:81;;41377:58;41316:1;41377:58;41201:81;41385:18;41377:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41470:18:0;;41462:90;;41363:72;;-1:-1:-1;;;;;;41470:18:0;;41516:21;;41462:90;;;;41516:21;41470:18;41462:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;40577:983:0:o;3384:98::-;3442:7;3469:5;3473:1;3469;:5;:::i;:::-;3462:12;3384:98;-1:-1:-1;;;3384:98:0:o;3783:::-;3841:7;3868:5;3872:1;3868;:5;:::i;39974:595::-;40142:16;;;40156:1;40142:16;;;;;;;;40118:21;;40142:16;;;;;;;;;;-1:-1:-1;40142:16:0;40118:40;;40187:4;40169;40174:1;40169:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40169:23:0;;;-1:-1:-1;;;;;40169:23:0;;;;;40213:11;-1:-1:-1;;;;;40213:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40203:4;40208:1;40203:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;40203:28:0;;;-1:-1:-1;;;;;40203:28:0;;;;;40244:58;40261:4;40276:11;40290;40244:8;:58::i;:::-;40341:220;;-1:-1:-1;;;40341:220:0;;-1:-1:-1;;;;;40341:11:0;:62;;;;:220;;40418:11;;40444:1;;40488:4;;40515;;40535:15;;40341:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40047:522;39974:595;:::o;3027:98::-;3085:7;3112:5;3116:1;3112;:5;:::i;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:247::-;1641:6;1694:2;1682:9;1673:7;1669:23;1665:32;1662:52;;;1710:1;1707;1700:12;1662:52;1749:9;1736:23;1768:31;1793:5;1768:31;:::i;1834:456::-;1911:6;1919;1927;1980:2;1968:9;1959:7;1955:23;1951:32;1948:52;;;1996:1;1993;1986:12;1948:52;2035:9;2022:23;2054:31;2079:5;2054:31;:::i;:::-;2104:5;-1:-1:-1;2161:2:1;2146:18;;2133:32;2174:33;2133:32;2174:33;:::i;:::-;1834:456;;2226:7;;-1:-1:-1;;;2280:2:1;2265:18;;;;2252:32;;1834:456::o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:160::-;3010:20;;3066:13;;3059:21;3049:32;;3039:60;;3095:1;3092;3085:12;3110:315;3175:6;3183;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:31;3335:5;3310:31;:::i;:::-;3360:5;-1:-1:-1;3384:35:1;3415:2;3400:18;;3384:35;:::i;:::-;3374:45;;3110:315;;;;;:::o;3659:388::-;3727:6;3735;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3843:9;3830:23;3862:31;3887:5;3862:31;:::i;:::-;3912:5;-1:-1:-1;3969:2:1;3954:18;;3941:32;3982:33;3941:32;3982:33;:::i;:::-;4034:7;4024:17;;;3659:388;;;;;:::o;4052:180::-;4108:6;4161:2;4149:9;4140:7;4136:23;4132:32;4129:52;;;4177:1;4174;4167:12;4129:52;4200:26;4216:9;4200:26;:::i;4237:380::-;4316:1;4312:12;;;;4359;;;4380:61;;4434:4;4426:6;4422:17;4412:27;;4380:61;4487:2;4479:6;4476:14;4456:18;4453:38;4450:161;;4533:10;4528:3;4524:20;4521:1;4514:31;4568:4;4565:1;4558:15;4596:4;4593:1;4586:15;4450:161;;4237:380;;;:::o;4622:356::-;4824:2;4806:21;;;4843:18;;;4836:30;4902:34;4897:2;4882:18;;4875:62;4969:2;4954:18;;4622:356::o;4983:127::-;5044:10;5039:3;5035:20;5032:1;5025:31;5075:4;5072:1;5065:15;5099:4;5096:1;5089:15;5115:217;5155:1;5181;5171:132;;5225:10;5220:3;5216:20;5213:1;5206:31;5260:4;5257:1;5250:15;5288:4;5285:1;5278:15;5171:132;-1:-1:-1;5317:9:1;;5115:217::o;5759:168::-;5832:9;;;5863;;5880:15;;;5874:22;;5860:37;5850:71;;5901:18;;:::i;7193:125::-;7258:9;;;7279:10;;;7276:36;;;7292:18;;:::i;11703:128::-;11770:9;;;11791:11;;;11788:37;;;11805:18;;:::i;12178:127::-;12239:10;12234:3;12230:20;12227:1;12220:31;12270:4;12267:1;12260:15;12294:4;12291:1;12284:15;12310:251;12380:6;12433:2;12421:9;12412:7;12408:23;12404:32;12401:52;;;12449:1;12446;12439:12;12401:52;12481:9;12475:16;12500:31;12525:5;12500:31;:::i;12566:980::-;12828:4;12876:3;12865:9;12861:19;12907:6;12896:9;12889:25;12933:2;12971:6;12966:2;12955:9;12951:18;12944:34;13014:3;13009:2;12998:9;12994:18;12987:31;13038:6;13073;13067:13;13104:6;13096;13089:22;13142:3;13131:9;13127:19;13120:26;;13181:2;13173:6;13169:15;13155:29;;13202:1;13212:195;13226:6;13223:1;13220:13;13212:195;;;13291:13;;-1:-1:-1;;;;;13287:39:1;13275:52;;13382:15;;;;13347:12;;;;13323:1;13241:9;13212:195;;;-1:-1:-1;;;;;;;13463:32:1;;;;13458:2;13443:18;;13436:60;-1:-1:-1;;;13527:3:1;13512:19;13505:35;13424:3;12566:980;-1:-1:-1;;;12566:980:1:o
Swarm Source
ipfs://b167b6cd3263c34e8ec224b9302470246ac5c1e5e369e2bb831a80c6a5493622
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.