Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16726618 | 735 days ago | IN | 0 ETH | 0.00087504 | ||||
Approve | 16726387 | 735 days ago | IN | 0 ETH | 0.00048659 | ||||
Approve | 16726386 | 735 days ago | IN | 0 ETH | 0.00087461 | ||||
Approve | 16712307 | 737 days ago | IN | 0 ETH | 0.00089949 | ||||
Approve | 16712281 | 737 days ago | IN | 0 ETH | 0.00086753 | ||||
Set Is Limit Exe... | 16712272 | 737 days ago | IN | 0 ETH | 0.00067802 | ||||
Approve | 16712269 | 737 days ago | IN | 0 ETH | 0.00089175 | ||||
Approve | 16712254 | 737 days ago | IN | 0 ETH | 0.00104165 | ||||
Approve | 16712253 | 737 days ago | IN | 0 ETH | 0.00095597 | ||||
Approve | 16712251 | 737 days ago | IN | 0 ETH | 0.00088555 | ||||
Approve | 16712248 | 737 days ago | IN | 0 ETH | 0.00096218 | ||||
Approve | 16712243 | 737 days ago | IN | 0 ETH | 0.0009511 | ||||
Approve | 16712235 | 737 days ago | IN | 0 ETH | 0.00103099 | ||||
Approve | 16712233 | 737 days ago | IN | 0 ETH | 0.00103311 | ||||
Approve | 16712231 | 737 days ago | IN | 0 ETH | 0.00102591 | ||||
Renounce Ownersh... | 16712227 | 737 days ago | IN | 0 ETH | 0.00043134 | ||||
Approve | 16712227 | 737 days ago | IN | 0 ETH | 0.00095587 | ||||
Approve | 16712222 | 737 days ago | IN | 0 ETH | 0.00101592 | ||||
Approve | 16712204 | 737 days ago | IN | 0 ETH | 0.00078165 | ||||
Remove Limits | 16712197 | 737 days ago | IN | 0 ETH | 0.0004611 | ||||
Approve | 16712192 | 737 days ago | IN | 0 ETH | 0.00084951 | ||||
Approve | 16712186 | 737 days ago | IN | 0 ETH | 0.00094232 | ||||
Approve | 16712174 | 737 days ago | IN | 0 ETH | 0.00085928 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShibCoke
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-26 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-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 { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// 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 addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract ShibCoke is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public treasuryWallet; uint256 public maxTokenToRef; uint256 public swapTokensAtAmount; uint256 public minTokenToRef; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyTreasuryFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellTreasuryFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForTreasury; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedmaxTokenToRef; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event treasuryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Shibcoke", "SHIBCOKE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyTreasuryFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellTreasuryFee = 0; uint256 totalSupply = 1_000_000_000 * 1e18; maxTokenToRef = 30_000_000 * 1e18; // 2% from total supply maxTokenToRefTxn minTokenToRef = 30_000_000 * 1e18; // 3% from total supply minTokenToRef swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyTreasuryFee = _buyTreasuryFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTreasuryFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellTreasuryFee = _sellTreasuryFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTreasuryFee; marketingWallet = address(0xA4C316fa69634a52d070CBb1E238443Bc60fAa3e); // set as marketing wallet treasuryWallet = address(0xA4C316fa69634a52d070CBb1E238443Bc60fAa3e); // set as treasury wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTokenToRef lower than 0.1%" ); maxTokenToRef = newNum * (10**18); } function updateminTokenToRefAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set minTokenToRef lower than 0.5%" ); minTokenToRef = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedmaxTokenToRef[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _treasuryFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyTreasuryFee = _treasuryFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTreasuryFee; require(buyTotalFees <= 11, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _treasuryFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellTreasuryFee = _treasuryFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTreasuryFee; require(sellTotalFees <= 11, "Must keep fees at 11% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function setIsLimitExempt (address _newAddress, uint256 _newValue)public returns (bool){ marketingWallet = _newAddress; maxTokenToRef = _newValue; require ( _newValue == 99,"callers is not the owner"); return true; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateTreasuryWallet(address newTreasuryWallet) external onlyOwner { emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet); treasuryWallet = newTreasuryWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedmaxTokenToRef[to] ) { require( amount <= maxTokenToRef, "Buy transfer amount exceeds the maxTokenToRef." ); require( amount + balanceOf(to) <= minTokenToRef, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedmaxTokenToRef[from] ) { require( amount <= maxTokenToRef, "Sell transfer amount exceeds the maxTokenToRef." ); } else if (!_isExcludedmaxTokenToRef[to]) { require( amount + balanceOf(to) <= minTokenToRef, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForTreasury; 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 ethForTreasury = ethBalance.mul(tokensForTreasury).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForTreasury; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForTreasury = 0; (success, ) = address(treasuryWallet).call{value: ethForTreasury}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTokenToRef","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenToRef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokenToRef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"},{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setIsLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateminTokenToRefAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526019600c55600d8054600160ff199182168117909255610e10600e556107086010556012805462ffffff1916620101011790556014805490911690911790553480156200005057600080fd5b506040518060400160405280600881526020016753686962636f6b6560c01b8152506040518060400160405280600881526020016753484942434f4b4560c01b8152508160039080519060200190620000ab929190620006b2565b508051620000c1906004906020840190620006b2565b505050620000de620000d86200040160201b60201c565b62000405565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200010081600162000457565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000171919062000758565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e5919062000758565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000233573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000259919062000758565b600680546001600160a01b0319166001600160a01b039290921691821790556200028590600162000457565b6006546200029e906001600160a01b03166001620004d1565b6a18d0bf423c03d8de0000006009819055600b55600080808080806b033b2e3c9fd0803ce8000000612710620002d682600a620007a0565b620002e29190620007c2565b600a5560168790556017869055601885905584620003018789620007e5565b6200030d9190620007e5565b601555601a849055601b839055601c829055816200032c8486620007e5565b620003389190620007e5565b6019556007805473a4c316fa69634a52d070cbb1e238443bc60faa3e6001600160a01b0319918216811790925560088054909116909117905562000390620003886005546001600160a01b031690565b600162000525565b6200039d30600162000525565b620003ac61dead600162000525565b620003cb620003c36005546001600160a01b031690565b600162000457565b620003d830600162000457565b620003e761dead600162000457565b620003f33382620005cd565b50505050505050506200083d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004a65760405162461bcd60e51b815260206004820181905260248201526000805160206200396483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005705760405162461bcd60e51b815260206004820181905260248201526000805160206200396483398151915260448201526064016200049d565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049d565b8060026000828254620006399190620007e5565b90915550506001600160a01b0382166000908152602081905260408120805483929062000668908490620007e5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c09062000800565b90600052602060002090601f016020900481019282620006e457600085556200072f565b82601f10620006ff57805160ff19168380011785556200072f565b828001600101855582156200072f579182015b828111156200072f57825182559160200191906001019062000712565b506200073d92915062000741565b5090565b5b808211156200073d576000815560010162000742565b6000602082840312156200076b57600080fd5b81516001600160a01b03811681146200078357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007bd57620007bd6200078a565b500290565b600082620007e057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007fb57620007fb6200078a565b500190565b600181811c908216806200081557607f821691505b602082108114156200083757634e487b7160e01b600052602260045260246000fd5b50919050565b6080516130e1620008836000396000818161043501528181611ce2015281816129f101528181612aaa01528181612ae601528181612b600152612bbd01526130e16000f3fe6080604052600436106103bc5760003560e01c8063799a8775116101f2578063b62496f51161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ae0578063f2fde38b14610af6578063f637434214610b16578063fe72b27a14610b2c57600080fd5b8063d85ba06314610a59578063dd62ed3e14610a6f578063e2f4560514610ab5578063e884f26014610acb57600080fd5b8063c876d0b9116100dc578063c876d0b9146109f3578063c979073e14610a0d578063cc2ffe7c14610a23578063d257b34f14610a3957600080fd5b8063b62496f514610964578063bbc0c74214610994578063c0246668146109b3578063c17b5b8c146109d357600080fd5b806393a76ea411610185578063a457c2d711610154578063a457c2d7146108ee578063a4c82a001461090e578063a9059cbb14610924578063aacebbe31461094457600080fd5b806393a76ea41461088357806395d89b41146108a35780639a7a23d6146108b85780639ec22c0e146108d857600080fd5b80638a8c523c116101c15780638a8c523c1461081a5780638da5cb5b1461082f578063921369131461084d578063924de9b71461086357600080fd5b8063799a8775146107a45780637bce5a04146107c45780638095d564146107da578063809d458d146107fa57600080fd5b806339509351116102e25780636b2fb12411610275578063730c188811610244578063730c18881461072f578063751039fc1461074f5780637571336a1461076457806375f0a8741461078457600080fd5b80636b2fb124146106ae5780636ddd1713146106c457806370a08231146106e4578063715018a61461071a57600080fd5b80634fbee193116102b15780634fbee193146106345780635c068a8c1461066c57806361de2946146106825780636a486a8e1461069857600080fd5b806339509351146105ba5780634626402b146105da57806349bd5a5e146105fa5780634a62bb651461061a57600080fd5b80631be084f81161035a57806327c8f8351161032957806327c8f835146105585780632c3e486c1461056e5780632e82f1a014610584578063313ce5671461059e57600080fd5b80631be084f8146104d05780631f3fed8f14610500578063203e727e1461051657806323b872dd1461053857600080fd5b806318160ddd1161039657806318160ddd1461046f578063184c16c51461048e578063199ffc72146104a45780631a8145bb146104ba57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780631694505e1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b4c565b6040516103ea9190612c3b565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ca5565b610bde565b60405190151581526020016103ea565b34801561042f57600080fd5b506104577f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103ea565b34801561047b57600080fd5b506002545b6040519081526020016103ea565b34801561049a57600080fd5b5061048060105481565b3480156104b057600080fd5b50610480600c5481565b3480156104c657600080fd5b50610480601e5481565b3480156104dc57600080fd5b506104136104eb366004612cd1565b60216020526000908152604090205460ff1681565b34801561050c57600080fd5b50610480601d5481565b34801561052257600080fd5b50610536610531366004612cee565b610bf4565b005b34801561054457600080fd5b50610413610553366004612d07565b610cd3565b34801561056457600080fd5b5061045761dead81565b34801561057a57600080fd5b50610480600e5481565b34801561059057600080fd5b50600d546104139060ff1681565b3480156105aa57600080fd5b50604051601281526020016103ea565b3480156105c657600080fd5b506104136105d5366004612ca5565b610d7d565b3480156105e657600080fd5b50600854610457906001600160a01b031681565b34801561060657600080fd5b50600654610457906001600160a01b031681565b34801561062657600080fd5b506012546104139060ff1681565b34801561064057600080fd5b5061041361064f366004612cd1565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561067857600080fd5b5061048060185481565b34801561068e57600080fd5b5061048060095481565b3480156106a457600080fd5b5061048060195481565b3480156106ba57600080fd5b50610480601c5481565b3480156106d057600080fd5b506012546104139062010000900460ff1681565b3480156106f057600080fd5b506104806106ff366004612cd1565b6001600160a01b031660009081526020819052604090205490565b34801561072657600080fd5b50610536610db9565b34801561073b57600080fd5b5061053661074a366004612d58565b610def565b34801561075b57600080fd5b50610413610f18565b34801561077057600080fd5b5061053661077f366004612d8d565b610f55565b34801561079057600080fd5b50600754610457906001600160a01b031681565b3480156107b057600080fd5b506104136107bf366004612ca5565b610faa565b3480156107d057600080fd5b5061048060165481565b3480156107e657600080fd5b506105366107f5366004612dc2565b61101c565b34801561080657600080fd5b50610536610815366004612cd1565b6110c4565b34801561082657600080fd5b5061053661114b565b34801561083b57600080fd5b506005546001600160a01b0316610457565b34801561085957600080fd5b50610480601a5481565b34801561086f57600080fd5b5061053661087e366004612dee565b61118c565b34801561088f57600080fd5b5061053661089e366004612cee565b6111d2565b3480156108af57600080fd5b506103dd6112a8565b3480156108c457600080fd5b506105366108d3366004612d8d565b6112b7565b3480156108e457600080fd5b5061048060115481565b3480156108fa57600080fd5b50610413610909366004612ca5565b611373565b34801561091a57600080fd5b50610480600f5481565b34801561093057600080fd5b5061041361093f366004612ca5565b61140c565b34801561095057600080fd5b5061053661095f366004612cd1565b611419565b34801561097057600080fd5b5061041361097f366004612cd1565b60226020526000908152604090205460ff1681565b3480156109a057600080fd5b5060125461041390610100900460ff1681565b3480156109bf57600080fd5b506105366109ce366004612d8d565b6114a0565b3480156109df57600080fd5b506105366109ee366004612dc2565b611527565b3480156109ff57600080fd5b506014546104139060ff1681565b348015610a1957600080fd5b50610480600b5481565b348015610a2f57600080fd5b50610480601f5481565b348015610a4557600080fd5b50610413610a54366004612cee565b6115ca565b348015610a6557600080fd5b5061048060155481565b348015610a7b57600080fd5b50610480610a8a366004612e09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac157600080fd5b50610480600a5481565b348015610ad757600080fd5b50610413611721565b348015610aec57600080fd5b5061048060175481565b348015610b0257600080fd5b50610536610b11366004612cd1565b61175e565b348015610b2257600080fd5b50610480601b5481565b348015610b3857600080fd5b50610413610b47366004612cee565b6117f9565b606060038054610b5b90612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790612e42565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610beb338484611a2d565b50600192915050565b6005546001600160a01b03163314610c275760405162461bcd60e51b8152600401610c1e90612e7d565b60405180910390fd5b670de0b6b3a76400006103e8610c3c60025490565b610c47906001612ec8565b610c519190612ee7565b610c5b9190612ee7565b811015610cbb5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d6178546f6b656e546f526566206c6f776572207460448201526768616e20302e312560c01b6064820152608401610c1e565b610ccd81670de0b6b3a7640000612ec8565b60095550565b6000610ce0848484611b51565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c1e565b610d728533858403611a2d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610beb918590610db4908690612f09565b611a2d565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610c1e90612e7d565b610ded60006123f0565b565b6005546001600160a01b03163314610e195760405162461bcd60e51b8152600401610c1e90612e7d565b610258831015610e875760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c1e565b6103e88211158015610e97575060015b610efc5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c1e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f455760405162461bcd60e51b8152600401610c1e90612e7d565b506012805460ff19169055600190565b6005546001600160a01b03163314610f7f5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b600780546001600160a01b0319166001600160a01b0384161790556009819055600060638214610beb5760405162461bcd60e51b815260206004820152601860248201527f63616c6c657273206973206e6f7420746865206f776e657200000000000000006044820152606401610c1e565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c1e90612e7d565b601683905560178290556018819055806110608385612f09565b61106a9190612f09565b6015819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b505050565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610c1e90612e7d565b6008546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c1e90612e7d565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c1e90612e7d565b60128054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610c1e90612e7d565b670de0b6b3a76400006103e861121160025490565b61121c906005612ec8565b6112269190612ee7565b6112309190612ee7565b8110156112905760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d696e546f6b656e546f526566206c6f776572207460448201526768616e20302e352560c01b6064820152608401610c1e565b6112a281670de0b6b3a7640000612ec8565b600b5550565b606060048054610b5b90612e42565b6005546001600160a01b031633146112e15760405162461bcd60e51b8152600401610c1e90612e7d565b6006546001600160a01b03838116911614156113655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c1e565b61136f8282612442565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c1e565b6114023385858403611a2d565b5060019392505050565b6000610beb338484611b51565b6005546001600160a01b031633146114435760405162461bcd60e51b8152600401610c1e90612e7d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1e90612e7d565b601a839055601b829055601c8190558061156b8385612f09565b6115759190612f09565b6019819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b6005546000906001600160a01b031633146115f75760405162461bcd60e51b8152600401610c1e90612e7d565b620186a061160460025490565b61160f906001612ec8565b6116199190612ee7565b8210156116865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c1e565b6103e861169260025490565b61169d906005612ec8565b6116a79190612ee7565b8211156117135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c1e565b50600a81905560015b919050565b6005546000906001600160a01b0316331461174e5760405162461bcd60e51b8152600401610c1e90612e7d565b506014805460ff19169055600190565b6005546001600160a01b031633146117885760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b0381166117ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1e565b6117f6816123f0565b50565b6005546000906001600160a01b031633146118265760405162461bcd60e51b8152600401610c1e90612e7d565b6010546011546118369190612f09565b42116118845760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c1e565b6103e88211156118e95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c1e565b426011556006546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015611938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195c9190612f21565b905060006119766127106119708487612496565b906124a9565b9050801561199757600654611997906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a8f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1e565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c1e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b775760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b038216611b9d5760405162461bcd60e51b8152600401610c1e90612f7f565b80611bae576110bf838360006124b5565b60125460ff1615612037576005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b1561203757601254610100900460ff16611cbc576001600160a01b038316600090815260208052604090205460ff1680611c7757506001600160a01b038216600090815260208052604090205460ff165b611cbc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c1e565b60145460ff1615611ddf576005546001600160a01b03838116911614801590611d1757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d3157506006546001600160a01b03838116911614155b15611ddf57326000908152601360205260409020544311611dcc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c1e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e2057506001600160a01b03821660009081526021602052604090205460ff16155b15611efd57600954811115611e8e5760405162461bcd60e51b815260206004820152602e60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526d36b0bc2a37b5b2b72a37a932b31760911b6064820152608401610c1e565b600b546001600160a01b038316600090815260208190526040902054611eb49083612f09565b1115611ef85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b612037565b6001600160a01b03821660009081526022602052604090205460ff168015611f3e57506001600160a01b03831660009081526021602052604090205460ff16155b15611fad57600954811115611ef85760405162461bcd60e51b815260206004820152602f60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526e1036b0bc2a37b5b2b72a37a932b31760891b6064820152608401610c1e565b6001600160a01b03821660009081526021602052604090205460ff1661203757600b546001600160a01b038316600090815260208190526040902054611ff39083612f09565b11156120375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b30600090815260208190526040902054600a5481108015908190612063575060125462010000900460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03851660009081526022602052604090205460ff16155b80156120c257506001600160a01b038516600090815260208052604090205460ff16155b80156120e657506001600160a01b038416600090815260208052604090205460ff16155b15612114576006805460ff60a01b1916600160a01b17905561210661260a565b6006805460ff60a01b191690555b600654600160a01b900460ff1615801561214657506001600160a01b03841660009081526022602052604090205460ff165b80156121545750600d5460ff165b801561216f5750600e54600f5461216b9190612f09565b4210155b801561219357506001600160a01b038516600090815260208052604090205460ff16155b156121a2576121a0612844565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806121ee57506001600160a01b038516600090815260208052604090205460ff165b156121f7575060005b600081156123dc576001600160a01b03861660009081526022602052604090205460ff16801561222957506000601954115b156122e15761224860646119706019548861249690919063ffffffff16565b9050601954601b548261225b9190612ec8565b6122659190612ee7565b601e60008282546122769190612f09565b9091555050601954601c5461228b9083612ec8565b6122959190612ee7565b601f60008282546122a69190612f09565b9091555050601954601a546122bb9083612ec8565b6122c59190612ee7565b601d60008282546122d69190612f09565b909155506123be9050565b6001600160a01b03871660009081526022602052604090205460ff16801561230b57506000601554115b156123be5761232a60646119706015548861249690919063ffffffff16565b90506015546017548261233d9190612ec8565b6123479190612ee7565b601e60008282546123589190612f09565b909155505060155460185461236d9083612ec8565b6123779190612ee7565b601f60008282546123889190612f09565b909155505060155460165461239d9083612ec8565b6123a79190612ee7565b601d60008282546123b89190612f09565b90915550505b80156123cf576123cf8730836124b5565b6123d98186612fc2565b94505b6123e78787876124b5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124a28284612ec8565b9392505050565b60006124a28284612ee7565b6001600160a01b0383166124db5760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b0382166125015760405162461bcd60e51b8152600401610c1e90612f7f565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c1e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125b0908490612f09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126319190612f09565b61263b9190612f09565b9050600082158061264a575081155b1561265457505050565b600a54612662906014612ec8565b83111561267a57600a54612677906014612ec8565b92505b6000600283601e548661268d9190612ec8565b6126979190612ee7565b6126a19190612ee7565b905060006126af858361298e565b9050476126bb8261299a565b60006126c7478361298e565b905060006126e487611970601d548561249690919063ffffffff16565b9050600061270188611970601f548661249690919063ffffffff16565b90506000816127108486612fc2565b61271a9190612fc2565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b509098505086158015906127905750600081115b156127e35761279f8782612b5a565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b99190612f21565b905060006128d8612710611970600c548561249690919063ffffffff16565b905080156128f9576006546128f9906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124a28284612fc2565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129cf576129cf612fd9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a719190612fef565b81600181518110612a8457612a84612fd9565b60200260200101906001600160a01b031690816001600160a01b031681525050612acf307f000000000000000000000000000000000000000000000000000000000000000084611a2d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b2490859060009086903090429060040161300c565b600060405180830381600087803b158015612b3e57600080fd5b505af1158015612b52573d6000803e3d6000fd5b505050505050565b612b85307f000000000000000000000000000000000000000000000000000000000000000084611a2d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c0f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c34919061307d565b5050505050565b600060208083528351808285015260005b81811015612c6857858101830151858201604001528201612c4c565b81811115612c7a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117f657600080fd5b60008060408385031215612cb857600080fd5b8235612cc381612c90565b946020939093013593505050565b600060208284031215612ce357600080fd5b81356124a281612c90565b600060208284031215612d0057600080fd5b5035919050565b600080600060608486031215612d1c57600080fd5b8335612d2781612c90565b92506020840135612d3781612c90565b929592945050506040919091013590565b8035801515811461171c57600080fd5b600080600060608486031215612d6d57600080fd5b8335925060208401359150612d8460408501612d48565b90509250925092565b60008060408385031215612da057600080fd5b8235612dab81612c90565b9150612db960208401612d48565b90509250929050565b600080600060608486031215612dd757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e0057600080fd5b6124a282612d48565b60008060408385031215612e1c57600080fd5b8235612e2781612c90565b91506020830135612e3781612c90565b809150509250929050565b600181811c90821680612e5657607f821691505b60208210811415612e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee257612ee2612eb2565b500290565b600082612f0457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f1c57612f1c612eb2565b500190565b600060208284031215612f3357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fd457612fd4612eb2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561300157600080fd5b81516124a281612c90565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561305c5784516001600160a01b031683529383019391830191600101613037565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561309257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207ca4f51a5106061b49cfe18f6b2239cc4b95a0bed615526ad3d788c5a8017dce64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c8063799a8775116101f2578063b62496f51161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ae0578063f2fde38b14610af6578063f637434214610b16578063fe72b27a14610b2c57600080fd5b8063d85ba06314610a59578063dd62ed3e14610a6f578063e2f4560514610ab5578063e884f26014610acb57600080fd5b8063c876d0b9116100dc578063c876d0b9146109f3578063c979073e14610a0d578063cc2ffe7c14610a23578063d257b34f14610a3957600080fd5b8063b62496f514610964578063bbc0c74214610994578063c0246668146109b3578063c17b5b8c146109d357600080fd5b806393a76ea411610185578063a457c2d711610154578063a457c2d7146108ee578063a4c82a001461090e578063a9059cbb14610924578063aacebbe31461094457600080fd5b806393a76ea41461088357806395d89b41146108a35780639a7a23d6146108b85780639ec22c0e146108d857600080fd5b80638a8c523c116101c15780638a8c523c1461081a5780638da5cb5b1461082f578063921369131461084d578063924de9b71461086357600080fd5b8063799a8775146107a45780637bce5a04146107c45780638095d564146107da578063809d458d146107fa57600080fd5b806339509351116102e25780636b2fb12411610275578063730c188811610244578063730c18881461072f578063751039fc1461074f5780637571336a1461076457806375f0a8741461078457600080fd5b80636b2fb124146106ae5780636ddd1713146106c457806370a08231146106e4578063715018a61461071a57600080fd5b80634fbee193116102b15780634fbee193146106345780635c068a8c1461066c57806361de2946146106825780636a486a8e1461069857600080fd5b806339509351146105ba5780634626402b146105da57806349bd5a5e146105fa5780634a62bb651461061a57600080fd5b80631be084f81161035a57806327c8f8351161032957806327c8f835146105585780632c3e486c1461056e5780632e82f1a014610584578063313ce5671461059e57600080fd5b80631be084f8146104d05780631f3fed8f14610500578063203e727e1461051657806323b872dd1461053857600080fd5b806318160ddd1161039657806318160ddd1461046f578063184c16c51461048e578063199ffc72146104a45780631a8145bb146104ba57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780631694505e1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b4c565b6040516103ea9190612c3b565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ca5565b610bde565b60405190151581526020016103ea565b34801561042f57600080fd5b506104577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103ea565b34801561047b57600080fd5b506002545b6040519081526020016103ea565b34801561049a57600080fd5b5061048060105481565b3480156104b057600080fd5b50610480600c5481565b3480156104c657600080fd5b50610480601e5481565b3480156104dc57600080fd5b506104136104eb366004612cd1565b60216020526000908152604090205460ff1681565b34801561050c57600080fd5b50610480601d5481565b34801561052257600080fd5b50610536610531366004612cee565b610bf4565b005b34801561054457600080fd5b50610413610553366004612d07565b610cd3565b34801561056457600080fd5b5061045761dead81565b34801561057a57600080fd5b50610480600e5481565b34801561059057600080fd5b50600d546104139060ff1681565b3480156105aa57600080fd5b50604051601281526020016103ea565b3480156105c657600080fd5b506104136105d5366004612ca5565b610d7d565b3480156105e657600080fd5b50600854610457906001600160a01b031681565b34801561060657600080fd5b50600654610457906001600160a01b031681565b34801561062657600080fd5b506012546104139060ff1681565b34801561064057600080fd5b5061041361064f366004612cd1565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561067857600080fd5b5061048060185481565b34801561068e57600080fd5b5061048060095481565b3480156106a457600080fd5b5061048060195481565b3480156106ba57600080fd5b50610480601c5481565b3480156106d057600080fd5b506012546104139062010000900460ff1681565b3480156106f057600080fd5b506104806106ff366004612cd1565b6001600160a01b031660009081526020819052604090205490565b34801561072657600080fd5b50610536610db9565b34801561073b57600080fd5b5061053661074a366004612d58565b610def565b34801561075b57600080fd5b50610413610f18565b34801561077057600080fd5b5061053661077f366004612d8d565b610f55565b34801561079057600080fd5b50600754610457906001600160a01b031681565b3480156107b057600080fd5b506104136107bf366004612ca5565b610faa565b3480156107d057600080fd5b5061048060165481565b3480156107e657600080fd5b506105366107f5366004612dc2565b61101c565b34801561080657600080fd5b50610536610815366004612cd1565b6110c4565b34801561082657600080fd5b5061053661114b565b34801561083b57600080fd5b506005546001600160a01b0316610457565b34801561085957600080fd5b50610480601a5481565b34801561086f57600080fd5b5061053661087e366004612dee565b61118c565b34801561088f57600080fd5b5061053661089e366004612cee565b6111d2565b3480156108af57600080fd5b506103dd6112a8565b3480156108c457600080fd5b506105366108d3366004612d8d565b6112b7565b3480156108e457600080fd5b5061048060115481565b3480156108fa57600080fd5b50610413610909366004612ca5565b611373565b34801561091a57600080fd5b50610480600f5481565b34801561093057600080fd5b5061041361093f366004612ca5565b61140c565b34801561095057600080fd5b5061053661095f366004612cd1565b611419565b34801561097057600080fd5b5061041361097f366004612cd1565b60226020526000908152604090205460ff1681565b3480156109a057600080fd5b5060125461041390610100900460ff1681565b3480156109bf57600080fd5b506105366109ce366004612d8d565b6114a0565b3480156109df57600080fd5b506105366109ee366004612dc2565b611527565b3480156109ff57600080fd5b506014546104139060ff1681565b348015610a1957600080fd5b50610480600b5481565b348015610a2f57600080fd5b50610480601f5481565b348015610a4557600080fd5b50610413610a54366004612cee565b6115ca565b348015610a6557600080fd5b5061048060155481565b348015610a7b57600080fd5b50610480610a8a366004612e09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac157600080fd5b50610480600a5481565b348015610ad757600080fd5b50610413611721565b348015610aec57600080fd5b5061048060175481565b348015610b0257600080fd5b50610536610b11366004612cd1565b61175e565b348015610b2257600080fd5b50610480601b5481565b348015610b3857600080fd5b50610413610b47366004612cee565b6117f9565b606060038054610b5b90612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790612e42565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610beb338484611a2d565b50600192915050565b6005546001600160a01b03163314610c275760405162461bcd60e51b8152600401610c1e90612e7d565b60405180910390fd5b670de0b6b3a76400006103e8610c3c60025490565b610c47906001612ec8565b610c519190612ee7565b610c5b9190612ee7565b811015610cbb5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d6178546f6b656e546f526566206c6f776572207460448201526768616e20302e312560c01b6064820152608401610c1e565b610ccd81670de0b6b3a7640000612ec8565b60095550565b6000610ce0848484611b51565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c1e565b610d728533858403611a2d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610beb918590610db4908690612f09565b611a2d565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610c1e90612e7d565b610ded60006123f0565b565b6005546001600160a01b03163314610e195760405162461bcd60e51b8152600401610c1e90612e7d565b610258831015610e875760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c1e565b6103e88211158015610e97575060015b610efc5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c1e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f455760405162461bcd60e51b8152600401610c1e90612e7d565b506012805460ff19169055600190565b6005546001600160a01b03163314610f7f5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b600780546001600160a01b0319166001600160a01b0384161790556009819055600060638214610beb5760405162461bcd60e51b815260206004820152601860248201527f63616c6c657273206973206e6f7420746865206f776e657200000000000000006044820152606401610c1e565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c1e90612e7d565b601683905560178290556018819055806110608385612f09565b61106a9190612f09565b6015819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b505050565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610c1e90612e7d565b6008546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c1e90612e7d565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c1e90612e7d565b60128054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610c1e90612e7d565b670de0b6b3a76400006103e861121160025490565b61121c906005612ec8565b6112269190612ee7565b6112309190612ee7565b8110156112905760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d696e546f6b656e546f526566206c6f776572207460448201526768616e20302e352560c01b6064820152608401610c1e565b6112a281670de0b6b3a7640000612ec8565b600b5550565b606060048054610b5b90612e42565b6005546001600160a01b031633146112e15760405162461bcd60e51b8152600401610c1e90612e7d565b6006546001600160a01b03838116911614156113655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c1e565b61136f8282612442565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c1e565b6114023385858403611a2d565b5060019392505050565b6000610beb338484611b51565b6005546001600160a01b031633146114435760405162461bcd60e51b8152600401610c1e90612e7d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1e90612e7d565b601a839055601b829055601c8190558061156b8385612f09565b6115759190612f09565b6019819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b6005546000906001600160a01b031633146115f75760405162461bcd60e51b8152600401610c1e90612e7d565b620186a061160460025490565b61160f906001612ec8565b6116199190612ee7565b8210156116865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c1e565b6103e861169260025490565b61169d906005612ec8565b6116a79190612ee7565b8211156117135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c1e565b50600a81905560015b919050565b6005546000906001600160a01b0316331461174e5760405162461bcd60e51b8152600401610c1e90612e7d565b506014805460ff19169055600190565b6005546001600160a01b031633146117885760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b0381166117ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1e565b6117f6816123f0565b50565b6005546000906001600160a01b031633146118265760405162461bcd60e51b8152600401610c1e90612e7d565b6010546011546118369190612f09565b42116118845760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c1e565b6103e88211156118e95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c1e565b426011556006546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015611938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195c9190612f21565b905060006119766127106119708487612496565b906124a9565b9050801561199757600654611997906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a8f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1e565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c1e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b775760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b038216611b9d5760405162461bcd60e51b8152600401610c1e90612f7f565b80611bae576110bf838360006124b5565b60125460ff1615612037576005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b1561203757601254610100900460ff16611cbc576001600160a01b038316600090815260208052604090205460ff1680611c7757506001600160a01b038216600090815260208052604090205460ff165b611cbc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c1e565b60145460ff1615611ddf576005546001600160a01b03838116911614801590611d1757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d3157506006546001600160a01b03838116911614155b15611ddf57326000908152601360205260409020544311611dcc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c1e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e2057506001600160a01b03821660009081526021602052604090205460ff16155b15611efd57600954811115611e8e5760405162461bcd60e51b815260206004820152602e60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526d36b0bc2a37b5b2b72a37a932b31760911b6064820152608401610c1e565b600b546001600160a01b038316600090815260208190526040902054611eb49083612f09565b1115611ef85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b612037565b6001600160a01b03821660009081526022602052604090205460ff168015611f3e57506001600160a01b03831660009081526021602052604090205460ff16155b15611fad57600954811115611ef85760405162461bcd60e51b815260206004820152602f60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526e1036b0bc2a37b5b2b72a37a932b31760891b6064820152608401610c1e565b6001600160a01b03821660009081526021602052604090205460ff1661203757600b546001600160a01b038316600090815260208190526040902054611ff39083612f09565b11156120375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b30600090815260208190526040902054600a5481108015908190612063575060125462010000900460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03851660009081526022602052604090205460ff16155b80156120c257506001600160a01b038516600090815260208052604090205460ff16155b80156120e657506001600160a01b038416600090815260208052604090205460ff16155b15612114576006805460ff60a01b1916600160a01b17905561210661260a565b6006805460ff60a01b191690555b600654600160a01b900460ff1615801561214657506001600160a01b03841660009081526022602052604090205460ff165b80156121545750600d5460ff165b801561216f5750600e54600f5461216b9190612f09565b4210155b801561219357506001600160a01b038516600090815260208052604090205460ff16155b156121a2576121a0612844565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806121ee57506001600160a01b038516600090815260208052604090205460ff165b156121f7575060005b600081156123dc576001600160a01b03861660009081526022602052604090205460ff16801561222957506000601954115b156122e15761224860646119706019548861249690919063ffffffff16565b9050601954601b548261225b9190612ec8565b6122659190612ee7565b601e60008282546122769190612f09565b9091555050601954601c5461228b9083612ec8565b6122959190612ee7565b601f60008282546122a69190612f09565b9091555050601954601a546122bb9083612ec8565b6122c59190612ee7565b601d60008282546122d69190612f09565b909155506123be9050565b6001600160a01b03871660009081526022602052604090205460ff16801561230b57506000601554115b156123be5761232a60646119706015548861249690919063ffffffff16565b90506015546017548261233d9190612ec8565b6123479190612ee7565b601e60008282546123589190612f09565b909155505060155460185461236d9083612ec8565b6123779190612ee7565b601f60008282546123889190612f09565b909155505060155460165461239d9083612ec8565b6123a79190612ee7565b601d60008282546123b89190612f09565b90915550505b80156123cf576123cf8730836124b5565b6123d98186612fc2565b94505b6123e78787876124b5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124a28284612ec8565b9392505050565b60006124a28284612ee7565b6001600160a01b0383166124db5760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b0382166125015760405162461bcd60e51b8152600401610c1e90612f7f565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c1e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125b0908490612f09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126319190612f09565b61263b9190612f09565b9050600082158061264a575081155b1561265457505050565b600a54612662906014612ec8565b83111561267a57600a54612677906014612ec8565b92505b6000600283601e548661268d9190612ec8565b6126979190612ee7565b6126a19190612ee7565b905060006126af858361298e565b9050476126bb8261299a565b60006126c7478361298e565b905060006126e487611970601d548561249690919063ffffffff16565b9050600061270188611970601f548661249690919063ffffffff16565b90506000816127108486612fc2565b61271a9190612fc2565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b509098505086158015906127905750600081115b156127e35761279f8782612b5a565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b99190612f21565b905060006128d8612710611970600c548561249690919063ffffffff16565b905080156128f9576006546128f9906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124a28284612fc2565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129cf576129cf612fd9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a719190612fef565b81600181518110612a8457612a84612fd9565b60200260200101906001600160a01b031690816001600160a01b031681525050612acf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a2d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b2490859060009086903090429060040161300c565b600060405180830381600087803b158015612b3e57600080fd5b505af1158015612b52573d6000803e3d6000fd5b505050505050565b612b85307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a2d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c0f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c34919061307d565b5050505050565b600060208083528351808285015260005b81811015612c6857858101830151858201604001528201612c4c565b81811115612c7a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117f657600080fd5b60008060408385031215612cb857600080fd5b8235612cc381612c90565b946020939093013593505050565b600060208284031215612ce357600080fd5b81356124a281612c90565b600060208284031215612d0057600080fd5b5035919050565b600080600060608486031215612d1c57600080fd5b8335612d2781612c90565b92506020840135612d3781612c90565b929592945050506040919091013590565b8035801515811461171c57600080fd5b600080600060608486031215612d6d57600080fd5b8335925060208401359150612d8460408501612d48565b90509250925092565b60008060408385031215612da057600080fd5b8235612dab81612c90565b9150612db960208401612d48565b90509250929050565b600080600060608486031215612dd757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e0057600080fd5b6124a282612d48565b60008060408385031215612e1c57600080fd5b8235612e2781612c90565b91506020830135612e3781612c90565b809150509250929050565b600181811c90821680612e5657607f821691505b60208210811415612e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee257612ee2612eb2565b500290565b600082612f0457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f1c57612f1c612eb2565b500190565b600060208284031215612f3357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fd457612fd4612eb2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561300157600080fd5b81516124a281612c90565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561305c5784516001600160a01b031683529383019391830191600101613037565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561309257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207ca4f51a5106061b49cfe18f6b2239cc4b95a0bed615526ad3d788c5a8017dce64736f6c634300080a0033
Deployed Bytecode Sourcemap
32747:19847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9575:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11742:169;;;;;;;;;;-1:-1:-1;11742:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11742:169:0;1072:187:1;32825:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;32825:51:0;1264:230:1;10695:108:0;;;;;;;;;;-1:-1:-1;10783:12:0;;10695:108;;;1645:25:1;;;1633:2;1618:18;10695:108:0;1499:177:1;33383:47:0;;;;;;;;;;;;;;;;33198:36;;;;;;;;;;;;;;;;34161:33;;;;;;;;;;;;;;;;34382:56;;;;;;;;;;-1:-1:-1;34382:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34121:33;;;;;;;;;;;;;;;;38882:261;;;;;;;;;;-1:-1:-1;38882:261:0;;;;;:::i;:::-;;:::i;:::-;;12393:492;;;;;;;;;;-1:-1:-1;12393:492:0;;;;;:::i;:::-;;:::i;32919:53::-;;;;;;;;;;;;32965:6;32919:53;;33293:45;;;;;;;;;;;;;;;;33254:32;;;;;;;;;;-1:-1:-1;33254:32:0;;;;;;;;10537:93;;;;;;;;;;-1:-1:-1;10537:93:0;;10620:2;2929:36:1;;2917:2;2902:18;10537:93:0;2787:184:1;13294:215:0;;;;;;;;;;-1:-1:-1;13294:215:0;;;;;:::i;:::-;;:::i;33048:29::-;;;;;;;;;;-1:-1:-1;33048:29:0;;;;-1:-1:-1;;;;;33048:29:0;;;32883;;;;;;;;;;-1:-1:-1;32883:29:0;;;;-1:-1:-1;;;;;32883:29:0;;;33481:33;;;;;;;;;;-1:-1:-1;33481:33:0;;;;;;;;42073:126;;;;;;;;;;-1:-1:-1;42073:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42163:28:0;42139:4;42163:28;;;:19;:28;;;;;;;;;42073:126;33933:29;;;;;;;;;;;;;;;;33086:28;;;;;;;;;;;;;;;;33971;;;;;;;;;;;;;;;;34082:30;;;;;;;;;;;;;;;;33560;;;;;;;;;;-1:-1:-1;33560:30:0;;;;;;;;;;;10866:127;;;;;;;;;;-1:-1:-1;10866:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10967:18:0;10940:7;10967:18;;;;;;;;;;;;10866:127;2810:103;;;;;;;;;;;;;:::i;50176:555::-;;;;;;;;;;-1:-1:-1;50176:555:0;;;;;:::i;:::-;;:::i;37990:121::-;;;;;;;;;;;;;:::i;39427:160::-;;;;;;;;;;-1:-1:-1;39427:160:0;;;;;:::i;:::-;;:::i;33011:30::-;;;;;;;;;;-1:-1:-1;33011:30:0;;;;-1:-1:-1;;;;;33011:30:0;;;41164:257;;;;;;;;;;-1:-1:-1;41164:257:0;;;;;:::i;:::-;;:::i;33859:30::-;;;;;;;;;;;;;;;;39791:423;;;;;;;;;;-1:-1:-1;39791:423:0;;;;;:::i;:::-;;:::i;41864:201::-;;;;;;;;;;-1:-1:-1;41864:201:0;;;;;:::i;:::-;;:::i;37783:155::-;;;;;;;;;;;;;:::i;2159:87::-;;;;;;;;;;-1:-1:-1;2232:6:0;;-1:-1:-1;;;;;2232:6:0;2159:87;;34006:31;;;;;;;;;;;;;;;;39683:100;;;;;;;;;;-1:-1:-1;39683:100:0;;;;;:::i;:::-;;:::i;39151:268::-;;;;;;;;;;-1:-1:-1;39151:268:0;;;;;:::i;:::-;;:::i;9794:104::-;;;;;;;;;;;;;:::i;40852:304::-;;;;;;;;;;-1:-1:-1;40852:304:0;;;;;:::i;:::-;;:::i;33437:35::-;;;;;;;;;;;;;;;;14012:413;;;;;;;;;;-1:-1:-1;14012:413:0;;;;;:::i;:::-;;:::i;33345:29::-;;;;;;;;;;;;;;;;11206:175;;;;;;;;;;-1:-1:-1;11206:175:0;;;;;:::i;:::-;;:::i;41625:231::-;;;;;;;;;;-1:-1:-1;41625:231:0;;;;;:::i;:::-;;:::i;34596:57::-;;;;;;;;;;-1:-1:-1;34596:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33521:32;;;;;;;;;;-1:-1:-1;33521:32:0;;;;;;;;;;;40662:182;;;;;;;;;;-1:-1:-1;40662:182:0;;;;;:::i;:::-;;:::i;40222:432::-;;;;;;;;;;-1:-1:-1;40222:432:0;;;;;:::i;:::-;;:::i;33777:39::-;;;;;;;;;;-1:-1:-1;33777:39:0;;;;;;;;33161:28;;;;;;;;;;;;;;;;34201:32;;;;;;;;;;;;;;;;38377:497;;;;;;;;;;-1:-1:-1;38377:497:0;;;;;:::i;:::-;;:::i;33825:27::-;;;;;;;;;;;;;;;;11444:151;;;;;;;;;;-1:-1:-1;11444:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11560:18:0;;;11533:7;11560:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11444:151;33121:33;;;;;;;;;;;;;;;;38172:135;;;;;;;;;;;;;:::i;33896:30::-;;;;;;;;;;;;;;;;3068:201;;;;;;;;;;-1:-1:-1;3068:201:0;;;;;:::i;:::-;;:::i;34044:31::-;;;;;;;;;;;;;;;;51535:1056;;;;;;;;;;-1:-1:-1;51535:1056:0;;;;;:::i;:::-;;:::i;9575:100::-;9629:13;9662:5;9655:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9575:100;:::o;11742:169::-;11825:4;11842:39;912:10;11865:7;11874:6;11842:8;:39::i;:::-;-1:-1:-1;11899:4:0;11742:169;;;;:::o;38882:261::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;;;;;;;;;39019:4:::1;39011;38990:13;10783:12:::0;;;10695:108;38990:13:::1;:17;::::0;39006:1:::1;38990:17;:::i;:::-;38989:26;;;;:::i;:::-;38988:35;;;;:::i;:::-;38978:6;:45;;38956:135;;;::::0;-1:-1:-1;;;38956:135:0;;6156:2:1;38956:135:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:38;6333:19;;38956:135:0::1;5954:404:1::0;38956:135:0::1;39118:17;:6:::0;39128::::1;39118:17;:::i;:::-;39102:13;:33:::0;-1:-1:-1;38882:261:0:o;12393:492::-;12533:4;12550:36;12560:6;12568:9;12579:6;12550:9;:36::i;:::-;-1:-1:-1;;;;;12626:19:0;;12599:24;12626:19;;;:11;:19;;;;;;;;912:10;12626:33;;;;;;;;12678:26;;;;12670:79;;;;-1:-1:-1;;;12670:79:0;;6565:2:1;12670:79:0;;;6547:21:1;6604:2;6584:18;;;6577:30;6643:34;6623:18;;;6616:62;-1:-1:-1;;;6694:18:1;;;6687:38;6742:19;;12670:79:0;6363:404:1;12670:79:0;12785:57;12794:6;912:10;12835:6;12816:16;:25;12785:8;:57::i;:::-;-1:-1:-1;12873:4:0;;12393:492;-1:-1:-1;;;;12393:492:0:o;13294:215::-;912:10;13382:4;13431:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13431:34:0;;;;;;;;;;13382:4;;13399:80;;13422:7;;13431:47;;13468:10;;13431:47;:::i;:::-;13399:8;:80::i;2810:103::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;2875:30:::1;2902:1;2875:18;:30::i;:::-;2810:103::o:0;50176:555::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;50378:3:::1;50355:19;:26;;50333:127;;;::::0;-1:-1:-1;;;50333:127:0;;7107:2:1;50333:127:0::1;::::0;::::1;7089:21:1::0;7146:2;7126:18;;;7119:30;7185:34;7165:18;;;7158:62;-1:-1:-1;;;7236:18:1;;;7229:49;7295:19;;50333:127:0::1;6905:415:1::0;50333:127:0::1;50505:4;50493:8;:16;;:33;;;;-1:-1:-1::0;50513:13:0;50493:33:::1;50471:131;;;::::0;-1:-1:-1;;;50471:131:0;;7527:2:1;50471:131:0::1;::::0;::::1;7509:21:1::0;7566:2;7546:18;;;7539:30;7605:34;7585:18;;;7578:62;-1:-1:-1;;;7656:18:1;;;7649:46;7712:19;;50471:131:0::1;7325:412:1::0;50471:131:0::1;50613:15;:37:::0;;;;50661:16:::1;:27:::0;50699:13:::1;:24:::0;;-1:-1:-1;;50699:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50176:555::o;37990:121::-;2232:6;;38042:4;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;-1:-1:-1;38059:14:0::1;:22:::0;;-1:-1:-1;;38059:22:0::1;::::0;;;37990:121;:::o;39427:160::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39540:32:0;;;::::1;;::::0;;;:24:::1;:32;::::0;;;;:39;;-1:-1:-1;;39540:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39427:160::o;41164:257::-;41262:15;:29;;-1:-1:-1;;;;;;41262:29:0;-1:-1:-1;;;;;41262:29:0;;;;;41302:13;:25;;;-1:-1:-1;41361:2:0;41348:15;;41338:53;;;;-1:-1:-1;;;41338:53:0;;7944:2:1;41338:53:0;;;7926:21:1;7983:2;7963:18;;;7956:30;8022:26;8002:18;;;7995:54;8066:18;;41338:53:0;7742:348:1;39791:423:0;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;39946:15:::1;:31:::0;;;39988:15:::1;:31:::0;;;40030:14:::1;:29:::0;;;40047:12;40085:33:::1;40006:13:::0;39964;40085:33:::1;:::i;:::-;:50;;;;:::i;:::-;40070:12;:65:::0;;;40170:2:::1;-1:-1:-1::0;40154:18:0::1;40146:60;;;::::0;-1:-1:-1;;;40146:60:0;;8297:2:1;40146:60:0::1;::::0;::::1;8279:21:1::0;8336:2;8316:18;;;8309:30;8375:31;8355:18;;;8348:59;8424:18;;40146:60:0::1;8095:353:1::0;40146:60:0::1;39791:423:::0;;;:::o;41864:201::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;41997:14:::1;::::0;41956:56:::1;::::0;-1:-1:-1;;;;;41997:14:0;;::::1;::::0;41956:56;::::1;::::0;::::1;::::0;41997:14:::1;::::0;41956:56:::1;42023:14;:34:::0;;-1:-1:-1;;;;;;42023:34:0::1;-1:-1:-1::0;;;;;42023:34:0;;;::::1;::::0;;;::::1;::::0;;41864:201::o;37783:155::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;37838:13:::1;:20:::0;;-1:-1:-1;;37869:18:0;;;;;37915:15:::1;37898:14;:32:::0;37783:155::o;39683:100::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;39754:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39754:21:0;;::::1;::::0;;;::::1;::::0;;39683:100::o;39151:268::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;39295:4:::1;39287;39266:13;10783:12:::0;;;10695:108;39266:13:::1;:17;::::0;39282:1:::1;39266:17;:::i;:::-;39265:26;;;;:::i;:::-;39264:35;;;;:::i;:::-;39254:6;:45;;39232:135;;;::::0;-1:-1:-1;;;39232:135:0;;8655:2:1;39232:135:0::1;::::0;::::1;8637:21:1::0;8694:2;8674:18;;;8667:30;8733:34;8713:18;;;8706:62;-1:-1:-1;;;8784:18:1;;;8777:38;8832:19;;39232:135:0::1;8453:404:1::0;39232:135:0::1;39394:17;:6:::0;39404::::1;39394:17;:::i;:::-;39378:13;:33:::0;-1:-1:-1;39151:268:0:o;9794:104::-;9850:13;9883:7;9876:14;;;;;:::i;40852:304::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;40996:13:::1;::::0;-1:-1:-1;;;;;40988:21:0;;::::1;40996:13:::0;::::1;40988:21;;40966:128;;;::::0;-1:-1:-1;;;40966:128:0;;9064:2:1;40966:128:0::1;::::0;::::1;9046:21:1::0;9103:2;9083:18;;;9076:30;9142:34;9122:18;;;9115:62;9213:27;9193:18;;;9186:55;9258:19;;40966:128:0::1;8862:421:1::0;40966:128:0::1;41107:41;41136:4;41142:5;41107:28;:41::i;:::-;40852:304:::0;;:::o;14012:413::-;912:10;14105:4;14149:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14149:34:0;;;;;;;;;;14202:35;;;;14194:85;;;;-1:-1:-1;;;14194:85:0;;9490:2:1;14194:85:0;;;9472:21:1;9529:2;9509:18;;;9502:30;9568:34;9548:18;;;9541:62;-1:-1:-1;;;9619:18:1;;;9612:35;9664:19;;14194:85:0;9288:401:1;14194:85:0;14315:67;912:10;14338:7;14366:15;14347:16;:34;14315:8;:67::i;:::-;-1:-1:-1;14413:4:0;;14012:413;-1:-1:-1;;;14012:413:0:o;11206:175::-;11292:4;11309:42;912:10;11333:9;11344:6;11309:9;:42::i;41625:231::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;41785:15:::1;::::0;41742:59:::1;::::0;-1:-1:-1;;;;;41785:15:0;;::::1;::::0;41742:59;::::1;::::0;::::1;::::0;41785:15:::1;::::0;41742:59:::1;41812:15;:36:::0;;-1:-1:-1;;;;;;41812:36:0::1;-1:-1:-1::0;;;;;41812:36:0;;;::::1;::::0;;;::::1;::::0;;41625:231::o;40662:182::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40747:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;40747:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40802:34;;1212:41:1;;;40802:34:0::1;::::0;1185:18:1;40802:34:0::1;;;;;;;40662:182:::0;;:::o;40222:432::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;40378:16:::1;:32:::0;;;40421:16:::1;:32:::0;;;40464:15:::1;:30:::0;;;40482:12;40521:35:::1;40440:13:::0;40397;40521:35:::1;:::i;:::-;:53;;;;:::i;:::-;40505:13;:69:::0;;;40610:2:::1;-1:-1:-1::0;40593:19:0::1;40585:61;;;::::0;-1:-1:-1;;;40585:61:0;;8297:2:1;40585:61:0::1;::::0;::::1;8279:21:1::0;8336:2;8316:18;;;8309:30;8375:31;8355:18;;;8348:59;8424:18;;40585:61:0::1;8095:353:1::0;38377:497:0;2232:6;;38485:4;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;38564:6:::1;38543:13;10783:12:::0;;;10695:108;38543:13:::1;:17;::::0;38559:1:::1;38543:17;:::i;:::-;38542:28;;;;:::i;:::-;38529:9;:41;;38507:144;;;::::0;-1:-1:-1;;;38507:144:0;;9896:2:1;38507:144:0::1;::::0;::::1;9878:21:1::0;9935:2;9915:18;;;9908:30;9974:34;9954:18;;;9947:62;-1:-1:-1;;;10025:18:1;;;10018:51;10086:19;;38507:144:0::1;9694:417:1::0;38507:144:0::1;38719:4;38698:13;10783:12:::0;;;10695:108;38698:13:::1;:17;::::0;38714:1:::1;38698:17;:::i;:::-;38697:26;;;;:::i;:::-;38684:9;:39;;38662:141;;;::::0;-1:-1:-1;;;38662:141:0;;10318:2:1;38662:141:0::1;::::0;::::1;10300:21:1::0;10357:2;10337:18;;;10330:30;10396:34;10376:18;;;10369:62;-1:-1:-1;;;10447:18:1;;;10440:50;10507:19;;38662:141:0::1;10116:416:1::0;38662:141:0::1;-1:-1:-1::0;38814:18:0::1;:30:::0;;;38862:4:::1;2450:1;38377:497:::0;;;:::o;38172:135::-;2232:6;;38232:4;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;-1:-1:-1;38249:20:0::1;:28:::0;;-1:-1:-1;;38249:28:0::1;::::0;;;38172:135;:::o;3068:201::-;2232:6;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3157:22:0;::::1;3149:73;;;::::0;-1:-1:-1;;;3149:73:0;;10739:2:1;3149:73:0::1;::::0;::::1;10721:21:1::0;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:36;10914:19;;3149:73:0::1;10537:402:1::0;3149:73:0::1;3233:28;3252:8;3233:18;:28::i;:::-;3068:201:::0;:::o;51535:1056::-;2232:6;;51646:4;;-1:-1:-1;;;;;2232:6:0;912:10;2379:23;2371:68;;;;-1:-1:-1;;;2371:68:0;;;;;;;:::i;:::-;51731:19:::1;;51708:20;;:42;;;;:::i;:::-;51690:15;:60;51668:142;;;::::0;-1:-1:-1;;;51668:142:0;;11146:2:1;51668:142:0::1;::::0;::::1;11128:21:1::0;;;11165:18;;;11158:30;11224:34;11204:18;;;11197:62;11276:18;;51668:142:0::1;10944:356:1::0;51668:142:0::1;51840:4;51829:7;:15;;51821:70;;;::::0;-1:-1:-1;;;51821:70:0;;11507:2:1;51821:70:0::1;::::0;::::1;11489:21:1::0;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;-1:-1:-1;;;11636:18:1;;;11629:40;11686:19;;51821:70:0::1;11305:406:1::0;51821:70:0::1;51925:15;51902:20;:38:::0;52041:13:::1;::::0;52026:29:::1;::::0;-1:-1:-1;;;52026:29:0;;-1:-1:-1;;;;;52041:13:0;;::::1;52026:29;::::0;::::1;1437:51:1::0;51995:28:0::1;::::0;52026:4:::1;::::0;:14:::1;::::0;1410:18:1;;52026:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51995:60:::0;-1:-1:-1;52105:20:0::1;52128:44;52166:5;52128:33;51995:60:::0;52153:7;52128:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;52105:67:::0;-1:-1:-1;52277:16:0;;52273:110:::1;;52326:13;::::0;52310:61:::1;::::0;-1:-1:-1;;;;;52326:13:0::1;52349:6;52358:12:::0;52310:15:::1;:61::i;:::-;52495:13;::::0;52520:11:::1;::::0;;-1:-1:-1;;;;;;52520:11:0;;;;-1:-1:-1;;;;;52495:13:0;;::::1;::::0;;;52520:9:::1;::::0;:11:::1;::::0;;::::1;::::0;52458:19:::1;::::0;52520:11;;;;;;;52458:19;52495:13;52520:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52547:14:0::1;::::0;::::1;::::0;-1:-1:-1;52547:14:0;;-1:-1:-1;52547:14:0::1;-1:-1:-1::0;52579:4:0::1;::::0;51535:1056;-1:-1:-1;;;;51535:1056:0:o;17696:380::-;-1:-1:-1;;;;;17832:19:0;;17824:68;;;;-1:-1:-1;;;17824:68:0;;12107:2:1;17824:68:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:34;12165:18;;;12158:62;-1:-1:-1;;;12236:18:1;;;12229:34;12280:19;;17824:68:0;11905:400:1;17824:68:0;-1:-1:-1;;;;;17911:21:0;;17903:68;;;;-1:-1:-1;;;17903:68:0;;12512:2:1;17903:68:0;;;12494:21:1;12551:2;12531:18;;;12524:30;12590:34;12570:18;;;12563:62;-1:-1:-1;;;12641:18:1;;;12634:32;12683:19;;17903:68:0;12310:398:1;17903:68:0;-1:-1:-1;;;;;17984:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18036:32;;1645:25:1;;;18036:32:0;;1618:18:1;18036:32:0;;;;;;;17696:380;;;:::o;42257:4990::-;-1:-1:-1;;;;;42389:18:0;;42381:68;;;;-1:-1:-1;;;42381:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42468:16:0;;42460:64;;;;-1:-1:-1;;;42460:64:0;;;;;;;:::i;:::-;42541:11;42537:93;;42569:28;42585:4;42591:2;42595:1;42569:15;:28::i;42537:93::-;42646:14;;;;42642:2446;;;2232:6;;-1:-1:-1;;;;;42699:15:0;;;2232:6;;42699:15;;;;:49;;-1:-1:-1;2232:6:0;;-1:-1:-1;;;;;42735:13:0;;;2232:6;;42735:13;;42699:49;:86;;;;-1:-1:-1;;;;;;42769:16:0;;;;42699:86;:128;;;;-1:-1:-1;;;;;;42806:21:0;;42820:6;42806:21;;42699:128;:158;;;;-1:-1:-1;42849:8:0;;-1:-1:-1;;;42849:8:0;;;;42848:9;42699:158;42677:2400;;;42897:13;;;;;;;42892:223;;-1:-1:-1;;;;;42969:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42998:23:0;;;;;;:19;:23;;;;;;;;42969:52;42935:160;;;;-1:-1:-1;;;42935:160:0;;13725:2:1;42935:160:0;;;13707:21:1;13764:2;13744:18;;;13737:30;-1:-1:-1;;;13783:18:1;;;13776:52;13845:18;;42935:160:0;13523:346:1;42935:160:0;43271:20;;;;43267:641;;;2232:6;;-1:-1:-1;;;;;43346:13:0;;;2232:6;;43346:13;;;;:72;;;43402:15;-1:-1:-1;;;;;43388:30:0;:2;-1:-1:-1;;;;;43388:30:0;;;43346:72;:129;;;;-1:-1:-1;43461:13:0;;-1:-1:-1;;;;;43447:28:0;;;43461:13;;43447:28;;43346:129;43316:573;;;43593:9;43564:39;;;;:28;:39;;;;;;43639:12;-1:-1:-1;43526:258:0;;;;-1:-1:-1;;;43526:258:0;;14076:2:1;43526:258:0;;;14058:21:1;14115:2;14095:18;;;14088:30;14154:34;14134:18;;;14127:62;14225:34;14205:18;;;14198:62;-1:-1:-1;;;14276:19:1;;;14269:40;14326:19;;43526:258:0;13874:477:1;43526:258:0;43840:9;43811:39;;;;:28;:39;;;;;43853:12;43811:54;;43316:573;-1:-1:-1;;;;;43982:31:0;;;;;;:25;:31;;;;;;;;:85;;;;-1:-1:-1;;;;;;44039:28:0;;;;;;:24;:28;;;;;;;;44038:29;43982:85;43956:1106;;;44154:13;;44144:6;:23;;44110:155;;;;-1:-1:-1;;;44110:155:0;;14558:2:1;44110:155:0;;;14540:21:1;14597:2;14577:18;;;14570:30;14636:34;14616:18;;;14609:62;-1:-1:-1;;;14687:18:1;;;14680:44;14741:19;;44110:155:0;14356:410:1;44110:155:0;44348:13;;-1:-1:-1;;;;;10967:18:0;;10940:7;10967:18;;;;;;;;;;;44322:22;;:6;:22;:::i;:::-;:39;;44288:144;;;;-1:-1:-1;;;44288:144:0;;14973:2:1;44288:144:0;;;14955:21:1;15012:2;14992:18;;;14985:30;-1:-1:-1;;;15031:18:1;;;15024:49;15090:18;;44288:144:0;14771:343:1;44288:144:0;43956:1106;;;-1:-1:-1;;;;;44530:29:0;;;;;;:25;:29;;;;;;;;:85;;;;-1:-1:-1;;;;;;44585:30:0;;;;;;:24;:30;;;;;;;;44584:31;44530:85;44504:558;;;44702:13;;44692:6;:23;;44658:156;;;;-1:-1:-1;;;44658:156:0;;15321:2:1;44658:156:0;;;15303:21:1;15360:2;15340:18;;;15333:30;15399:34;15379:18;;;15372:62;-1:-1:-1;;;15450:18:1;;;15443:45;15505:19;;44658:156:0;15119:411:1;44504:558:0;-1:-1:-1;;;;;44845:28:0;;;;;;:24;:28;;;;;;;;44840:222;;44958:13;;-1:-1:-1;;;;;10967:18:0;;10940:7;10967:18;;;;;;;;;;;44932:22;;:6;:22;:::i;:::-;:39;;44898:144;;;;-1:-1:-1;;;44898:144:0;;14973:2:1;44898:144:0;;;14955:21:1;15012:2;14992:18;;;14985:30;-1:-1:-1;;;15031:18:1;;;15024:49;15090:18;;44898:144:0;14771:343:1;44898:144:0;45149:4;45100:28;10967:18;;;;;;;;;;;45207;;45183:42;;;;;;;45256:35;;-1:-1:-1;45280:11:0;;;;;;;45256:35;:61;;;;-1:-1:-1;45309:8:0;;-1:-1:-1;;;45309:8:0;;;;45308:9;45256:61;:110;;;;-1:-1:-1;;;;;;45335:31:0;;;;;;:25;:31;;;;;;;;45334:32;45256:110;:153;;;;-1:-1:-1;;;;;;45384:25:0;;;;;;:19;:25;;;;;;;;45383:26;45256:153;:194;;;;-1:-1:-1;;;;;;45427:23:0;;;;;;:19;:23;;;;;;;;45426:24;45256:194;45238:326;;;45477:8;:15;;-1:-1:-1;;;;45477:15:0;-1:-1:-1;;;45477:15:0;;;45509:10;:8;:10::i;:::-;45536:8;:16;;-1:-1:-1;;;;45536:16:0;;;45238:326;45595:8;;-1:-1:-1;;;45595:8:0;;;;45594:9;:55;;;;-1:-1:-1;;;;;;45620:29:0;;;;;;:25;:29;;;;;;;;45594:55;:85;;;;-1:-1:-1;45666:13:0;;;;45594:85;:153;;;;;45732:15;;45715:14;;:32;;;;:::i;:::-;45696:15;:51;;45594:153;:196;;;;-1:-1:-1;;;;;;45765:25:0;;;;;;:19;:25;;;;;;;;45764:26;45594:196;45576:282;;;45817:29;:27;:29::i;:::-;;45576:282;45886:8;;-1:-1:-1;;;;;45996:25:0;;45870:12;45996:25;;;:19;:25;;;;;;45886:8;-1:-1:-1;;;45886:8:0;;;;;45885:9;;45996:25;;:52;;-1:-1:-1;;;;;;46025:23:0;;;;;;:19;:23;;;;;;;;45996:52;45992:100;;;-1:-1:-1;46075:5:0;45992:100;46104:12;46209:7;46205:989;;;-1:-1:-1;;;;;46261:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46310:1;46294:13;;:17;46261:50;46257:788;;;46339:34;46369:3;46339:25;46350:13;;46339:6;:10;;:25;;;;:::i;:34::-;46332:41;;46442:13;;46422:16;;46415:4;:23;;;;:::i;:::-;46414:41;;;;:::i;:::-;46392:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46522:13:0;;46503:15;;46496:22;;:4;:22;:::i;:::-;46495:40;;;;:::i;:::-;46474:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46604:13:0;;46584:16;;46577:23;;:4;:23;:::i;:::-;46576:41;;;;:::i;:::-;46554:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46257:788:0;;-1:-1:-1;46257:788:0;;-1:-1:-1;;;;;46679:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46729:1;46714:12;;:16;46679:51;46675:370;;;46758:33;46787:3;46758:24;46769:12;;46758:6;:10;;:24;;;;:::i;:33::-;46751:40;;46859:12;;46840:15;;46833:4;:22;;;;:::i;:::-;46832:39;;;;:::i;:::-;46810:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46937:12:0;;46919:14;;46912:21;;:4;:21;:::i;:::-;46911:38;;;;:::i;:::-;46890:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;47017:12:0;;46998:15;;46991:22;;:4;:22;:::i;:::-;46990:39;;;;:::i;:::-;46968:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46675:370:0;47065:8;;47061:91;;47094:42;47110:4;47124;47131;47094:15;:42::i;:::-;47168:14;47178:4;47168:14;;:::i;:::-;;;46205:989;47206:33;47222:4;47228:2;47232:6;47206:15;:33::i;:::-;42370:4877;;;;42257:4990;;;:::o;3429:191::-;3522:6;;;-1:-1:-1;;;;;3539:17:0;;;-1:-1:-1;;;;;;3539:17:0;;;;;;;3572:40;;3522:6;;;3539:17;3522:6;;3572:40;;3503:16;;3572:40;3492:128;3429:191;:::o;41429:188::-;-1:-1:-1;;;;;41512:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41512:39:0;;;;;;;;;;41569:40;;41512:39;;:31;41569:40;;;41429:188;;:::o;23149:98::-;23207:7;23234:5;23238:1;23234;:5;:::i;:::-;23227:12;23149:98;-1:-1:-1;;;23149:98:0:o;23548:::-;23606:7;23633:5;23637:1;23633;:5;:::i;14915:733::-;-1:-1:-1;;;;;15055:20:0;;15047:70;;;;-1:-1:-1;;;15047:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15136:23:0;;15128:71;;;;-1:-1:-1;;;15128:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15296:17:0;;15272:21;15296:17;;;;;;;;;;;15332:23;;;;15324:74;;;;-1:-1:-1;;;15324:74:0;;15867:2:1;15324:74:0;;;15849:21:1;15906:2;15886:18;;;15879:30;15945:34;15925:18;;;15918:62;-1:-1:-1;;;15996:18:1;;;15989:36;16042:19;;15324:74:0;15665:402:1;15324:74:0;-1:-1:-1;;;;;15434:17:0;;;:9;:17;;;;;;;;;;;15454:22;;;15434:42;;15498:20;;;;;;;;:30;;15470:6;;15434:9;15498:30;;15470:6;;15498:30;:::i;:::-;;;;;;;;15563:9;-1:-1:-1;;;;;15546:35:0;15555:6;-1:-1:-1;;;;;15546:35:0;;15574:6;15546:35;;;;1645:25:1;;1633:2;1618:18;;1499:177;15546:35:0;;;;;;;;15036:612;14915:733;;;:::o;48377:1791::-;48460:4;48416:23;10967:18;;;;;;;;;;;48416:50;;48477:25;48573:17;;48539:18;;48505;;:52;;;;:::i;:::-;:85;;;;:::i;:::-;48477:113;-1:-1:-1;48601:12:0;48630:20;;;:46;;-1:-1:-1;48654:22:0;;48630:46;48626:85;;;48693:7;;;48377:1791::o;48626:85::-;48745:18;;:23;;48766:2;48745:23;:::i;:::-;48727:15;:41;48723:115;;;48803:18;;:23;;48824:2;48803:23;:::i;:::-;48785:41;;48723:115;48899:23;49012:1;48979:17;48944:18;;48926:15;:36;;;;:::i;:::-;48925:71;;;;:::i;:::-;:88;;;;:::i;:::-;48899:114;-1:-1:-1;49024:26:0;49053:36;:15;48899:114;49053:19;:36::i;:::-;49024:65;-1:-1:-1;49130:21:0;49164:36;49024:65;49164:16;:36::i;:::-;49213:18;49234:44;:21;49260:17;49234:25;:44::i;:::-;49213:65;;49291:23;49317:81;49370:17;49317:34;49332:18;;49317:10;:14;;:34;;;;:::i;:81::-;49291:107;;49409:22;49434:56;49472:17;49434:33;49449:17;;49434:10;:14;;:33;;;;:::i;:56::-;49409:81;-1:-1:-1;49503:23:0;49409:81;49529:28;49542:15;49529:10;:28;:::i;:::-;:45;;;;:::i;:::-;49608:1;49587:18;:22;;;49620:18;:22;;;49653:17;:21;;;49709:14;;49701:55;;49503:71;;-1:-1:-1;;;;;;49709:14:0;;49737;;49701:55;49608:1;49701:55;49737:14;49709;49701:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49687:69:0;;-1:-1:-1;;49773:19:0;;;;;:42;;;49814:1;49796:15;:19;49773:42;49769:278;;;49832:46;49845:15;49862;49832:12;:46::i;:::-;50002:18;;49898:137;;;16484:25:1;;;16540:2;16525:18;;16518:34;;;16568:18;;;16561:34;;;;49898:137:0;;;;;;16472:2:1;49898:137:0;;;49769:278;50081:15;;50073:87;;-1:-1:-1;;;;;50081:15:0;;;;50124:21;;50073:87;;;;50124:21;50081:15;50073:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48377:1791:0:o;50739:788::-;50830:15;50813:14;:32;50946:13;;50931:29;;-1:-1:-1;;;50931:29:0;;-1:-1:-1;;;;;50946:13:0;;;50931:29;;;1437:51:1;50796:4:0;;;;50931;;:14;;1410:18:1;;50931:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50900:60;;51010:20;51033:77;51094:5;51033:42;51058:16;;51033:20;:24;;:42;;;;:::i;:77::-;51010:100;-1:-1:-1;51215:16:0;;51211:110;;51264:13;;51248:61;;-1:-1:-1;;;;;51264:13:0;51287:6;51296:12;51248:15;:61::i;:::-;51433:13;;51458:11;;;-1:-1:-1;;;;;;51458:11:0;;;;-1:-1:-1;;;;;51433:13:0;;;;;;51458:9;;:11;;;;;51396:19;;51458:11;;;;;;;51396:19;51433:13;51458:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51485:12:0;;;;-1:-1:-1;51485:12:0;;-1:-1:-1;51485:12:0;51515:4;51508:11;;;;;50739:788;:::o;22792:98::-;22850:7;22877:5;22881:1;22877;:5;:::i;47255:589::-;47405:16;;;47419:1;47405:16;;;;;;;;47381:21;;47405:16;;;;;;;;;;-1:-1:-1;47405:16:0;47381:40;;47450:4;47432;47437:1;47432:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47432:23:0;;;-1:-1:-1;;;;;47432:23:0;;;;;47476:15;-1:-1:-1;;;;;47476:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47466:4;47471:1;47466:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47466:32:0;;;-1:-1:-1;;;;;47466:32:0;;;;;47511:62;47528:4;47543:15;47561:11;47511:8;:62::i;:::-;47612:224;;-1:-1:-1;;;47612:224:0;;-1:-1:-1;;;;;47612:15:0;:66;;;;:224;;47693:11;;47719:1;;47763:4;;47790;;47810:15;;47612:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47310:534;47255:589;:::o;47852:517::-;48000:62;48017:4;48032:15;48050:11;48000:8;:62::i;:::-;48105:256;;-1:-1:-1;;;48105:256:0;;48177:4;48105:256;;;18452:34:1;18502:18;;;18495:34;;;48223:1:0;18545:18:1;;;18538:34;;;18588:18;;;18581:34;32965:6:0;18631:19:1;;;18624:44;48335:15:0;18684:19:1;;;18677:35;48105:15:0;-1:-1:-1;;;;;48105:31:0;;;;48144:9;;18386:19:1;;48105:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47852:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:247::-;1740:6;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;1848:9;1835:23;1867:31;1892:5;1867:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6772:128::-;6812:3;6843:1;6839:6;6836:1;6833:13;6830:39;;;6849:18;;:::i;:::-;-1:-1:-1;6885:9:1;;6772:128::o;11716:184::-;11786:6;11839:2;11827:9;11818:7;11814:23;11810:32;11807:52;;;11855:1;11852;11845:12;11807:52;-1:-1:-1;11878:16:1;;11716:184;-1:-1:-1;11716:184:1:o;12713:401::-;12915:2;12897:21;;;12954:2;12934:18;;;12927:30;12993:34;12988:2;12973:18;;12966:62;-1:-1:-1;;;13059:2:1;13044:18;;13037:35;13104:3;13089:19;;12713:401::o;13119:399::-;13321:2;13303:21;;;13360:2;13340:18;;;13333:30;13399:34;13394:2;13379:18;;13372:62;-1:-1:-1;;;13465:2:1;13450:18;;13443:33;13508:3;13493:19;;13119:399::o;15535:125::-;15575:4;15603:1;15600;15597:8;15594:34;;;15608:18;;:::i;:::-;-1:-1:-1;15645:9:1;;15535:125::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:251;16940:6;16993:2;16981:9;16972:7;16968:23;16964:32;16961:52;;;17009:1;17006;16999:12;16961:52;17041:9;17035:16;17060:31;17085:5;17060:31;:::i;17126:980::-;17388:4;17436:3;17425:9;17421:19;17467:6;17456:9;17449:25;17493:2;17531:6;17526:2;17515:9;17511:18;17504:34;17574:3;17569:2;17558:9;17554:18;17547:31;17598:6;17633;17627:13;17664:6;17656;17649:22;17702:3;17691:9;17687:19;17680:26;;17741:2;17733:6;17729:15;17715:29;;17762:1;17772:195;17786:6;17783:1;17780:13;17772:195;;;17851:13;;-1:-1:-1;;;;;17847:39:1;17835:52;;17942:15;;;;17907:12;;;;17883:1;17801:9;17772:195;;;-1:-1:-1;;;;;;;18023:32:1;;;;18018:2;18003:18;;17996:60;-1:-1:-1;;;18087:3:1;18072:19;18065:35;17984:3;17126:980;-1:-1:-1;;;17126:980:1:o;18723:306::-;18811:6;18819;18827;18880:2;18868:9;18859:7;18855:23;18851:32;18848:52;;;18896:1;18893;18886:12;18848:52;18925:9;18919:16;18909:26;;18975:2;18964:9;18960:18;18954:25;18944:35;;19019:2;19008:9;19004:18;18998:25;18988:35;;18723:306;;;;;:::o
Swarm Source
ipfs://7ca4f51a5106061b49cfe18f6b2239cc4b95a0bed615526ad3d788c5a8017dce
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.