More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 277 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16701707 | 640 days ago | IN | 0 ETH | 0.00113626 | ||||
Approve | 16476574 | 672 days ago | IN | 0 ETH | 0.00079351 | ||||
Approve | 16415152 | 680 days ago | IN | 0 ETH | 0.00052059 | ||||
Approve | 16415151 | 680 days ago | IN | 0 ETH | 0.000535 | ||||
Approve | 16219256 | 708 days ago | IN | 0 ETH | 0.00162505 | ||||
Approve | 16217257 | 708 days ago | IN | 0 ETH | 0.00057129 | ||||
Approve | 16214474 | 709 days ago | IN | 0 ETH | 0.00064003 | ||||
Approve | 16213440 | 709 days ago | IN | 0 ETH | 0.00059622 | ||||
Approve | 16210774 | 709 days ago | IN | 0 ETH | 0.00057359 | ||||
Approve | 16207823 | 709 days ago | IN | 0 ETH | 0.00063643 | ||||
Approve | 16207221 | 710 days ago | IN | 0 ETH | 0.00099639 | ||||
Approve | 16207071 | 710 days ago | IN | 0 ETH | 0.00059627 | ||||
Approve | 16206363 | 710 days ago | IN | 0 ETH | 0.00062291 | ||||
Approve | 16205253 | 710 days ago | IN | 0 ETH | 0.00033097 | ||||
Approve | 16204523 | 710 days ago | IN | 0 ETH | 0.00054099 | ||||
Approve | 16204477 | 710 days ago | IN | 0 ETH | 0.00059136 | ||||
Approve | 16204316 | 710 days ago | IN | 0 ETH | 0.00067841 | ||||
Approve | 16204306 | 710 days ago | IN | 0 ETH | 0.00059637 | ||||
Approve | 16203506 | 710 days ago | IN | 0 ETH | 0.0006853 | ||||
Approve | 16203127 | 710 days ago | IN | 0 ETH | 0.00064618 | ||||
Approve | 16202686 | 710 days ago | IN | 0 ETH | 0.00068555 | ||||
Approve | 16202587 | 710 days ago | IN | 0 ETH | 0.00066394 | ||||
Approve | 16202541 | 710 days ago | IN | 0 ETH | 0.00067702 | ||||
Approve | 16202128 | 710 days ago | IN | 0 ETH | 0.00066799 | ||||
Approve | 16202083 | 710 days ago | IN | 0 ETH | 0.00088121 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16255596 | 703 days ago | 0.00158027 ETH | ||||
16255596 | 703 days ago | 0.00013135 ETH | ||||
16255596 | 703 days ago | 0.00028978 ETH | ||||
16255596 | 703 days ago | 0.0017387 ETH | ||||
16255593 | 703 days ago | 0.00159413 ETH | ||||
16255593 | 703 days ago | 0.0001325 ETH | ||||
16255593 | 703 days ago | 0.00029232 ETH | ||||
16255593 | 703 days ago | 0.00175395 ETH | ||||
16219332 | 708 days ago | 0.00185852 ETH | ||||
16219332 | 708 days ago | 0.0001545 ETH | ||||
16219332 | 708 days ago | 0.0003408 ETH | ||||
16219332 | 708 days ago | 0.00204482 ETH | ||||
16219291 | 708 days ago | 0.00194207 ETH | ||||
16219291 | 708 days ago | 0.00016145 ETH | ||||
16219291 | 708 days ago | 0.00035612 ETH | ||||
16219291 | 708 days ago | 0.00213674 ETH | ||||
16216307 | 708 days ago | 0.00295774 ETH | ||||
16216307 | 708 days ago | 0.000246 ETH | ||||
16216307 | 708 days ago | 0.00054234 ETH | ||||
16216307 | 708 days ago | 0.00325408 ETH | ||||
16214689 | 708 days ago | 0.00208339 ETH | ||||
16214689 | 708 days ago | 0.0001732 ETH | ||||
16214689 | 708 days ago | 0.00038203 ETH | ||||
16214689 | 708 days ago | 0.00229222 ETH | ||||
16213442 | 709 days ago | 0.00191358 ETH |
Loading...
Loading
Contract Name:
SHIBET
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-16 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.7; pragma experimental ABIEncoderV2; /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SHIBET is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public mWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 private uptoBlockInitFees; uint256 private uptoTimeInitFees; bool private swapping; bool public isTrading = false; bool public isSwap = false; struct FeeStructure { uint256 totalFees; uint256 marketingFees; uint256 liquidityFees; } FeeStructure public buyFees; FeeStructure public sellFees; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public pairAddresses; mapping(address => bool) public antiBot; event ExcludeFromFees(address indexed account, bool isExcluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Shibet", "SHIBET") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // marketing fees wallet mWallet = address(0xf970703470fF0f6bA87979F3cF067Dc2e5070e62); uint256 totalSupply = 10000000 * 1e18; maxTransactionAmount = (totalSupply * 1) / 100; // 1% maxWallet = (totalSupply * 2) / 100; // 2% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% // setting fees buyFees.marketingFees = 5; buyFees.liquidityFees = 1; buyFees.totalFees = buyFees.marketingFees + buyFees.liquidityFees; sellFees.marketingFees = 5; sellFees.liquidityFees = 1; sellFees.totalFees = sellFees.marketingFees + sellFees.liquidityFees; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); } // once enabled, can never be turned off function enableTrading() external onlyOwner { isTrading = true; isSwap = true; uptoBlockInitFees = block.number + 2; uptoTimeInitFees = block.timestamp + 3600; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "0.001% > New Swap amount." ); swapTokensAtAmount = newAmount; return true; } function setAntiBot (address[] calldata accounts,bool[] calldata states) external onlyOwner { require(accounts.length == states.length,"invalid values"); for(uint256 i =0; i< accounts.length;i++) { antiBot[accounts[i]] = states[i]; } } function updateMaxTxnAmount(uint256 newPercentage) external onlyOwner { maxTransactionAmount = (totalSupply() * newPercentage) / 1000; require(maxTransactionAmount >= (totalSupply() / 1000), "Cannot set maxTransactionAmounts lower than 0.1%"); } function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner { maxWallet = (totalSupply() * newPercentage) / 1000; require(maxWallet >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%"); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateisSwap(bool enabled) external onlyOwner { isSwap = enabled; } function updateBuyFees( uint256 newMarketingFees, uint256 newLiquidityFees ) external onlyOwner { buyFees.marketingFees = newMarketingFees; buyFees.liquidityFees = newLiquidityFees; buyFees.totalFees = newMarketingFees + newLiquidityFees; require(buyFees.totalFees <= 13,"can not set totalFees greater than 13"); } function updateSellFees( uint256 newMarketingFees, uint256 newLiquidityFees ) external onlyOwner { sellFees.marketingFees = newMarketingFees; sellFees.liquidityFees = newLiquidityFees; sellFees.totalFees = newMarketingFees + newLiquidityFees; require(sellFees.totalFees <= 13,"can not set totalFees greater than 13"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from pairAddresses" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { pairAddresses[pair] = value; } function updateMarketingWalletAddress(address newMarketingWalletAddress) external onlyOwner { mWallet = newMarketingWalletAddress; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(!(antiBot[from] || antiBot[to]) ,"account is black listed"); require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!isTrading) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( pairAddresses[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( pairAddresses[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } if ( (balanceOf(address(this)) >= swapTokensAtAmount) && isSwap && !swapping && !pairAddresses[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { if(uptoBlockInitFees > block.number){ // 99% fees fees = amount.mul(99).div(100); tokensForMarketing += fees; } // on sell else if (pairAddresses[to] && sellFees.totalFees > 0) { if(uptoTimeInitFees > block.timestamp){ fees = amount.mul(20).div(100); tokensForMarketing += fees; }else{ fees = amount.mul(sellFees.totalFees).div(100); tokensForLiquidity += (fees * sellFees.liquidityFees) / sellFees.totalFees; tokensForMarketing += (fees * sellFees.marketingFees) / sellFees.totalFees; } } // on buy else if (pairAddresses[from] && buyFees.totalFees > 0) { fees = amount.mul(buyFees.totalFees).div(100); tokensForMarketing += (fees * buyFees.marketingFees) / buyFees.totalFees; tokensForLiquidity += (fees * buyFees.liquidityFees) / buyFees.totalFees; } if (fees > 0) { super._transfer(from, address(this), fees); amount -= fees; } } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } receive() external payable {} function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdEaD), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(mWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"antiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"totalFees","type":"uint256"},{"internalType":"uint256","name":"marketingFees","type":"uint256"},{"internalType":"uint256","name":"liquidityFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"totalFees","type":"uint256"},{"internalType":"uint256","name":"marketingFees","type":"uint256"},{"internalType":"uint256","name":"liquidityFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"states","type":"bool[]"}],"name":"setAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFees","type":"uint256"},{"internalType":"uint256","name":"newLiquidityFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWalletAddress","type":"address"}],"name":"updateMarketingWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFees","type":"uint256"},{"internalType":"uint256","name":"newLiquidityFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateisSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526010805462ffff00191690553480156200001d57600080fd5b506040518060400160405280600681526020016514da1a58995d60d21b8152506040518060400160405280600681526020016514d21250915560d21b81525081600390805190602001906200007492919062000642565b5080516200008a90600490602084019062000642565b505050620000a7620000a1620003e360201b60201c565b620003e7565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c981600162000439565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011e57600080fd5b505afa15801562000133573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001599190620006e8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a257600080fd5b505afa158015620001b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dd9190620006e8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200022657600080fd5b505af11580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002619190620006e8565b600780546001600160a01b0319166001600160a01b039290921691821790556200028d90600162000439565b6007546001600160a01b03166000908152601960205260409020805460ff19166001179055600880546001600160a01b03191673f970703470ff0f6ba87979f3cf067dc2e5070e621790556a084595161401484a0000006064620002f382600162000758565b620002ff919062000735565b60095560646200031182600262000758565b6200031d919062000735565b600b556127106200033082600562000758565b6200033c919062000735565b600a55600560128190556001601381905562000358916200071a565b601155600560158190556001601681905562000374916200071a565b601455620003966200038e6005546001600160a01b031690565b6001620004b3565b620003a3306001620004b3565b620003c2620003ba6005546001600160a01b031690565b600162000439565b620003cf30600162000439565b620003db33826200055d565b5050620007cd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004885760405162461bcd60e51b8152602060048201819052602482015260008051602062002d1883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004fe5760405162461bcd60e51b8152602060048201819052602482015260008051602062002d1883398151915260448201526064016200047f565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005b55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047f565b8060026000828254620005c991906200071a565b90915550506001600160a01b03821660009081526020819052604081208054839290620005f89084906200071a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000650906200077a565b90600052602060002090601f016020900481019282620006745760008555620006bf565b82601f106200068f57805160ff1916838001178555620006bf565b82800160010185558215620006bf579182015b82811115620006bf578251825591602001919060010190620006a2565b50620006cd929150620006d1565b5090565b5b80821115620006cd5760008155600101620006d2565b600060208284031215620006fb57600080fd5b81516001600160a01b03811681146200071357600080fd5b9392505050565b60008219821115620007305762000730620007b7565b500190565b6000826200075357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620007755762000775620007b7565b500290565b600181811c908216806200078f57607f821691505b60208210811415620007b157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61253b80620007dd6000396000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461076e578063e319c2ce14610784578063e4748b9e146107a4578063effd9910146107c3578063f2fde38b146107e3578063f8b45b051461080357600080fd5b8063c18bc19514610698578063c8c8ebe4146106b8578063d257b34f146106ce578063dd62ed3e146106ee578063e0f3ccf51461073457600080fd5b8063969e24d8116100fd578063969e24d8146105f85780639a7a23d614610618578063a457c2d714610638578063a9059cbb14610658578063c02466681461067857600080fd5b80638a8c523c146105605780638b16cf98146105755780638da5cb5b146105a557806395363514146105c357806395d89b41146105e357600080fd5b806323b872dd116101d25780634fbee193116101965780634fbee1931461047d57806366ca9b83146104b65780636e9087db146104d657806370a08231146104f5578063715018a61461052b5780637571336a1461054057600080fd5b806323b872dd146103d1578063313ce567146103f1578063395093511461040d5780633fa1410f1461042d57806349bd5a5e1461045d57600080fd5b8063171b917111610219578063171b91711461034657806318160ddd146103665780631a8145bb146103855780631f3fed8f1461039b578063203e727e146103b157600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046121e6565b610819565b005b34801561028f57600080fd5b50610298610889565b6040516102a59190612236565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c936600461211a565b61091b565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004612031565b60186020526000908152604090205460ff1681565b34801561031a57600080fd5b5060065461032e906001600160a01b031681565b6040516001600160a01b0390911681526020016102a5565b34801561035257600080fd5b506102816103613660046121b2565b610931565b34801561037257600080fd5b506002545b6040519081526020016102a5565b34801561039157600080fd5b50610377600d5481565b3480156103a757600080fd5b50610377600c5481565b3480156103bd57600080fd5b506102816103cc3660046121cd565b610977565b3480156103dd57600080fd5b506102ce6103ec3660046120a4565b610a48565b3480156103fd57600080fd5b50604051601281526020016102a5565b34801561041957600080fd5b506102ce61042836600461211a565b610af2565b34801561043957600080fd5b506102ce610448366004612031565b601a6020526000908152604090205460ff1681565b34801561046957600080fd5b5060075461032e906001600160a01b031681565b34801561048957600080fd5b506102ce610498366004612031565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104c257600080fd5b506102816104d13660046121e6565b610b2e565b3480156104e257600080fd5b506010546102ce90610100900460ff1681565b34801561050157600080fd5b50610377610510366004612031565b6001600160a01b031660009081526020819052604090205490565b34801561053757600080fd5b50610281610b91565b34801561054c57600080fd5b5061028161055b3660046120e5565b610bc7565b34801561056c57600080fd5b50610281610c1c565b34801561058157600080fd5b506102ce610590366004612031565b60196020526000908152604090205460ff1681565b3480156105b157600080fd5b506005546001600160a01b031661032e565b3480156105cf57600080fd5b5060085461032e906001600160a01b031681565b3480156105ef57600080fd5b50610298610c76565b34801561060457600080fd5b50610281610613366004612031565b610c85565b34801561062457600080fd5b506102816106333660046120e5565b610cd1565b34801561064457600080fd5b506102ce61065336600461211a565b610d97565b34801561066457600080fd5b506102ce61067336600461211a565b610e30565b34801561068457600080fd5b506102816106933660046120e5565b610e3d565b3480156106a457600080fd5b506102816106b33660046121cd565b610ec6565b3480156106c457600080fd5b5061037760095481565b3480156106da57600080fd5b506102ce6106e93660046121cd565b610f85565b3480156106fa57600080fd5b5061037761070936600461206b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074057600080fd5b5060145460155460165461075392919083565b604080519384526020840192909252908201526060016102a5565b34801561077a57600080fd5b50610377600a5481565b34801561079057600080fd5b506010546102ce9062010000900460ff1681565b3480156107b057600080fd5b5060115460125460135461075392919083565b3480156107cf57600080fd5b506102816107de366004612146565b611031565b3480156107ef57600080fd5b506102816107fe366004612031565b611139565b34801561080f57600080fd5b50610377600b5481565b6005546001600160a01b0316331461084c5760405162461bcd60e51b815260040161084390612313565b60405180910390fd5b6015829055601681905561086081836123fe565b6014819055600d10156108855760405162461bcd60e51b8152600401610843906122ce565b5050565b6060600380546108989061246e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c49061246e565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b60006109283384846111d1565b50600192915050565b6005546001600160a01b0316331461095b5760405162461bcd60e51b815260040161084390612313565b60108054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146109a15760405162461bcd60e51b815260040161084390612313565b6103e8816109ae60025490565b6109b89190612438565b6109c29190612416565b6009556103e86109d160025490565b6109db9190612416565b6009541015610a455760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360448201526f206c6f776572207468616e20302e312560801b6064820152608401610843565b50565b6000610a558484846112f5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ada5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610843565b610ae785338584036111d1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610928918590610b299086906123fe565b6111d1565b6005546001600160a01b03163314610b585760405162461bcd60e51b815260040161084390612313565b60128290556013819055610b6c81836123fe565b6011819055600d10156108855760405162461bcd60e51b8152600401610843906122ce565b6005546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161084390612313565b610bc56000611a37565b565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161084390612313565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c465760405162461bcd60e51b815260040161084390612313565b6010805462ffff00191662010100179055610c624360026123fe565b600e55610c7142610e106123fe565b600f55565b6060600480546108989061246e565b6005546001600160a01b03163314610caf5760405162461bcd60e51b815260040161084390612313565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161084390612313565b6007546001600160a01b0383811691161415610d6f5760405162461bcd60e51b815260206004820152602d60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526c7061697241646472657373657360981b6064820152608401610843565b6001600160a01b0382166000908152601960205260409020805460ff19168215151790555050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e195760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610843565b610e2633858584036111d1565b5060019392505050565b60006109283384846112f5565b6005546001600160a01b03163314610e675760405162461bcd60e51b815260040161084390612313565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ef05760405162461bcd60e51b815260040161084390612313565b6103e881610efd60025490565b610f079190612438565b610f119190612416565b600b556064610f1f60025490565b610f299190612416565b600b541015610a455760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610843565b6005546000906001600160a01b03163314610fb25760405162461bcd60e51b815260040161084390612313565b620186a0610fbf60025490565b610fca906001612438565b610fd49190612416565b8210156110235760405162461bcd60e51b815260206004820152601960248201527f302e30303125203e204e6577205377617020616d6f756e742e000000000000006044820152606401610843565b50600a81905560015b919050565b6005546001600160a01b0316331461105b5760405162461bcd60e51b815260040161084390612313565b82811461109b5760405162461bcd60e51b815260206004820152600e60248201526d696e76616c69642076616c75657360901b6044820152606401610843565b60005b83811015611132578282828181106110b8576110b86124da565b90506020020160208101906110cd91906121b2565b601a60008787858181106110e3576110e36124da565b90506020020160208101906110f89190612031565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061112a816124a9565b91505061109e565b5050505050565b6005546001600160a01b031633146111635760405162461bcd60e51b815260040161084390612313565b6001600160a01b0381166111c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610843565b610a4581611a37565b6001600160a01b0383166112335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610843565b6001600160a01b0382166112945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610843565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152601a602052604090205460ff168061133457506001600160a01b0382166000908152601a602052604090205460ff165b156113815760405162461bcd60e51b815260206004820152601760248201527f6163636f756e7420697320626c61636b206c69737465640000000000000000006044820152606401610843565b6001600160a01b0383166113a75760405162461bcd60e51b815260040161084390612348565b6001600160a01b0382166113cd5760405162461bcd60e51b81526004016108439061228b565b806113e3576113de83836000611a89565b505050565b6005546001600160a01b0384811691161480159061140f57506005546001600160a01b03838116911614155b801561142357506001600160a01b03821615155b801561143a57506001600160a01b03821661dead14155b8015611449575060105460ff16155b1561174757601054610100900460ff166114e1576001600160a01b03831660009081526017602052604090205460ff168061149c57506001600160a01b03821660009081526017602052604090205460ff165b6114e15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610843565b6001600160a01b03831660009081526019602052604090205460ff16801561152257506001600160a01b03821660009081526018602052604090205460ff16155b15611606576009548111156115975760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610843565b600b546001600160a01b0383166000908152602081905260409020546115bd90836123fe565b11156116015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610843565b611747565b6001600160a01b03821660009081526019602052604090205460ff16801561164757506001600160a01b03831660009081526018602052604090205460ff16155b156116bd576009548111156116015760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610843565b6001600160a01b03821660009081526018602052604090205460ff1661174757600b546001600160a01b03831660009081526020819052604090205461170390836123fe565b11156117475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610843565b600a543060009081526020819052604090205410158015611770575060105462010000900460ff165b801561177f575060105460ff16155b80156117a457506001600160a01b03831660009081526019602052604090205460ff16155b80156117c957506001600160a01b03831660009081526017602052604090205460ff16155b80156117ee57506001600160a01b03821660009081526017602052604090205460ff16155b15611813576010805460ff19166001179055611808611bde565b6010805460ff191690555b6010546001600160a01b03841660009081526017602052604090205460ff9182161591168061185a57506001600160a01b03831660009081526017602052604090205460ff165b15611863575060005b60008115611a2c5743600e5411156118aa5761188b6064611885856063611d87565b90611d9a565b905080600c600082825461189f91906123fe565b90915550611a0e9050565b6001600160a01b03841660009081526019602052604090205460ff1680156118d3575060145415155b156119665742600f5411156118f25761188b6064611885856014611d87565b60145461190790606490611885908690611d87565b6014546016549192509061191b9083612438565b6119259190612416565b600d600082825461193691906123fe565b909155505060145460155461194b9083612438565b6119559190612416565b600c600082825461189f91906123fe565b6001600160a01b03851660009081526019602052604090205460ff16801561198f575060115415155b15611a0e576011546119a990606490611885908690611d87565b601154601254919250906119bd9083612438565b6119c79190612416565b600c60008282546119d891906123fe565b90915550506011546013546119ed9083612438565b6119f79190612416565b600d6000828254611a0891906123fe565b90915550505b8015611a2c57611a1f853083611a89565b611a298184612457565b92505b611132858585611a89565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611aaf5760405162461bcd60e51b815260040161084390612348565b6001600160a01b038216611ad55760405162461bcd60e51b81526004016108439061228b565b6001600160a01b03831660009081526020819052604090205481811015611b4d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610843565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b849084906123fe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000600c54600d54611c0291906123fe565b90506000821580611c11575081155b15611c1b57505050565b600a54611c29906014612438565b831115611c4157600a54611c3e906014612438565b92505b6000600283600d5486611c549190612438565b611c5e9190612416565b611c689190612416565b90506000611c768583611da6565b905047611c8282611db2565b6000611c8e4783611da6565b90506000611cab87611885600c5485611d8790919063ffffffff16565b90506000611cb98284612457565b6000600d819055600c5590508515801590611cd45750600081115b15611d2757611ce38682611f1b565b600d54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b505050505050505050505050565b6000611d938284612438565b9392505050565b6000611d938284612416565b6000611d938284612457565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de757611de76124da565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611e3b57600080fd5b505afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e73919061204e565b81600181518110611e8657611e866124da565b6001600160a01b039283166020918202929092010152600654611eac91309116846111d1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ee590859060009086903090429060040161238d565b600060405180830381600087803b158015611eff57600080fd5b505af1158015611f13573d6000803e3d6000fd5b505050505050565b600654611f339030906001600160a01b0316846111d1565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611f9c57600080fd5b505af1158015611fb0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111329190612208565b60008083601f840112611fe757600080fd5b50813567ffffffffffffffff811115611fff57600080fd5b6020830191508360208260051b850101111561201a57600080fd5b9250929050565b8035801515811461102c57600080fd5b60006020828403121561204357600080fd5b8135611d93816124f0565b60006020828403121561206057600080fd5b8151611d93816124f0565b6000806040838503121561207e57600080fd5b8235612089816124f0565b91506020830135612099816124f0565b809150509250929050565b6000806000606084860312156120b957600080fd5b83356120c4816124f0565b925060208401356120d4816124f0565b929592945050506040919091013590565b600080604083850312156120f857600080fd5b8235612103816124f0565b915061211160208401612021565b90509250929050565b6000806040838503121561212d57600080fd5b8235612138816124f0565b946020939093013593505050565b6000806000806040858703121561215c57600080fd5b843567ffffffffffffffff8082111561217457600080fd5b61218088838901611fd5565b9096509450602087013591508082111561219957600080fd5b506121a687828801611fd5565b95989497509550505050565b6000602082840312156121c457600080fd5b611d9382612021565b6000602082840312156121df57600080fd5b5035919050565b600080604083850312156121f957600080fd5b50508035926020909101359150565b60008060006060848603121561221d57600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b8181101561226357858101830151858201604001528201612247565b81811115612275576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f63616e206e6f742073657420746f74616c466565732067726561746572207468604082015264616e20313360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123dd5784516001600160a01b0316835293830193918301916001016123b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612411576124116124c4565b500190565b60008261243357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612452576124526124c4565b500290565b600082821015612469576124696124c4565b500390565b600181811c9082168061248257607f821691505b602082108114156124a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124bd576124bd6124c4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610a4557600080fdfea2646970667358221220e8f3ed034a89219aae7b595bd0bf366c2e65226bfd2821efc9df24442d54bac764736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461076e578063e319c2ce14610784578063e4748b9e146107a4578063effd9910146107c3578063f2fde38b146107e3578063f8b45b051461080357600080fd5b8063c18bc19514610698578063c8c8ebe4146106b8578063d257b34f146106ce578063dd62ed3e146106ee578063e0f3ccf51461073457600080fd5b8063969e24d8116100fd578063969e24d8146105f85780639a7a23d614610618578063a457c2d714610638578063a9059cbb14610658578063c02466681461067857600080fd5b80638a8c523c146105605780638b16cf98146105755780638da5cb5b146105a557806395363514146105c357806395d89b41146105e357600080fd5b806323b872dd116101d25780634fbee193116101965780634fbee1931461047d57806366ca9b83146104b65780636e9087db146104d657806370a08231146104f5578063715018a61461052b5780637571336a1461054057600080fd5b806323b872dd146103d1578063313ce567146103f1578063395093511461040d5780633fa1410f1461042d57806349bd5a5e1461045d57600080fd5b8063171b917111610219578063171b91711461034657806318160ddd146103665780631a8145bb146103855780631f3fed8f1461039b578063203e727e146103b157600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046121e6565b610819565b005b34801561028f57600080fd5b50610298610889565b6040516102a59190612236565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c936600461211a565b61091b565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004612031565b60186020526000908152604090205460ff1681565b34801561031a57600080fd5b5060065461032e906001600160a01b031681565b6040516001600160a01b0390911681526020016102a5565b34801561035257600080fd5b506102816103613660046121b2565b610931565b34801561037257600080fd5b506002545b6040519081526020016102a5565b34801561039157600080fd5b50610377600d5481565b3480156103a757600080fd5b50610377600c5481565b3480156103bd57600080fd5b506102816103cc3660046121cd565b610977565b3480156103dd57600080fd5b506102ce6103ec3660046120a4565b610a48565b3480156103fd57600080fd5b50604051601281526020016102a5565b34801561041957600080fd5b506102ce61042836600461211a565b610af2565b34801561043957600080fd5b506102ce610448366004612031565b601a6020526000908152604090205460ff1681565b34801561046957600080fd5b5060075461032e906001600160a01b031681565b34801561048957600080fd5b506102ce610498366004612031565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104c257600080fd5b506102816104d13660046121e6565b610b2e565b3480156104e257600080fd5b506010546102ce90610100900460ff1681565b34801561050157600080fd5b50610377610510366004612031565b6001600160a01b031660009081526020819052604090205490565b34801561053757600080fd5b50610281610b91565b34801561054c57600080fd5b5061028161055b3660046120e5565b610bc7565b34801561056c57600080fd5b50610281610c1c565b34801561058157600080fd5b506102ce610590366004612031565b60196020526000908152604090205460ff1681565b3480156105b157600080fd5b506005546001600160a01b031661032e565b3480156105cf57600080fd5b5060085461032e906001600160a01b031681565b3480156105ef57600080fd5b50610298610c76565b34801561060457600080fd5b50610281610613366004612031565b610c85565b34801561062457600080fd5b506102816106333660046120e5565b610cd1565b34801561064457600080fd5b506102ce61065336600461211a565b610d97565b34801561066457600080fd5b506102ce61067336600461211a565b610e30565b34801561068457600080fd5b506102816106933660046120e5565b610e3d565b3480156106a457600080fd5b506102816106b33660046121cd565b610ec6565b3480156106c457600080fd5b5061037760095481565b3480156106da57600080fd5b506102ce6106e93660046121cd565b610f85565b3480156106fa57600080fd5b5061037761070936600461206b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074057600080fd5b5060145460155460165461075392919083565b604080519384526020840192909252908201526060016102a5565b34801561077a57600080fd5b50610377600a5481565b34801561079057600080fd5b506010546102ce9062010000900460ff1681565b3480156107b057600080fd5b5060115460125460135461075392919083565b3480156107cf57600080fd5b506102816107de366004612146565b611031565b3480156107ef57600080fd5b506102816107fe366004612031565b611139565b34801561080f57600080fd5b50610377600b5481565b6005546001600160a01b0316331461084c5760405162461bcd60e51b815260040161084390612313565b60405180910390fd5b6015829055601681905561086081836123fe565b6014819055600d10156108855760405162461bcd60e51b8152600401610843906122ce565b5050565b6060600380546108989061246e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c49061246e565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b60006109283384846111d1565b50600192915050565b6005546001600160a01b0316331461095b5760405162461bcd60e51b815260040161084390612313565b60108054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146109a15760405162461bcd60e51b815260040161084390612313565b6103e8816109ae60025490565b6109b89190612438565b6109c29190612416565b6009556103e86109d160025490565b6109db9190612416565b6009541015610a455760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360448201526f206c6f776572207468616e20302e312560801b6064820152608401610843565b50565b6000610a558484846112f5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ada5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610843565b610ae785338584036111d1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610928918590610b299086906123fe565b6111d1565b6005546001600160a01b03163314610b585760405162461bcd60e51b815260040161084390612313565b60128290556013819055610b6c81836123fe565b6011819055600d10156108855760405162461bcd60e51b8152600401610843906122ce565b6005546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161084390612313565b610bc56000611a37565b565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161084390612313565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c465760405162461bcd60e51b815260040161084390612313565b6010805462ffff00191662010100179055610c624360026123fe565b600e55610c7142610e106123fe565b600f55565b6060600480546108989061246e565b6005546001600160a01b03163314610caf5760405162461bcd60e51b815260040161084390612313565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161084390612313565b6007546001600160a01b0383811691161415610d6f5760405162461bcd60e51b815260206004820152602d60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526c7061697241646472657373657360981b6064820152608401610843565b6001600160a01b0382166000908152601960205260409020805460ff19168215151790555050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e195760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610843565b610e2633858584036111d1565b5060019392505050565b60006109283384846112f5565b6005546001600160a01b03163314610e675760405162461bcd60e51b815260040161084390612313565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ef05760405162461bcd60e51b815260040161084390612313565b6103e881610efd60025490565b610f079190612438565b610f119190612416565b600b556064610f1f60025490565b610f299190612416565b600b541015610a455760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610843565b6005546000906001600160a01b03163314610fb25760405162461bcd60e51b815260040161084390612313565b620186a0610fbf60025490565b610fca906001612438565b610fd49190612416565b8210156110235760405162461bcd60e51b815260206004820152601960248201527f302e30303125203e204e6577205377617020616d6f756e742e000000000000006044820152606401610843565b50600a81905560015b919050565b6005546001600160a01b0316331461105b5760405162461bcd60e51b815260040161084390612313565b82811461109b5760405162461bcd60e51b815260206004820152600e60248201526d696e76616c69642076616c75657360901b6044820152606401610843565b60005b83811015611132578282828181106110b8576110b86124da565b90506020020160208101906110cd91906121b2565b601a60008787858181106110e3576110e36124da565b90506020020160208101906110f89190612031565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061112a816124a9565b91505061109e565b5050505050565b6005546001600160a01b031633146111635760405162461bcd60e51b815260040161084390612313565b6001600160a01b0381166111c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610843565b610a4581611a37565b6001600160a01b0383166112335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610843565b6001600160a01b0382166112945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610843565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152601a602052604090205460ff168061133457506001600160a01b0382166000908152601a602052604090205460ff165b156113815760405162461bcd60e51b815260206004820152601760248201527f6163636f756e7420697320626c61636b206c69737465640000000000000000006044820152606401610843565b6001600160a01b0383166113a75760405162461bcd60e51b815260040161084390612348565b6001600160a01b0382166113cd5760405162461bcd60e51b81526004016108439061228b565b806113e3576113de83836000611a89565b505050565b6005546001600160a01b0384811691161480159061140f57506005546001600160a01b03838116911614155b801561142357506001600160a01b03821615155b801561143a57506001600160a01b03821661dead14155b8015611449575060105460ff16155b1561174757601054610100900460ff166114e1576001600160a01b03831660009081526017602052604090205460ff168061149c57506001600160a01b03821660009081526017602052604090205460ff165b6114e15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610843565b6001600160a01b03831660009081526019602052604090205460ff16801561152257506001600160a01b03821660009081526018602052604090205460ff16155b15611606576009548111156115975760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610843565b600b546001600160a01b0383166000908152602081905260409020546115bd90836123fe565b11156116015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610843565b611747565b6001600160a01b03821660009081526019602052604090205460ff16801561164757506001600160a01b03831660009081526018602052604090205460ff16155b156116bd576009548111156116015760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610843565b6001600160a01b03821660009081526018602052604090205460ff1661174757600b546001600160a01b03831660009081526020819052604090205461170390836123fe565b11156117475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610843565b600a543060009081526020819052604090205410158015611770575060105462010000900460ff165b801561177f575060105460ff16155b80156117a457506001600160a01b03831660009081526019602052604090205460ff16155b80156117c957506001600160a01b03831660009081526017602052604090205460ff16155b80156117ee57506001600160a01b03821660009081526017602052604090205460ff16155b15611813576010805460ff19166001179055611808611bde565b6010805460ff191690555b6010546001600160a01b03841660009081526017602052604090205460ff9182161591168061185a57506001600160a01b03831660009081526017602052604090205460ff165b15611863575060005b60008115611a2c5743600e5411156118aa5761188b6064611885856063611d87565b90611d9a565b905080600c600082825461189f91906123fe565b90915550611a0e9050565b6001600160a01b03841660009081526019602052604090205460ff1680156118d3575060145415155b156119665742600f5411156118f25761188b6064611885856014611d87565b60145461190790606490611885908690611d87565b6014546016549192509061191b9083612438565b6119259190612416565b600d600082825461193691906123fe565b909155505060145460155461194b9083612438565b6119559190612416565b600c600082825461189f91906123fe565b6001600160a01b03851660009081526019602052604090205460ff16801561198f575060115415155b15611a0e576011546119a990606490611885908690611d87565b601154601254919250906119bd9083612438565b6119c79190612416565b600c60008282546119d891906123fe565b90915550506011546013546119ed9083612438565b6119f79190612416565b600d6000828254611a0891906123fe565b90915550505b8015611a2c57611a1f853083611a89565b611a298184612457565b92505b611132858585611a89565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611aaf5760405162461bcd60e51b815260040161084390612348565b6001600160a01b038216611ad55760405162461bcd60e51b81526004016108439061228b565b6001600160a01b03831660009081526020819052604090205481811015611b4d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610843565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b849084906123fe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000600c54600d54611c0291906123fe565b90506000821580611c11575081155b15611c1b57505050565b600a54611c29906014612438565b831115611c4157600a54611c3e906014612438565b92505b6000600283600d5486611c549190612438565b611c5e9190612416565b611c689190612416565b90506000611c768583611da6565b905047611c8282611db2565b6000611c8e4783611da6565b90506000611cab87611885600c5485611d8790919063ffffffff16565b90506000611cb98284612457565b6000600d819055600c5590508515801590611cd45750600081115b15611d2757611ce38682611f1b565b600d54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b505050505050505050505050565b6000611d938284612438565b9392505050565b6000611d938284612416565b6000611d938284612457565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de757611de76124da565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611e3b57600080fd5b505afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e73919061204e565b81600181518110611e8657611e866124da565b6001600160a01b039283166020918202929092010152600654611eac91309116846111d1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ee590859060009086903090429060040161238d565b600060405180830381600087803b158015611eff57600080fd5b505af1158015611f13573d6000803e3d6000fd5b505050505050565b600654611f339030906001600160a01b0316846111d1565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611f9c57600080fd5b505af1158015611fb0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111329190612208565b60008083601f840112611fe757600080fd5b50813567ffffffffffffffff811115611fff57600080fd5b6020830191508360208260051b850101111561201a57600080fd5b9250929050565b8035801515811461102c57600080fd5b60006020828403121561204357600080fd5b8135611d93816124f0565b60006020828403121561206057600080fd5b8151611d93816124f0565b6000806040838503121561207e57600080fd5b8235612089816124f0565b91506020830135612099816124f0565b809150509250929050565b6000806000606084860312156120b957600080fd5b83356120c4816124f0565b925060208401356120d4816124f0565b929592945050506040919091013590565b600080604083850312156120f857600080fd5b8235612103816124f0565b915061211160208401612021565b90509250929050565b6000806040838503121561212d57600080fd5b8235612138816124f0565b946020939093013593505050565b6000806000806040858703121561215c57600080fd5b843567ffffffffffffffff8082111561217457600080fd5b61218088838901611fd5565b9096509450602087013591508082111561219957600080fd5b506121a687828801611fd5565b95989497509550505050565b6000602082840312156121c457600080fd5b611d9382612021565b6000602082840312156121df57600080fd5b5035919050565b600080604083850312156121f957600080fd5b50508035926020909101359150565b60008060006060848603121561221d57600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b8181101561226357858101830151858201604001528201612247565b81811115612275576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f63616e206e6f742073657420746f74616c466565732067726561746572207468604082015264616e20313360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123dd5784516001600160a01b0316835293830193918301916001016123b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612411576124116124c4565b500190565b60008261243357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612452576124526124c4565b500290565b600082821015612469576124696124c4565b500390565b600181811c9082168061248257607f821691505b602082108114156124a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124bd576124bd6124c4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610a4557600080fdfea2646970667358221220e8f3ed034a89219aae7b595bd0bf366c2e65226bfd2821efc9df24442d54bac764736f6c63430008070033
Deployed Bytecode Sourcemap
25943:13228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30999:383;;;;;;;;;;-1:-1:-1;30999:383:0;;;;;:::i;:::-;;:::i;:::-;;7828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9995:169;;;;;;;;;;-1:-1:-1;9995:169:0;;;;;:::i;:::-;;:::i;:::-;;;5457:14:1;;5450:22;5432:41;;5420:2;5405:18;9995:169:0;5292:187:1;26787:63:0;;;;;;;;;;-1:-1:-1;26787:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26019:42;;;;;;;;;;-1:-1:-1;26019:42:0;;;;-1:-1:-1;;;;;26019:42:0;;;;;;-1:-1:-1;;;;;4636:32:1;;;4618:51;;4606:2;4591:18;26019:42:0;4472:203:1;30515:90:0;;;;;;;;;;-1:-1:-1;30515:90:0;;;;;:::i;:::-;;:::i;8948:108::-;;;;;;;;;;-1:-1:-1;9036:12:0;;8948:108;;;14308:25:1;;;14296:2;14281:18;8948:108:0;14162:177:1;26291:33:0;;;;;;;;;;;;;;;;26251;;;;;;;;;;;;;;;;29728:268;;;;;;;;;;-1:-1:-1;29728:268:0;;;;;:::i;:::-;;:::i;10646:492::-;;;;;;;;;;-1:-1:-1;10646:492:0;;;;;:::i;:::-;;:::i;8790:93::-;;;;;;;;;;-1:-1:-1;8790:93:0;;8873:2;15795:36:1;;15783:2;15768:18;8790:93:0;15653:184:1;11547:215:0;;;;;;;;;;-1:-1:-1;11547:215:0;;;;;:::i;:::-;;:::i;26909:39::-;;;;;;;;;;-1:-1:-1;26909:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26070:28;;;;;;;;;;-1:-1:-1;26070:28:0;;;;-1:-1:-1;;;;;26070:28:0;;;32183:126;;;;;;;;;;-1:-1:-1;32183:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;32273:28:0;32249:4;32273:28;;;:19;:28;;;;;;;;;32183:126;30613:378;;;;;;;;;;-1:-1:-1;30613:378:0;;;;;:::i;:::-;;:::i;26444:29::-;;;;;;;;;;-1:-1:-1;26444:29:0;;;;;;;;;;;9119:127;;;;;;;;;;-1:-1:-1;9119:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9220:18:0;9193:7;9220:18;;;;;;;;;;;;9119:127;1953:103;;;;;;;;;;;;;:::i;30252:167::-;;;;;;;;;;-1:-1:-1;30252:167:0;;;;;:::i;:::-;;:::i;28822:202::-;;;;;;;;;;;;;:::i;26857:45::-;;;;;;;;;;-1:-1:-1;26857:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;1302:87;;;;;;;;;;-1:-1:-1;1375:6:0;;-1:-1:-1;;;;;1375:6:0;1302:87;;26105:22;;;;;;;;;;-1:-1:-1;26105:22:0;;;;-1:-1:-1;;;;;26105:22:0;;;8047:104;;;;;;;;;;;;;:::i;32006:169::-;;;;;;;;;;-1:-1:-1;32006:169:0;;;;;:::i;:::-;;:::i;31580:292::-;;;;;;;;;;-1:-1:-1;31580:292:0;;;;;:::i;:::-;;:::i;12265:413::-;;;;;;;;;;-1:-1:-1;12265:413:0;;;;;:::i;:::-;;:::i;9459:175::-;;;;;;;;;;-1:-1:-1;9459:175:0;;;;;:::i;:::-;;:::i;31390:182::-;;;;;;;;;;-1:-1:-1;31390:182:0;;;;;:::i;:::-;;:::i;30006:234::-;;;;;;;;;;-1:-1:-1;30006:234:0;;;;;:::i;:::-;;:::i;26136:35::-;;;;;;;;;;;;;;;;29096:317;;;;;;;;;;-1:-1:-1;29096:317:0;;;;;:::i;:::-;;:::i;9697:151::-;;;;;;;;;;-1:-1:-1;9697:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9813:18:0;;;9786:7;9813:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9697:151;26687:28;;;;;;;;;;-1:-1:-1;26687:28:0;;;;;;;;;;;;;;;;15531:25:1;;;15587:2;15572:18;;15565:34;;;;15615:18;;;15608:34;15519:2;15504:18;26687:28:0;15329:319:1;26178:33:0;;;;;;;;;;;;;;;;26480:26;;;;;;;;;;-1:-1:-1;26480:26:0;;;;;;;;;;;26653:27;;;;;;;;;;-1:-1:-1;26653:27:0;;;;;;;;;;;;29427:289;;;;;;;;;;-1:-1:-1;29427:289:0;;;;;:::i;:::-;;:::i;2211:201::-;;;;;;;;;;-1:-1:-1;2211:201:0;;;;;:::i;:::-;;:::i;26218:24::-;;;;;;;;;;;;;;;;30999:383;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;;;;;;;;;31130:22;:41;;;31182:22;:41;;;31255:35:::1;31207:16:::0;31155;31255:35:::1;:::i;:::-;31234:8;:56:::0;;;31331:2:::1;-1:-1:-1::0;31309:24:0::1;31301:73;;;;-1:-1:-1::0;;;31301:73:0::1;;;;;;;:::i;:::-;30999:383:::0;;:::o;7828:100::-;7882:13;7915:5;7908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7828:100;:::o;9995:169::-;10078:4;10095:39;752:10;10118:7;10127:6;10095:8;:39::i;:::-;-1:-1:-1;10152:4:0;9995:169;;;;:::o;30515:90::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;30581:6:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30581:16:0;;::::1;::::0;;;::::1;::::0;;30515:90::o;29728:268::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;29866:4:::1;29849:13;29833;9036:12:::0;;;8948:108;29833:13:::1;:29;;;;:::i;:::-;29832:38;;;;:::i;:::-;29809:20;:61:::0;29930:4:::1;29914:13;9036:12:::0;;;8948:108;29914:13:::1;:20;;;;:::i;:::-;29889;;:46;;29881:107;;;::::0;-1:-1:-1;;;29881:107:0;;7279:2:1;29881:107:0::1;::::0;::::1;7261:21:1::0;7318:2;7298:18;;;7291:30;7357:34;7337:18;;;7330:62;-1:-1:-1;;;7408:18:1;;;7401:46;7464:19;;29881:107:0::1;7077:412:1::0;29881:107:0::1;29728:268:::0;:::o;10646:492::-;10786:4;10803:36;10813:6;10821:9;10832:6;10803:9;:36::i;:::-;-1:-1:-1;;;;;10879:19:0;;10852:24;10879:19;;;:11;:19;;;;;;;;752:10;10879:33;;;;;;;;10931:26;;;;10923:79;;;;-1:-1:-1;;;10923:79:0;;12029:2:1;10923:79:0;;;12011:21:1;12068:2;12048:18;;;12041:30;12107:34;12087:18;;;12080:62;-1:-1:-1;;;12158:18:1;;;12151:38;12206:19;;10923:79:0;11827:404:1;10923:79:0;11038:57;11047:6;752:10;11088:6;11069:16;:25;11038:8;:57::i;:::-;-1:-1:-1;11126:4:0;;10646:492;-1:-1:-1;;;;10646:492:0:o;11547:215::-;752:10;11635:4;11684:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11684:34:0;;;;;;;;;;11635:4;;11652:80;;11675:7;;11684:47;;11721:10;;11684:47;:::i;:::-;11652:8;:80::i;30613:378::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;30743:21;:40;;;30794:21;:40;;;30865:35:::1;30818:16:::0;30767;30865:35:::1;:::i;:::-;30845:7;:55:::0;;;30940:2:::1;-1:-1:-1::0;30919:23:0::1;30911:72;;;;-1:-1:-1::0;;;30911:72:0::1;;;;;;;:::i;1953:103::-:0;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;2018:30:::1;2045:1;2018:18;:30::i;:::-;1953:103::o:0;30252:167::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30365:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;30365:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30252:167::o;28822:202::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;28877:9:::1;:16:::0;;-1:-1:-1;;28904:13:0;;;;;28948:16:::1;:12;28904:6;28948:16;:::i;:::-;28928:17;:36:::0;28994:22:::1;:15;29012:4;28994:22;:::i;:::-;28975:16;:41:::0;28822:202::o;8047:104::-;8103:13;8136:7;8129:14;;;;;:::i;32006:169::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;32132:7:::1;:35:::0;;-1:-1:-1;;;;;;32132:35:0::1;-1:-1:-1::0;;;;;32132:35:0;;;::::1;::::0;;;::::1;::::0;;32006:169::o;31580:292::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;31724:13:::1;::::0;-1:-1:-1;;;;;31716:21:0;;::::1;31724:13:::0;::::1;31716:21;;31694:116;;;::::0;-1:-1:-1;;;31694:116:0;;7696:2:1;31694:116:0::1;::::0;::::1;7678:21:1::0;7735:2;7715:18;;;7708:30;7774:34;7754:18;;;7747:62;-1:-1:-1;;;7825:18:1;;;7818:43;7878:19;;31694:116:0::1;7494:409:1::0;31694:116:0::1;-1:-1:-1::0;;;;;31963:19:0;;;;;;:13;:19;;;;;:27;;-1:-1:-1;;31963:27:0;;;;;;;30999:383;;:::o;12265:413::-;752:10;12358:4;12402:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12402:34:0;;;;;;;;;;12455:35;;;;12447:85;;;;-1:-1:-1;;;12447:85:0;;13958:2:1;12447:85:0;;;13940:21:1;13997:2;13977:18;;;13970:30;14036:34;14016:18;;;14009:62;-1:-1:-1;;;14087:18:1;;;14080:35;14132:19;;12447:85:0;13756:401:1;12447:85:0;12568:67;752:10;12591:7;12619:15;12600:16;:34;12568:8;:67::i;:::-;-1:-1:-1;12666:4:0;;12265:413;-1:-1:-1;;;12265:413:0:o;9459:175::-;9545:4;9562:42;752:10;9586:9;9597:6;9562:9;:42::i;31390:182::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31475:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31475:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31530:34;;5432:41:1;;;31530:34:0::1;::::0;5405:18:1;31530:34:0::1;;;;;;;31390:182:::0;;:::o;30006:234::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;30136:4:::1;30119:13;30103;9036:12:::0;;;8948:108;30103:13:::1;:29;;;;:::i;:::-;30102:38;;;;:::i;:::-;30090:9;:50:::0;30189:3:::1;30173:13;9036:12:::0;;;8948:108;30173:13:::1;:19;;;;:::i;:::-;30159:9;;:34;;30151:81;;;::::0;-1:-1:-1;;;30151:81:0;;9271:2:1;30151:81:0::1;::::0;::::1;9253:21:1::0;9310:2;9290:18;;;9283:30;9349:34;9329:18;;;9322:62;-1:-1:-1;;;9400:18:1;;;9393:32;9442:19;;30151:81:0::1;9069:398:1::0;29096:317:0;1375:6;;29204:4;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;29283:6:::1;29262:13;9036:12:::0;;;8948:108;29262:13:::1;:17;::::0;29278:1:::1;29262:17;:::i;:::-;29261:28;;;;:::i;:::-;29248:9;:41;;29226:116;;;::::0;-1:-1:-1;;;29226:116:0;;11675:2:1;29226:116:0::1;::::0;::::1;11657:21:1::0;11714:2;11694:18;;;11687:30;11753:27;11733:18;;;11726:55;11798:18;;29226:116:0::1;11473:349:1::0;29226:116:0::1;-1:-1:-1::0;29353:18:0::1;:30:::0;;;29401:4:::1;1593:1;29096:317:::0;;;:::o;29427:289::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;29538:32;;::::1;29530:58;;;::::0;-1:-1:-1;;;29530:58:0;;10910:2:1;29530:58:0::1;::::0;::::1;10892:21:1::0;10949:2;10929:18;;;10922:30;-1:-1:-1;;;10968:18:1;;;10961:44;11022:18;;29530:58:0::1;10708:338:1::0;29530:58:0::1;29603:9;29599:110;29617:18:::0;;::::1;29599:110;;;29688:6;;29695:1;29688:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;29665:7;:20;29673:8;;29682:1;29673:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29665:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29665:20:0;:32;;-1:-1:-1;;29665:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29636:3;::::1;::::0;::::1;:::i;:::-;;;;29599:110;;;;29427:289:::0;;;;:::o;2211:201::-;1375:6;;-1:-1:-1;;;;;1375:6:0;752:10;1522:23;1514:68;;;;-1:-1:-1;;;1514:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2300:22:0;::::1;2292:73;;;::::0;-1:-1:-1;;;2292:73:0;;8461:2:1;2292:73:0::1;::::0;::::1;8443:21:1::0;8500:2;8480:18;;;8473:30;8539:34;8519:18;;;8512:62;-1:-1:-1;;;8590:18:1;;;8583:36;8636:19;;2292:73:0::1;8259:402:1::0;2292:73:0::1;2376:28;2395:8;2376:18;:28::i;15949:380::-:0;-1:-1:-1;;;;;16085:19:0;;16077:68;;;;-1:-1:-1;;;16077:68:0;;13205:2:1;16077:68:0;;;13187:21:1;13244:2;13224:18;;;13217:30;13283:34;13263:18;;;13256:62;-1:-1:-1;;;13334:18:1;;;13327:34;13378:19;;16077:68:0;13003:400:1;16077:68:0;-1:-1:-1;;;;;16164:21:0;;16156:68;;;;-1:-1:-1;;;16156:68:0;;8868:2:1;16156:68:0;;;8850:21:1;8907:2;8887:18;;;8880:30;8946:34;8926:18;;;8919:62;-1:-1:-1;;;8997:18:1;;;8990:32;9039:19;;16156:68:0;8666:398:1;16156:68:0;-1:-1:-1;;;;;16237:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16289:32;;14308:25:1;;;16289:32:0;;14281:18:1;16289:32:0;;;;;;;15949:380;;;:::o;32317:4146::-;-1:-1:-1;;;;;32451:13:0;;;;;;:7;:13;;;;;;;;;:28;;-1:-1:-1;;;;;;32468:11:0;;;;;;:7;:11;;;;;;;;32451:28;32449:31;32441:67;;;;-1:-1:-1;;;32441:67:0;;6927:2:1;32441:67:0;;;6909:21:1;6966:2;6946:18;;;6939:30;7005:25;6985:18;;;6978:53;7048:18;;32441:67:0;6725:347:1;32441:67:0;-1:-1:-1;;;;;32527:18:0;;32519:68;;;;-1:-1:-1;;;32519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32606:16:0;;32598:64;;;;-1:-1:-1;;;32598:64:0;;;;;;;:::i;:::-;32679:11;32675:93;;32707:28;32723:4;32729:2;32733:1;32707:15;:28::i;:::-;32317:4146;;;:::o;32675:93::-;1375:6;;-1:-1:-1;;;;;32802:15:0;;;1375:6;;32802:15;;;;:49;;-1:-1:-1;1375:6:0;;-1:-1:-1;;;;;32838:13:0;;;1375:6;;32838:13;;32802:49;:86;;;;-1:-1:-1;;;;;;32872:16:0;;;;32802:86;:128;;;;-1:-1:-1;;;;;;32909:21:0;;32923:6;32909:21;;32802:128;:158;;;;-1:-1:-1;32952:8:0;;;;32951:9;32802:158;32780:1620;;;33000:9;;;;;;;32995:219;;-1:-1:-1;;;;;33068:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33097:23:0;;;;;;:19;:23;;;;;;;;33068:52;33034:160;;;;-1:-1:-1;;;33034:160:0;;8110:2:1;33034:160:0;;;8092:21:1;8149:2;8129:18;;;8122:30;-1:-1:-1;;;8168:18:1;;;8161:52;8230:18;;33034:160:0;7908:346:1;33034:160:0;-1:-1:-1;;;;;33288:19:0;;;;;;:13;:19;;;;;;;;:80;;;;-1:-1:-1;;;;;;33333:35:0;;;;;;:31;:35;;;;;;;;33332:36;33288:80;33262:1123;;;33455:20;;33445:6;:30;;33411:169;;;;-1:-1:-1;;;33411:169:0;;11253:2:1;33411:169:0;;;11235:21:1;11292:2;11272:18;;;11265:30;11331:34;11311:18;;;11304:62;-1:-1:-1;;;11382:18:1;;;11375:51;11443:19;;33411:169:0;11051:417:1;33411:169:0;33663:9;;-1:-1:-1;;;;;9220:18:0;;9193:7;9220:18;;;;;;;;;;;33637:22;;:6;:22;:::i;:::-;:35;;33603:140;;;;-1:-1:-1;;;33603:140:0;;13610:2:1;33603:140:0;;;13592:21:1;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;33603:140:0;13408:343:1;33603:140:0;33262:1123;;;-1:-1:-1;;;;;33841:17:0;;;;;;:13;:17;;;;;;;;:80;;;;-1:-1:-1;;;;;;33884:37:0;;;;;;:31;:37;;;;;;;;33883:38;33841:80;33815:570;;;34008:20;;33998:6;:30;;33964:170;;;;-1:-1:-1;;;33964:170:0;;10487:2:1;33964:170:0;;;10469:21:1;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;-1:-1:-1;;;10616:18:1;;;10609:52;10678:19;;33964:170:0;10285:418:1;33815:570:0;-1:-1:-1;;;;;34165:35:0;;;;;;:31;:35;;;;;;;;34160:225;;34285:9;;-1:-1:-1;;;;;9220:18:0;;9193:7;9220:18;;;;;;;;;;;34259:22;;:6;:22;:::i;:::-;:35;;34225:140;;;;-1:-1:-1;;;34225:140:0;;13610:2:1;34225:140:0;;;13592:21:1;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;34225:140:0;13408:343:1;34225:140:0;34461:18;;34451:4;9193:7;9220:18;;;;;;;;;;;34433:46;;34432:71;;;;-1:-1:-1;34497:6:0;;;;;;;34432:71;:97;;;;-1:-1:-1;34521:8:0;;;;34520:9;34432:97;:134;;;;-1:-1:-1;;;;;;34547:19:0;;;;;;:13;:19;;;;;;;;34546:20;34432:134;:177;;;;-1:-1:-1;;;;;;34584:25:0;;;;;;:19;:25;;;;;;;;34583:26;34432:177;:218;;;;-1:-1:-1;;;;;;34627:23:0;;;;;;:19;:23;;;;;;;;34626:24;34432:218;34414:346;;;34677:8;:15;;-1:-1:-1;;34677:15:0;34688:4;34677:15;;;34707:10;:8;:10::i;:::-;34732:8;:16;;-1:-1:-1;;34732:16:0;;;34414:346;34788:8;;-1:-1:-1;;;;;34898:25:0;;34772:12;34898:25;;;:19;:25;;;;;;34788:8;;;;34787:9;;34898:25;;:52;;-1:-1:-1;;;;;;34927:23:0;;;;;;:19;:23;;;;;;;;34898:52;34894:100;;;-1:-1:-1;34977:5:0;34894:100;35006:12;35111:7;35107:1303;;;35158:12;35138:17;;:32;35135:1122;;;35226:23;35245:3;35226:14;:6;35237:2;35226:10;:14::i;:::-;:18;;:23::i;:::-;35219:30;;35290:4;35268:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;35135:1122:0;;-1:-1:-1;35135:1122:0;;-1:-1:-1;;;;;35359:17:0;;;;;;:13;:17;;;;;;;;:43;;;;-1:-1:-1;35380:8:0;:18;:22;;35359:43;35355:902;;;35445:15;35426:16;;:34;35423:447;;;35491:23;35510:3;35491:14;:6;35502:2;35491:10;:14::i;35423:447::-;35628:8;:18;35617:39;;35652:3;;35617:30;;:6;;:10;:30::i;:39::-;35735:8;:18;35709:22;;35610:46;;-1:-1:-1;35735:18:0;35702:29;;35610:46;35702:29;:::i;:::-;35701:52;;;;:::i;:::-;35679:18;;:74;;;;;;;:::i;:::-;;;;-1:-1:-1;;35832:8:0;:18;35806:22;;35799:29;;:4;:29;:::i;:::-;35798:52;;;;:::i;:::-;35776:18;;:74;;;;;;;:::i;35355:902::-;-1:-1:-1;;;;;35931:19:0;;;;;;:13;:19;;;;;;;;:44;;;;-1:-1:-1;35954:7:0;:17;:21;;35931:44;35927:330;;;36014:7;:17;36003:38;;36037:3;;36003:29;;:6;;:10;:29::i;:38::-;36115:7;:17;36090:21;;35996:45;;-1:-1:-1;36115:17:0;36083:28;;35996:45;36083:28;:::i;:::-;36082:50;;;;:::i;:::-;36060:18;;:72;;;;;;;:::i;:::-;;;;-1:-1:-1;;36206:7:0;:17;36181:21;;36174:28;;:4;:28;:::i;:::-;36173:50;;;;:::i;:::-;36151:18;;:72;;;;;;;:::i;:::-;;;;-1:-1:-1;;35927:330:0;36277:8;;36273:124;;36306:42;36322:4;36336;36343;36306:15;:42::i;:::-;36367:14;36377:4;36367:14;;:::i;:::-;;;36273:124;36422:33;36438:4;36444:2;36448:6;36422:15;:33::i;2572:191::-;2665:6;;;-1:-1:-1;;;;;2682:17:0;;;-1:-1:-1;;;;;;2682:17:0;;;;;;;2715:40;;2665:6;;;2682:17;2665:6;;2715:40;;2646:16;;2715:40;2635:128;2572:191;:::o;13168:733::-;-1:-1:-1;;;;;13308:20:0;;13300:70;;;;-1:-1:-1;;;13300:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13389:23:0;;13381:71;;;;-1:-1:-1;;;13381:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13549:17:0;;13525:21;13549:17;;;;;;;;;;;13585:23;;;;13577:74;;;;-1:-1:-1;;;13577:74:0;;9674:2:1;13577:74:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:34;9732:18;;;9725:62;-1:-1:-1;;;9803:18:1;;;9796:36;9849:19;;13577:74:0;9472:402:1;13577:74:0;-1:-1:-1;;;;;13687:17:0;;;:9;:17;;;;;;;;;;;13707:22;;;13687:42;;13751:20;;;;;;;;:30;;13723:6;;13687:9;13751:30;;13723:6;;13751:30;:::i;:::-;;;;;;;;13816:9;-1:-1:-1;;;;;13799:35:0;13808:6;-1:-1:-1;;;;;13799:35:0;;13827:6;13799:35;;;;14308:25:1;;14296:2;14281:18;;14162:177;13799:35:0;;;;;;;;13289:612;13168:733;;;:::o;37634:1526::-;37717:4;37673:23;9220:18;;;;;;;;;;;37673:50;;37734:25;37783:18;;37762;;:39;;;;:::i;:::-;37734:67;-1:-1:-1;37812:12:0;37841:20;;;:46;;-1:-1:-1;37865:22:0;;37841:46;37837:85;;;37904:7;;;37634:1526::o;37837:85::-;37956:18;;:23;;37977:2;37956:23;:::i;:::-;37938:15;:41;37934:115;;;38014:18;;:23;;38035:2;38014:23;:::i;:::-;37996:41;;37934:115;38110:23;38223:1;38190:17;38155:18;;38137:15;:36;;;;:::i;:::-;38136:71;;;;:::i;:::-;:88;;;;:::i;:::-;38110:114;-1:-1:-1;38235:26:0;38264:36;:15;38110:114;38264:19;:36::i;:::-;38235:65;-1:-1:-1;38341:21:0;38375:36;38235:65;38375:16;:36::i;:::-;38424:18;38445:44;:21;38471:17;38445:25;:44::i;:::-;38424:65;;38502:23;38528:81;38581:17;38528:34;38543:18;;38528:10;:14;;:34;;;;:::i;:81::-;38502:107;-1:-1:-1;38620:23:0;38646:28;38502:107;38646:10;:28;:::i;:::-;38708:1;38687:18;:22;;;38720:18;:22;38620:54;-1:-1:-1;38773:19:0;;;;;:42;;;38814:1;38796:15;:19;38773:42;38769:278;;;38832:46;38845:15;38862;38832:12;:46::i;:::-;39002:18;;38898:137;;;15531:25:1;;;15587:2;15572:18;;15565:34;;;15615:18;;;15608:34;;;;38898:137:0;;;;;;15519:2:1;38898:137:0;;;38769:278;39081:7;;39073:79;;-1:-1:-1;;;;;39081:7:0;;;;39116:21;;39073:79;;;;39116:21;39081:7;39073:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;37634:1526:0:o;21402:98::-;21460:7;21487:5;21491:1;21487;:5;:::i;:::-;21480:12;21402:98;-1:-1:-1;;;21402:98:0:o;21801:::-;21859:7;21886:5;21890:1;21886;:5;:::i;21045:98::-;21103:7;21130:5;21134:1;21130;:5;:::i;36471:589::-;36621:16;;;36635:1;36621:16;;;;;;;;36597:21;;36621:16;;;;;;;;;;-1:-1:-1;36621:16:0;36597:40;;36666:4;36648;36653:1;36648:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36648:23:0;;;:7;;;;;;;;;;:23;;;;36692:15;;:22;;;-1:-1:-1;;;36692:22:0;;;;:15;;;;;:20;;:22;;;;;36648:7;;36692:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36682:4;36687:1;36682:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36682:32:0;;;:7;;;;;;;;;:32;36759:15;;36727:62;;36744:4;;36759:15;36777:11;36727:8;:62::i;:::-;36828:15;;:224;;-1:-1:-1;;;36828:224:0;;-1:-1:-1;;;;;36828:15:0;;;;:66;;:224;;36909:11;;36828:15;;36979:4;;37006;;37026:15;;36828:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36526:534;36471:589;:::o;37105:521::-;37285:15;;37253:62;;37270:4;;-1:-1:-1;;;;;37285:15:0;37303:11;37253:8;:62::i;:::-;37358:15;;:260;;-1:-1:-1;;;37358:260:0;;37430:4;37358:260;;;5021:34:1;5071:18;;;5064:34;;;37358:15:0;5114:18:1;;;5107:34;;;5157:18;;;5150:34;37570:6:0;5200:19:1;;;5193:44;37592:15:0;5253:19:1;;;5246:35;-1:-1:-1;;;;;37358:15:0;;;;:31;;37397:9;;4955:19:1;;37358:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:367:1:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:160::-;451:20;;507:13;;500:21;490:32;;480:60;;536:1;533;526:12;551:247;610:6;663:2;651:9;642:7;638:23;634:32;631:52;;;679:1;676;669:12;631:52;718:9;705:23;737:31;762:5;737:31;:::i;803:251::-;873:6;926:2;914:9;905:7;901:23;897:32;894:52;;;942:1;939;932:12;894:52;974:9;968:16;993:31;1018:5;993:31;:::i;1059:388::-;1127:6;1135;1188:2;1176:9;1167:7;1163:23;1159:32;1156:52;;;1204:1;1201;1194:12;1156:52;1243:9;1230:23;1262:31;1287:5;1262:31;:::i;:::-;1312:5;-1:-1:-1;1369:2:1;1354:18;;1341:32;1382:33;1341:32;1382:33;:::i;:::-;1434:7;1424:17;;;1059:388;;;;;:::o;1452:456::-;1529:6;1537;1545;1598:2;1586:9;1577:7;1573:23;1569:32;1566:52;;;1614:1;1611;1604:12;1566:52;1653:9;1640:23;1672:31;1697:5;1672:31;:::i;:::-;1722:5;-1:-1:-1;1779:2:1;1764:18;;1751:32;1792:33;1751:32;1792:33;:::i;:::-;1452:456;;1844:7;;-1:-1:-1;;;1898:2:1;1883:18;;;;1870:32;;1452:456::o;1913:315::-;1978:6;1986;2039:2;2027:9;2018:7;2014:23;2010:32;2007:52;;;2055:1;2052;2045:12;2007:52;2094:9;2081:23;2113:31;2138:5;2113:31;:::i;:::-;2163:5;-1:-1:-1;2187:35:1;2218:2;2203:18;;2187:35;:::i;:::-;2177:45;;1913:315;;;;;:::o;2233:::-;2301:6;2309;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2417:9;2404:23;2436:31;2461:5;2436:31;:::i;:::-;2486:5;2538:2;2523:18;;;;2510:32;;-1:-1:-1;;;2233:315:1:o;2553:770::-;2672:6;2680;2688;2696;2749:2;2737:9;2728:7;2724:23;2720:32;2717:52;;;2765:1;2762;2755:12;2717:52;2805:9;2792:23;2834:18;2875:2;2867:6;2864:14;2861:34;;;2891:1;2888;2881:12;2861:34;2930:70;2992:7;2983:6;2972:9;2968:22;2930:70;:::i;:::-;3019:8;;-1:-1:-1;2904:96:1;-1:-1:-1;3107:2:1;3092:18;;3079:32;;-1:-1:-1;3123:16:1;;;3120:36;;;3152:1;3149;3142:12;3120:36;;3191:72;3255:7;3244:8;3233:9;3229:24;3191:72;:::i;:::-;2553:770;;;;-1:-1:-1;3282:8:1;-1:-1:-1;;;;2553:770:1:o;3328:180::-;3384:6;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3476:26;3492:9;3476:26;:::i;3513:180::-;3572:6;3625:2;3613:9;3604:7;3600:23;3596:32;3593:52;;;3641:1;3638;3631:12;3593:52;-1:-1:-1;3664:23:1;;3513:180;-1:-1:-1;3513:180:1:o;3698:248::-;3766:6;3774;3827:2;3815:9;3806:7;3802:23;3798:32;3795:52;;;3843:1;3840;3833:12;3795:52;-1:-1:-1;;3866:23:1;;;3936:2;3921:18;;;3908:32;;-1:-1:-1;3698:248:1:o;3951:306::-;4039:6;4047;4055;4108:2;4096:9;4087:7;4083:23;4079:32;4076:52;;;4124:1;4121;4114:12;4076:52;4153:9;4147:16;4137:26;;4203:2;4192:9;4188:18;4182:25;4172:35;;4247:2;4236:9;4232:18;4226:25;4216:35;;3951:306;;;;;:::o;5719:597::-;5831:4;5860:2;5889;5878:9;5871:21;5921:6;5915:13;5964:6;5959:2;5948:9;5944:18;5937:34;5989:1;5999:140;6013:6;6010:1;6007:13;5999:140;;;6108:14;;;6104:23;;6098:30;6074:17;;;6093:2;6070:26;6063:66;6028:10;;5999:140;;;6157:6;6154:1;6151:13;6148:91;;;6227:1;6222:2;6213:6;6202:9;6198:22;6194:31;6187:42;6148:91;-1:-1:-1;6300:2:1;6279:15;-1:-1:-1;;6275:29:1;6260:45;;;;6307:2;6256:54;;5719:597;-1:-1:-1;;;5719:597:1:o;6321:399::-;6523:2;6505:21;;;6562:2;6542:18;;;6535:30;6601:34;6596:2;6581:18;;6574:62;-1:-1:-1;;;6667:2:1;6652:18;;6645:33;6710:3;6695:19;;6321:399::o;9879:401::-;10081:2;10063:21;;;10120:2;10100:18;;;10093:30;10159:34;10154:2;10139:18;;10132:62;-1:-1:-1;;;10225:2:1;10210:18;;10203:35;10270:3;10255:19;;9879:401::o;12236:356::-;12438:2;12420:21;;;12457:18;;;12450:30;12516:34;12511:2;12496:18;;12489:62;12583:2;12568:18;;12236:356::o;12597:401::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;12877:34;12872:2;12857:18;;12850:62;-1:-1:-1;;;12943:2:1;12928:18;;12921:35;12988:3;12973:19;;12597:401::o;14344:980::-;14606:4;14654:3;14643:9;14639:19;14685:6;14674:9;14667:25;14711:2;14749:6;14744:2;14733:9;14729:18;14722:34;14792:3;14787:2;14776:9;14772:18;14765:31;14816:6;14851;14845:13;14882:6;14874;14867:22;14920:3;14909:9;14905:19;14898:26;;14959:2;14951:6;14947:15;14933:29;;14980:1;14990:195;15004:6;15001:1;14998:13;14990:195;;;15069:13;;-1:-1:-1;;;;;15065:39:1;15053:52;;15160:15;;;;15125:12;;;;15101:1;15019:9;14990:195;;;-1:-1:-1;;;;;;;15241:32:1;;;;15236:2;15221:18;;15214:60;-1:-1:-1;;;15305:3:1;15290:19;15283:35;15202:3;14344:980;-1:-1:-1;;;14344:980:1:o;15842:128::-;15882:3;15913:1;15909:6;15906:1;15903:13;15900:39;;;15919:18;;:::i;:::-;-1:-1:-1;15955:9:1;;15842:128::o;15975:217::-;16015:1;16041;16031:132;;16085:10;16080:3;16076:20;16073:1;16066:31;16120:4;16117:1;16110:15;16148:4;16145:1;16138:15;16031:132;-1:-1:-1;16177:9:1;;15975:217::o;16197:168::-;16237:7;16303:1;16299;16295:6;16291:14;16288:1;16285:21;16280:1;16273:9;16266:17;16262:45;16259:71;;;16310:18;;:::i;:::-;-1:-1:-1;16350:9:1;;16197:168::o;16370:125::-;16410:4;16438:1;16435;16432:8;16429:34;;;16443:18;;:::i;:::-;-1:-1:-1;16480:9:1;;16370:125::o;16500:380::-;16579:1;16575:12;;;;16622;;;16643:61;;16697:4;16689:6;16685:17;16675:27;;16643:61;16750:2;16742:6;16739:14;16719:18;16716:38;16713:161;;;16796:10;16791:3;16787:20;16784:1;16777:31;16831:4;16828:1;16821:15;16859:4;16856:1;16849:15;16713:161;;16500:380;;;:::o;16885:135::-;16924:3;-1:-1:-1;;16945:17:1;;16942:43;;;16965:18;;:::i;:::-;-1:-1:-1;17012:1:1;17001:13;;16885:135::o;17025:127::-;17086:10;17081:3;17077:20;17074:1;17067:31;17117:4;17114:1;17107:15;17141:4;17138:1;17131:15;17157:127;17218:10;17213:3;17209:20;17206:1;17199:31;17249:4;17246:1;17239:15;17273:4;17270:1;17263:15;17421:131;-1:-1:-1;;;;;17496:31:1;;17486:42;;17476:70;;17542:1;17539;17532:12
Swarm Source
ipfs://e8f3ed034a89219aae7b595bd0bf366c2e65226bfd2821efc9df24442d54bac7
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.