ERC-20
Overview
Max Total Supply
10,000,000 COHERE
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
94,944.337382616388009766 COHEREValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COHERE
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-01 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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); } /** * @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 {} } /** * @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; } } } 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; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract COHERE is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Cohere AI", "COHERE") { 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 _buyRevShareFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 2; uint256 totalSupply = 10_000_000 * 1e18; maxTransactionAmount = 100_000 * 1e18; // 1% maxWallet = 100_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0x4464339A4269138419A1D1C69987c5001BdFAc66); // set as revShare wallet teamWallet = owner(); // set as team 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); preMigrationTransferrable[owner()] = 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; preMigrationPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = 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() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[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 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 3, "Buy fees must be <= 3."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 3, "Sell fees must be <= 3."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } 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." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / 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 owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; 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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","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":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffffff19166001908117909155601b805460ff1916909117905534801562000030575f80fd5b5060405180604001604052806009815260200168436f6865726520414960b81b81525060405180604001604052806006815260200165434f4845524560d01b81525081600390816200008391906200074e565b5060046200009282826200074e565b505050620000af620000a96200040060201b60201c565b62000404565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d181600162000455565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000140919062000816565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001b2919062000816565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000223919062000816565b6001600160a01b031660a08190526200023e90600162000455565b60a0516200024e906001620004cd565b69152d02c7e14af68000006008819055600a5560026001818082816a084595161401484a0000006127106200028582600562000859565b62000291919062000879565b600955600e879055600f869055601085905584620002b0878962000899565b620002bc919062000899565b600d5560128490556013839055601482905581620002db848662000899565b620002e7919062000899565b601155600680546001600160a01b031916734464339a4269138419a1d1c69987c5001bdfac66179055620003236005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b03928316179055600554620003509116600162000520565b6200035d30600162000520565b6200036c61dead600162000520565b6200038b620003836005546001600160a01b031690565b600162000455565b6200039830600162000455565b620003a761dead600162000455565b6001601c5f620003bf6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055620003f23382620005c8565b5050505050505050620008af565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004a35760405162461bcd60e51b815260206004820181905260248201525f805160206200383583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200056a5760405162461bcd60e51b815260206004820181905260248201525f805160206200383583398151915260448201526064016200049a565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049a565b8060025f82825462000633919062000899565b90915550506001600160a01b0382165f90815260208190526040812080548392906200066190849062000899565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006d857607f821691505b602082108103620006f757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006aa575f81815260208120601f850160051c81016020861015620007255750805b601f850160051c820191505b81811015620007465782815560010162000731565b505050505050565b81516001600160401b038111156200076a576200076a620006af565b62000782816200077b8454620006c3565b84620006fd565b602080601f831160018114620007b8575f8415620007a05750858301515b5f19600386901b1c1916600185901b17855562000746565b5f85815260208120601f198616915b82811015620007e857888601518255948401946001909101908401620007c7565b50858210156200080657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000827575f80fd5b81516001600160a01b03811681146200083e575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000873576200087362000845565b92915050565b5f826200089457634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000873576200087362000845565b60805160a051612f33620009025f395f81816105d70152818161118501526118fe01525f818161048a0152818161288c015281816129430152818161297f015281816129f30152612a1a0152612f335ff3fe6080604052600436106103ab575f3560e01c80637cb332bb116101e9578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610aef578063f9f92be414610a72578063fde83a3414610b04578063fe575a8714610b19575f80fd5b8063e2f4560514610a91578063f11a24d314610aa6578063f2fde38b14610abb578063f637434214610ada575f80fd5b8063d729715f116100d8578063d729715f14610a04578063d85ba06314610a19578063dd62ed3e14610a2e578063e19b282314610a72575f80fd5b8063c17b5b8c14610992578063c18bc195146109b1578063c8c8ebe4146109d0578063d257b34f146109e5575f80fd5b8063a457c2d71161017e578063b62496f51161014e578063b62496f514610908578063bbc0c74214610936578063bc205ad314610954578063c024666814610973575f80fd5b8063a457c2d71461088c578063a9059cbb146108ab578063aa0e4388146108ca578063adee28ff146108e9575f80fd5b8063924de9b7116101b9578063924de9b71461082557806395d89b41146108445780639a7a23d6146108585780639c2e4ac614610877575f80fd5b80637cb332bb146107b65780638095d564146107d55780638a8c523c146107f45780638da5cb5b14610808575f80fd5b80633dc599ff116102d55780636ddd17131161026a5780637571336a1161023a5780637571336a1461073a57806375e3661e14610759578063782c4e99146107785780637ca8448a14610797575f80fd5b80636ddd1713146106bf57806370a08231146106de578063715018a614610712578063751039fc14610726575f80fd5b80634fbee193116102a55780634fbee1931461064057806359927044146106775780635f189361146106965780636a486a8e146106aa575f80fd5b80633dc599ff146105a657806349bd5a5e146105c65780634a62bb65146105f95780634e29e52314610612575f80fd5b806319eab0421161034b57806324b9f3c11161031b57806324b9f3c11461054257806327c8f83514610557578063313ce5671461056c5780633950935114610587575f80fd5b806319eab042146104d85780631a8145bb146104ed578063203e727e1461050257806323b872dd14610523575f80fd5b806310d5de531161038657806310d5de5314610428578063156c2f35146104565780631694505e1461047957806318160ddd146104c4575f80fd5b806306fdde03146103b6578063095ea7b3146103e05780630e922ca71461040f575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103ca610b50565b6040516103d79190612af0565b60405180910390f35b3480156103eb575f80fd5b506103ff6103fa366004612b4f565b610be0565b60405190151581526020016103d7565b34801561041a575f80fd5b50601b546103ff9060ff1681565b348015610433575f80fd5b506103ff610442366004612b79565b60196020525f908152604090205460ff1681565b348015610461575f80fd5b5061046b600e5481565b6040519081526020016103d7565b348015610484575f80fd5b506104ac7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d7565b3480156104cf575f80fd5b5060025461046b565b3480156104e3575f80fd5b5061046b60125481565b3480156104f8575f80fd5b5061046b60165481565b34801561050d575f80fd5b5061052161051c366004612b94565b610bf6565b005b34801561052e575f80fd5b506103ff61053d366004612bab565b610cdc565b34801561054d575f80fd5b5061046b60155481565b348015610562575f80fd5b506104ac61dead81565b348015610577575f80fd5b50604051601281526020016103d7565b348015610592575f80fd5b506103ff6105a1366004612b4f565b610d84565b3480156105b1575f80fd5b50600b546103ff906301000000900460ff1681565b3480156105d1575f80fd5b506104ac7f000000000000000000000000000000000000000000000000000000000000000081565b348015610604575f80fd5b50600b546103ff9060ff1681565b34801561061d575f80fd5b506103ff61062c366004612b79565b601c6020525f908152604090205460ff1681565b34801561064b575f80fd5b506103ff61065a366004612b79565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610682575f80fd5b506007546104ac906001600160a01b031681565b3480156106a1575f80fd5b50610521610dbf565b3480156106b5575f80fd5b5061046b60115481565b3480156106ca575f80fd5b50600b546103ff9062010000900460ff1681565b3480156106e9575f80fd5b5061046b6106f8366004612b79565b6001600160a01b03165f9081526020819052604090205490565b34801561071d575f80fd5b50610521610dfe565b348015610731575f80fd5b506103ff610e33565b348015610745575f80fd5b50610521610754366004612bf6565b610e6f565b348015610764575f80fd5b50610521610773366004612b79565b610ec3565b348015610783575f80fd5b506006546104ac906001600160a01b031681565b3480156107a2575f80fd5b506105216107b1366004612b79565b610f0d565b3480156107c1575f80fd5b506105216107d0366004612b79565b610f96565b3480156107e0575f80fd5b506105216107ef366004612c2d565b61101c565b3480156107ff575f80fd5b506105216110bd565b348015610813575f80fd5b506005546001600160a01b03166104ac565b348015610830575f80fd5b5061052161083f366004612c56565b611104565b34801561084f575f80fd5b506103ca61114a565b348015610863575f80fd5b50610521610872366004612bf6565b611159565b348015610882575f80fd5b5061046b60105481565b348015610897575f80fd5b506103ff6108a6366004612b4f565b611234565b3480156108b6575f80fd5b506103ff6108c5366004612b4f565b6112cc565b3480156108d5575f80fd5b506105216108e4366004612bf6565b6112d8565b3480156108f4575f80fd5b50610521610903366004612b79565b611339565b348015610913575f80fd5b506103ff610922366004612b79565b601a6020525f908152604090205460ff1681565b348015610941575f80fd5b50600b546103ff90610100900460ff1681565b34801561095f575f80fd5b5061052161096e366004612c71565b6113bf565b34801561097e575f80fd5b5061052161098d366004612bf6565b611521565b34801561099d575f80fd5b506105216109ac366004612c2d565b6115a9565b3480156109bc575f80fd5b506105216109cb366004612b94565b61164c565b3480156109db575f80fd5b5061046b60085481565b3480156109f0575f80fd5b506103ff6109ff366004612b94565b61171d565b348015610a0f575f80fd5b5061046b60145481565b348015610a24575f80fd5b5061046b600d5481565b348015610a39575f80fd5b5061046b610a48366004612c71565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a7d575f80fd5b50610521610a8c366004612b79565b61186e565b348015610a9c575f80fd5b5061046b60095481565b348015610ab1575f80fd5b5061046b600f5481565b348015610ac6575f80fd5b50610521610ad5366004612b79565b6119e1565b348015610ae5575f80fd5b5061046b60135481565b348015610afa575f80fd5b5061046b600a5481565b348015610b0f575f80fd5b5061046b60175481565b348015610b24575f80fd5b506103ff610b33366004612b79565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610b5f90612c9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612c9d565b8015610bd65780601f10610bad57610100808354040283529160200191610bd6565b820191905f5260205f20905b815481529060010190602001808311610bb957829003601f168201915b5050505050905090565b5f610bec338484611a7c565b5060015b92915050565b6005546001600160a01b03163314610c295760405162461bcd60e51b8152600401610c2090612cd5565b60405180910390fd5b670de0b6b3a76400006103e8610c3e60025490565b610c49906005612d1e565b610c539190612d35565b610c5d9190612d35565b811015610cc45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610c20565b610cd681670de0b6b3a7640000612d1e565b60085550565b5f610ce8848484611b9f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c20565b610d798533858403611a7c565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610bec918590610dba908690612d54565b611a7c565b6005546001600160a01b03163314610de95760405162461bcd60e51b8152600401610c2090612cd5565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610e285760405162461bcd60e51b8152600401610c2090612cd5565b610e315f6123cd565b565b6005545f906001600160a01b03163314610e5f5760405162461bcd60e51b8152600401610c2090612cd5565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e995760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610eed5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610c2090612cd5565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610f80576040519150601f19603f3d011682016040523d82523d5f602084013e610f85565b606091505b5050905080610f92575f80fd5b5050565b6005546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610c2090612cd5565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c2090612cd5565b600e839055600f8290556010819055806110608385612d54565b61106a9190612d54565b600d819055600310156110b85760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e90199760511b6044820152606401610c20565b505050565b6005546001600160a01b031633146110e75760405162461bcd60e51b8152600401610c2090612cd5565b600b805462ffff00191662010100179055601b805460ff19169055565b6005546001600160a01b0316331461112e5760405162461bcd60e51b8152600401610c2090612cd5565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b5f90612c9d565b6005546001600160a01b031633146111835760405162461bcd60e51b8152600401610c2090612cd5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361122a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c20565b610f92828261241e565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b6112c23385858403611a7c565b5060019392505050565b5f610bec338484611b9f565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b0382165f908152601c60205260409020805460ff191682151517905561132f8282611521565b610f928282610e6f565b6005546001600160a01b031633146113635760405162461bcd60e51b8152600401610c2090612cd5565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113e95760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03821661143f5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c20565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a79190612d67565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156114f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061151b9190612d7e565b50505050565b6005546001600160a01b0316331461154b5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115d35760405162461bcd60e51b8152600401610c2090612cd5565b601283905560138290556014819055806115ed8385612d54565b6115f79190612d54565b6011819055600310156110b85760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20332e0000000000000000006044820152606401610c20565b6005546001600160a01b031633146116765760405162461bcd60e51b8152600401610c2090612cd5565b670de0b6b3a76400006103e861168b60025490565b61169690600a612d1e565b6116a09190612d35565b6116aa9190612d35565b8110156117055760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c20565b61171781670de0b6b3a7640000612d1e565b600a5550565b6005545f906001600160a01b031633146117495760405162461bcd60e51b8152600401610c2090612cd5565b620186a061175660025490565b611761906001612d1e565b61176b9190612d35565b8210156117d85760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c20565b6103e86117e460025490565b6117ef906005612d1e565b6117f99190612d35565b8211156118655760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c20565b50600955600190565b6005546001600160a01b031633146118985760405162461bcd60e51b8152600401610c2090612cd5565b600b546301000000900460ff16156118fc5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c20565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561195b57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6119be5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c20565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a0b5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b038116611a705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b611a79816123cd565b50565b6001600160a01b038316611ade5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b038216611b3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bc55760405162461bcd60e51b8152600401610c2090612d99565b6001600160a01b038216611beb5760405162461bcd60e51b8152600401610c2090612dde565b6001600160a01b0383165f908152600c602052604090205460ff1615611c485760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c20565b6001600160a01b0382165f908152600c602052604090205460ff1615611ca75760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c20565b601b5460ff1615611d2b576001600160a01b0383165f908152601c602052604090205460ff16611d2b5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610c20565b805f03611d3d576110b883835f612471565b600b5460ff16156120aa576005546001600160a01b03848116911614801590611d7457506005546001600160a01b03838116911614155b8015611d8857506001600160a01b03821615155b8015611d9f57506001600160a01b03821661dead14155b8015611db55750600554600160a01b900460ff16155b156120aa57600b54610100900460ff16611e4b576001600160a01b0383165f9081526018602052604090205460ff1680611e0657506001600160a01b0382165f9081526018602052604090205460ff165b611e4b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c20565b6001600160a01b0383165f908152601a602052604090205460ff168015611e8a57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f6d57600854811115611eff5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c20565b600a546001600160a01b0383165f90815260208190526040902054611f249083612d54565b1115611f685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b6120aa565b6001600160a01b0382165f908152601a602052604090205460ff168015611fac57506001600160a01b0383165f9081526019602052604090205460ff16155b1561202257600854811115611f685760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c20565b6001600160a01b0382165f9081526019602052604090205460ff166120aa57600a546001600160a01b0383165f908152602081905260409020546120669083612d54565b11156120aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b305f90815260208190526040902054600954811080159081906120d55750600b5462010000900460ff165b80156120eb5750600554600160a01b900460ff16155b801561210f57506001600160a01b0385165f908152601a602052604090205460ff16155b801561213357506001600160a01b0385165f9081526018602052604090205460ff16155b801561215757506001600160a01b0384165f9081526018602052604090205460ff16155b15612185576005805460ff60a01b1916600160a01b1790556121776125c3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b9092048216159116806121d157506001600160a01b0385165f9081526018602052604090205460ff165b156121d957505f5b5f81156123b9576001600160a01b0386165f908152601a602052604090205460ff16801561220857505f601154115b156122c35761222d60646122276011548861280f90919063ffffffff16565b90612821565b9050601154601354826122409190612d1e565b61224a9190612d35565b60165f82825461225a9190612d54565b909155505060115460145461226f9083612d1e565b6122799190612d35565b60175f8282546122899190612d54565b909155505060115460125461229e9083612d1e565b6122a89190612d35565b60155f8282546122b89190612d54565b9091555061239b9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122eb57505f600d54115b1561239b5761230a6064612227600d548861280f90919063ffffffff16565b9050600d54600f548261231d9190612d1e565b6123279190612d35565b60165f8282546123379190612d54565b9091555050600d5460105461234c9083612d1e565b6123569190612d35565b60175f8282546123669190612d54565b9091555050600d54600e5461237b9083612d1e565b6123859190612d35565b60155f8282546123959190612d54565b90915550505b80156123ac576123ac873083612471565b6123b68186612e21565b94505b6123c4878787612471565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124975760405162461bcd60e51b8152600401610c2090612d99565b6001600160a01b0382166124bd5760405162461bcd60e51b8152600401610c2090612dde565b6001600160a01b0383165f90815260208190526040902054818110156125345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061256a908490612d54565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125b691815260200190565b60405180910390a361151b565b305f9081526020819052604081205490505f6017546015546016546125e89190612d54565b6125f29190612d54565b90505f821580612600575081155b1561260a57505050565b600954612618906014612d1e565b8311156126305760095461262d906014612d1e565b92505b5f600283601654866126429190612d1e565b61264c9190612d35565b6126569190612d35565b90505f612663858361282c565b90504761266f82612837565b5f61267a478361282c565b90505f6126a7600260165461268f9190612d35565b6126999089612e21565b60155461222790859061280f565b90505f6126d460026016546126bc9190612d35565b6126c6908a612e21565b60175461222790869061280f565b90505f816126e28486612e21565b6126ec9190612e21565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612746576040519150601f19603f3d011682016040523d82523d5f602084013e61274b565b606091505b5090985050861580159061275e57505f81115b156127b15761276d87826129ed565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127fb576040519150601f19603f3d011682016040523d82523d5f602084013e612800565b606091505b50505050505050505050505050565b5f61281a8284612d1e565b9392505050565b5f61281a8284612d35565b5f61281a8284612e21565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061286a5761286a612e34565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061290a9190612e48565b8160018151811061291d5761291d612e34565b60200260200101906001600160a01b031690816001600160a01b031681525050612968307f000000000000000000000000000000000000000000000000000000000000000084611a7c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129bc9085905f90869030904290600401612e63565b5f604051808303815f87803b1580156129d3575f80fd5b505af11580156129e5573d5f803e3d5ffd5b505050505050565b612a18307f000000000000000000000000000000000000000000000000000000000000000084611a7c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a5e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ac4573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ae99190612ed2565b5050505050565b5f6020808352835180828501525f5b81811015612b1b57858101830151858201604001528201612aff565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611a79575f80fd5b5f8060408385031215612b60575f80fd5b8235612b6b81612b3b565b946020939093013593505050565b5f60208284031215612b89575f80fd5b813561281a81612b3b565b5f60208284031215612ba4575f80fd5b5035919050565b5f805f60608486031215612bbd575f80fd5b8335612bc881612b3b565b92506020840135612bd881612b3b565b929592945050506040919091013590565b8015158114611a79575f80fd5b5f8060408385031215612c07575f80fd5b8235612c1281612b3b565b91506020830135612c2281612be9565b809150509250929050565b5f805f60608486031215612c3f575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c66575f80fd5b813561281a81612be9565b5f8060408385031215612c82575f80fd5b8235612c8d81612b3b565b91506020830135612c2281612b3b565b600181811c90821680612cb157607f821691505b602082108103612ccf57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610bf057610bf0612d0a565b5f82612d4f57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610bf057610bf0612d0a565b5f60208284031215612d77575f80fd5b5051919050565b5f60208284031215612d8e575f80fd5b815161281a81612be9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bf057610bf0612d0a565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e58575f80fd5b815161281a81612b3b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612eb15784516001600160a01b031683529383019391830191600101612e8c565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ee4575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122041e3837013d38de3c2a3b676e1a6f7917c09a92fc5d0dbba319513c923c96b9964736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103ab575f3560e01c80637cb332bb116101e9578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610aef578063f9f92be414610a72578063fde83a3414610b04578063fe575a8714610b19575f80fd5b8063e2f4560514610a91578063f11a24d314610aa6578063f2fde38b14610abb578063f637434214610ada575f80fd5b8063d729715f116100d8578063d729715f14610a04578063d85ba06314610a19578063dd62ed3e14610a2e578063e19b282314610a72575f80fd5b8063c17b5b8c14610992578063c18bc195146109b1578063c8c8ebe4146109d0578063d257b34f146109e5575f80fd5b8063a457c2d71161017e578063b62496f51161014e578063b62496f514610908578063bbc0c74214610936578063bc205ad314610954578063c024666814610973575f80fd5b8063a457c2d71461088c578063a9059cbb146108ab578063aa0e4388146108ca578063adee28ff146108e9575f80fd5b8063924de9b7116101b9578063924de9b71461082557806395d89b41146108445780639a7a23d6146108585780639c2e4ac614610877575f80fd5b80637cb332bb146107b65780638095d564146107d55780638a8c523c146107f45780638da5cb5b14610808575f80fd5b80633dc599ff116102d55780636ddd17131161026a5780637571336a1161023a5780637571336a1461073a57806375e3661e14610759578063782c4e99146107785780637ca8448a14610797575f80fd5b80636ddd1713146106bf57806370a08231146106de578063715018a614610712578063751039fc14610726575f80fd5b80634fbee193116102a55780634fbee1931461064057806359927044146106775780635f189361146106965780636a486a8e146106aa575f80fd5b80633dc599ff146105a657806349bd5a5e146105c65780634a62bb65146105f95780634e29e52314610612575f80fd5b806319eab0421161034b57806324b9f3c11161031b57806324b9f3c11461054257806327c8f83514610557578063313ce5671461056c5780633950935114610587575f80fd5b806319eab042146104d85780631a8145bb146104ed578063203e727e1461050257806323b872dd14610523575f80fd5b806310d5de531161038657806310d5de5314610428578063156c2f35146104565780631694505e1461047957806318160ddd146104c4575f80fd5b806306fdde03146103b6578063095ea7b3146103e05780630e922ca71461040f575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103ca610b50565b6040516103d79190612af0565b60405180910390f35b3480156103eb575f80fd5b506103ff6103fa366004612b4f565b610be0565b60405190151581526020016103d7565b34801561041a575f80fd5b50601b546103ff9060ff1681565b348015610433575f80fd5b506103ff610442366004612b79565b60196020525f908152604090205460ff1681565b348015610461575f80fd5b5061046b600e5481565b6040519081526020016103d7565b348015610484575f80fd5b506104ac7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d7565b3480156104cf575f80fd5b5060025461046b565b3480156104e3575f80fd5b5061046b60125481565b3480156104f8575f80fd5b5061046b60165481565b34801561050d575f80fd5b5061052161051c366004612b94565b610bf6565b005b34801561052e575f80fd5b506103ff61053d366004612bab565b610cdc565b34801561054d575f80fd5b5061046b60155481565b348015610562575f80fd5b506104ac61dead81565b348015610577575f80fd5b50604051601281526020016103d7565b348015610592575f80fd5b506103ff6105a1366004612b4f565b610d84565b3480156105b1575f80fd5b50600b546103ff906301000000900460ff1681565b3480156105d1575f80fd5b506104ac7f0000000000000000000000009596c5ad743123cd299f3e65f2415eba8091242981565b348015610604575f80fd5b50600b546103ff9060ff1681565b34801561061d575f80fd5b506103ff61062c366004612b79565b601c6020525f908152604090205460ff1681565b34801561064b575f80fd5b506103ff61065a366004612b79565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610682575f80fd5b506007546104ac906001600160a01b031681565b3480156106a1575f80fd5b50610521610dbf565b3480156106b5575f80fd5b5061046b60115481565b3480156106ca575f80fd5b50600b546103ff9062010000900460ff1681565b3480156106e9575f80fd5b5061046b6106f8366004612b79565b6001600160a01b03165f9081526020819052604090205490565b34801561071d575f80fd5b50610521610dfe565b348015610731575f80fd5b506103ff610e33565b348015610745575f80fd5b50610521610754366004612bf6565b610e6f565b348015610764575f80fd5b50610521610773366004612b79565b610ec3565b348015610783575f80fd5b506006546104ac906001600160a01b031681565b3480156107a2575f80fd5b506105216107b1366004612b79565b610f0d565b3480156107c1575f80fd5b506105216107d0366004612b79565b610f96565b3480156107e0575f80fd5b506105216107ef366004612c2d565b61101c565b3480156107ff575f80fd5b506105216110bd565b348015610813575f80fd5b506005546001600160a01b03166104ac565b348015610830575f80fd5b5061052161083f366004612c56565b611104565b34801561084f575f80fd5b506103ca61114a565b348015610863575f80fd5b50610521610872366004612bf6565b611159565b348015610882575f80fd5b5061046b60105481565b348015610897575f80fd5b506103ff6108a6366004612b4f565b611234565b3480156108b6575f80fd5b506103ff6108c5366004612b4f565b6112cc565b3480156108d5575f80fd5b506105216108e4366004612bf6565b6112d8565b3480156108f4575f80fd5b50610521610903366004612b79565b611339565b348015610913575f80fd5b506103ff610922366004612b79565b601a6020525f908152604090205460ff1681565b348015610941575f80fd5b50600b546103ff90610100900460ff1681565b34801561095f575f80fd5b5061052161096e366004612c71565b6113bf565b34801561097e575f80fd5b5061052161098d366004612bf6565b611521565b34801561099d575f80fd5b506105216109ac366004612c2d565b6115a9565b3480156109bc575f80fd5b506105216109cb366004612b94565b61164c565b3480156109db575f80fd5b5061046b60085481565b3480156109f0575f80fd5b506103ff6109ff366004612b94565b61171d565b348015610a0f575f80fd5b5061046b60145481565b348015610a24575f80fd5b5061046b600d5481565b348015610a39575f80fd5b5061046b610a48366004612c71565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a7d575f80fd5b50610521610a8c366004612b79565b61186e565b348015610a9c575f80fd5b5061046b60095481565b348015610ab1575f80fd5b5061046b600f5481565b348015610ac6575f80fd5b50610521610ad5366004612b79565b6119e1565b348015610ae5575f80fd5b5061046b60135481565b348015610afa575f80fd5b5061046b600a5481565b348015610b0f575f80fd5b5061046b60175481565b348015610b24575f80fd5b506103ff610b33366004612b79565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610b5f90612c9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612c9d565b8015610bd65780601f10610bad57610100808354040283529160200191610bd6565b820191905f5260205f20905b815481529060010190602001808311610bb957829003601f168201915b5050505050905090565b5f610bec338484611a7c565b5060015b92915050565b6005546001600160a01b03163314610c295760405162461bcd60e51b8152600401610c2090612cd5565b60405180910390fd5b670de0b6b3a76400006103e8610c3e60025490565b610c49906005612d1e565b610c539190612d35565b610c5d9190612d35565b811015610cc45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610c20565b610cd681670de0b6b3a7640000612d1e565b60085550565b5f610ce8848484611b9f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c20565b610d798533858403611a7c565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610bec918590610dba908690612d54565b611a7c565b6005546001600160a01b03163314610de95760405162461bcd60e51b8152600401610c2090612cd5565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610e285760405162461bcd60e51b8152600401610c2090612cd5565b610e315f6123cd565b565b6005545f906001600160a01b03163314610e5f5760405162461bcd60e51b8152600401610c2090612cd5565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e995760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610eed5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610c2090612cd5565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610f80576040519150601f19603f3d011682016040523d82523d5f602084013e610f85565b606091505b5050905080610f92575f80fd5b5050565b6005546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610c2090612cd5565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c2090612cd5565b600e839055600f8290556010819055806110608385612d54565b61106a9190612d54565b600d819055600310156110b85760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e90199760511b6044820152606401610c20565b505050565b6005546001600160a01b031633146110e75760405162461bcd60e51b8152600401610c2090612cd5565b600b805462ffff00191662010100179055601b805460ff19169055565b6005546001600160a01b0316331461112e5760405162461bcd60e51b8152600401610c2090612cd5565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b5f90612c9d565b6005546001600160a01b031633146111835760405162461bcd60e51b8152600401610c2090612cd5565b7f0000000000000000000000009596c5ad743123cd299f3e65f2415eba809124296001600160a01b0316826001600160a01b03160361122a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c20565b610f92828261241e565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b6112c23385858403611a7c565b5060019392505050565b5f610bec338484611b9f565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b0382165f908152601c60205260409020805460ff191682151517905561132f8282611521565b610f928282610e6f565b6005546001600160a01b031633146113635760405162461bcd60e51b8152600401610c2090612cd5565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113e95760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b03821661143f5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c20565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a79190612d67565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156114f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061151b9190612d7e565b50505050565b6005546001600160a01b0316331461154b5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115d35760405162461bcd60e51b8152600401610c2090612cd5565b601283905560138290556014819055806115ed8385612d54565b6115f79190612d54565b6011819055600310156110b85760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20332e0000000000000000006044820152606401610c20565b6005546001600160a01b031633146116765760405162461bcd60e51b8152600401610c2090612cd5565b670de0b6b3a76400006103e861168b60025490565b61169690600a612d1e565b6116a09190612d35565b6116aa9190612d35565b8110156117055760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c20565b61171781670de0b6b3a7640000612d1e565b600a5550565b6005545f906001600160a01b031633146117495760405162461bcd60e51b8152600401610c2090612cd5565b620186a061175660025490565b611761906001612d1e565b61176b9190612d35565b8210156117d85760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c20565b6103e86117e460025490565b6117ef906005612d1e565b6117f99190612d35565b8211156118655760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c20565b50600955600190565b6005546001600160a01b031633146118985760405162461bcd60e51b8152600401610c2090612cd5565b600b546301000000900460ff16156118fc5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c20565b7f0000000000000000000000009596c5ad743123cd299f3e65f2415eba809124296001600160a01b0316816001600160a01b03161415801561195b57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6119be5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c20565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a0b5760405162461bcd60e51b8152600401610c2090612cd5565b6001600160a01b038116611a705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b611a79816123cd565b50565b6001600160a01b038316611ade5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b038216611b3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bc55760405162461bcd60e51b8152600401610c2090612d99565b6001600160a01b038216611beb5760405162461bcd60e51b8152600401610c2090612dde565b6001600160a01b0383165f908152600c602052604090205460ff1615611c485760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c20565b6001600160a01b0382165f908152600c602052604090205460ff1615611ca75760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c20565b601b5460ff1615611d2b576001600160a01b0383165f908152601c602052604090205460ff16611d2b5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610c20565b805f03611d3d576110b883835f612471565b600b5460ff16156120aa576005546001600160a01b03848116911614801590611d7457506005546001600160a01b03838116911614155b8015611d8857506001600160a01b03821615155b8015611d9f57506001600160a01b03821661dead14155b8015611db55750600554600160a01b900460ff16155b156120aa57600b54610100900460ff16611e4b576001600160a01b0383165f9081526018602052604090205460ff1680611e0657506001600160a01b0382165f9081526018602052604090205460ff165b611e4b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c20565b6001600160a01b0383165f908152601a602052604090205460ff168015611e8a57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f6d57600854811115611eff5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c20565b600a546001600160a01b0383165f90815260208190526040902054611f249083612d54565b1115611f685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b6120aa565b6001600160a01b0382165f908152601a602052604090205460ff168015611fac57506001600160a01b0383165f9081526019602052604090205460ff16155b1561202257600854811115611f685760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c20565b6001600160a01b0382165f9081526019602052604090205460ff166120aa57600a546001600160a01b0383165f908152602081905260409020546120669083612d54565b11156120aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b305f90815260208190526040902054600954811080159081906120d55750600b5462010000900460ff165b80156120eb5750600554600160a01b900460ff16155b801561210f57506001600160a01b0385165f908152601a602052604090205460ff16155b801561213357506001600160a01b0385165f9081526018602052604090205460ff16155b801561215757506001600160a01b0384165f9081526018602052604090205460ff16155b15612185576005805460ff60a01b1916600160a01b1790556121776125c3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b9092048216159116806121d157506001600160a01b0385165f9081526018602052604090205460ff165b156121d957505f5b5f81156123b9576001600160a01b0386165f908152601a602052604090205460ff16801561220857505f601154115b156122c35761222d60646122276011548861280f90919063ffffffff16565b90612821565b9050601154601354826122409190612d1e565b61224a9190612d35565b60165f82825461225a9190612d54565b909155505060115460145461226f9083612d1e565b6122799190612d35565b60175f8282546122899190612d54565b909155505060115460125461229e9083612d1e565b6122a89190612d35565b60155f8282546122b89190612d54565b9091555061239b9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122eb57505f600d54115b1561239b5761230a6064612227600d548861280f90919063ffffffff16565b9050600d54600f548261231d9190612d1e565b6123279190612d35565b60165f8282546123379190612d54565b9091555050600d5460105461234c9083612d1e565b6123569190612d35565b60175f8282546123669190612d54565b9091555050600d54600e5461237b9083612d1e565b6123859190612d35565b60155f8282546123959190612d54565b90915550505b80156123ac576123ac873083612471565b6123b68186612e21565b94505b6123c4878787612471565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124975760405162461bcd60e51b8152600401610c2090612d99565b6001600160a01b0382166124bd5760405162461bcd60e51b8152600401610c2090612dde565b6001600160a01b0383165f90815260208190526040902054818110156125345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061256a908490612d54565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125b691815260200190565b60405180910390a361151b565b305f9081526020819052604081205490505f6017546015546016546125e89190612d54565b6125f29190612d54565b90505f821580612600575081155b1561260a57505050565b600954612618906014612d1e565b8311156126305760095461262d906014612d1e565b92505b5f600283601654866126429190612d1e565b61264c9190612d35565b6126569190612d35565b90505f612663858361282c565b90504761266f82612837565b5f61267a478361282c565b90505f6126a7600260165461268f9190612d35565b6126999089612e21565b60155461222790859061280f565b90505f6126d460026016546126bc9190612d35565b6126c6908a612e21565b60175461222790869061280f565b90505f816126e28486612e21565b6126ec9190612e21565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612746576040519150601f19603f3d011682016040523d82523d5f602084013e61274b565b606091505b5090985050861580159061275e57505f81115b156127b15761276d87826129ed565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127fb576040519150601f19603f3d011682016040523d82523d5f602084013e612800565b606091505b50505050505050505050505050565b5f61281a8284612d1e565b9392505050565b5f61281a8284612d35565b5f61281a8284612e21565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061286a5761286a612e34565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061290a9190612e48565b8160018151811061291d5761291d612e34565b60200260200101906001600160a01b031690816001600160a01b031681525050612968307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a7c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129bc9085905f90869030904290600401612e63565b5f604051808303815f87803b1580156129d3575f80fd5b505af11580156129e5573d5f803e3d5ffd5b505050505050565b612a18307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a7c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a5e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ac4573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ae99190612ed2565b5050505050565b5f6020808352835180828501525f5b81811015612b1b57858101830151858201604001528201612aff565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611a79575f80fd5b5f8060408385031215612b60575f80fd5b8235612b6b81612b3b565b946020939093013593505050565b5f60208284031215612b89575f80fd5b813561281a81612b3b565b5f60208284031215612ba4575f80fd5b5035919050565b5f805f60608486031215612bbd575f80fd5b8335612bc881612b3b565b92506020840135612bd881612b3b565b929592945050506040919091013590565b8015158114611a79575f80fd5b5f8060408385031215612c07575f80fd5b8235612c1281612b3b565b91506020830135612c2281612be9565b809150509250929050565b5f805f60608486031215612c3f575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c66575f80fd5b813561281a81612be9565b5f8060408385031215612c82575f80fd5b8235612c8d81612b3b565b91506020830135612c2281612b3b565b600181811c90821680612cb157607f821691505b602082108103612ccf57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610bf057610bf0612d0a565b5f82612d4f57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610bf057610bf0612d0a565b5f60208284031215612d77575f80fd5b5051919050565b5f60208284031215612d8e575f80fd5b815161281a81612be9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bf057610bf0612d0a565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e58575f80fd5b815161281a81612b3b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612eb15784516001600160a01b031683529383019391830191600101612e8c565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ee4575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122041e3837013d38de3c2a3b676e1a6f7917c09a92fc5d0dbba319513c923c96b9964736f6c63430008140033
Deployed Bytecode Sourcemap
30945:17680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11071:169;;;;;;;;;;-1:-1:-1;11071:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11071:169:0;1023:187:1;32497:36:0;;;;;;;;;;-1:-1:-1;32497:36:0;;;;;;;;32210:63;;;;;;;;;;-1:-1:-1;32210:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31702:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31702:29:0;1467:177:1;31021:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31021:51:0;1649:230:1;10024:108:0;;;;;;;;;;-1:-1:-1;10112:12:0;;10024:108;;31844:30;;;;;;;;;;;;;;;;31993:33;;;;;;;;;;;;;;;;36439:275;;;;;;;;;;-1:-1:-1;36439:275:0;;;;;:::i;:::-;;:::i;:::-;;11722:492;;;;;;;;;;-1:-1:-1;11722:492:0;;;;;:::i;:::-;;:::i;31954:32::-;;;;;;;;;;;;;;;;31124:53;;;;;;;;;;;;31170:6;31124:53;;9866:93;;;;;;;;;;-1:-1:-1;9866:93:0;;9949:2;2880:36:1;;2868:2;2853:18;9866:93:0;2738:184:1;12623:215:0;;;;;;;;;;-1:-1:-1;12623:215:0;;;;;:::i;:::-;;:::i;31521:38::-;;;;;;;;;;-1:-1:-1;31521:38:0;;;;;;;;;;;31079;;;;;;;;;;;;;;;31401:33;;;;;;;;;;-1:-1:-1;31401:33:0;;;;;;;;32540:57;;;;;;;;;;-1:-1:-1;32540:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39250:126;;;;;;;;;;-1:-1:-1;39250:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39340:28:0;39316:4;39340:28;;;:19;:28;;;;;;;;;39250:126;31252:25;;;;;;;;;;-1:-1:-1;31252:25:0;;;;-1:-1:-1;;;;;31252:25:0;;;47147:90;;;;;;;;;;;;;:::i;31809:28::-;;;;;;;;;;;;;;;;31481:31;;;;;;;;;;-1:-1:-1;31481:31:0;;;;;;;;;;;10195:127;;;;;;;;;;-1:-1:-1;10195:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10296:18:0;10269:7;10296:18;;;;;;;;;;;;10195:127;2421:103;;;;;;;;;;;;;:::i;35743:121::-;;;;;;;;;;;;;:::i;36987:167::-;;;;;;;;;;-1:-1:-1;36987:167:0;;;;;:::i;:::-;;:::i;48258:98::-;;;;;;;;;;-1:-1:-1;48258:98:0;;;;;:::i;:::-;;:::i;31216:29::-;;;;;;;;;;-1:-1:-1;31216:29:0;;;;-1:-1:-1;;;;;31216:29:0;;;46897:196;;;;;;;;;;-1:-1:-1;46897:196:0;;;;;:::i;:::-;;:::i;39081:161::-;;;;;;;;;;-1:-1:-1;39081:161:0;;;;;:::i;:::-;;:::i;37358:395::-;;;;;;;;;;-1:-1:-1;37358:395:0;;;;;:::i;:::-;;:::i;35543:148::-;;;;;;;;;;;;;:::i;1770:87::-;;;;;;;;;;-1:-1:-1;1843:6:0;;-1:-1:-1;;;;;1843:6:0;1770:87;;37250:100;;;;;;;;;;-1:-1:-1;37250:100:0;;;;;:::i;:::-;;:::i;9123:104::-;;;;;;;;;;;;;:::i;38364:304::-;;;;;;;;;;-1:-1:-1;38364:304:0;;;;;:::i;:::-;;:::i;31775:25::-;;;;;;;;;;;;;;;;13341:413;;;;;;;;;;-1:-1:-1;13341:413:0;;;;;:::i;:::-;;:::i;10535:175::-;;;;;;;;;;-1:-1:-1;10535:175:0;;;;;:::i;:::-;;:::i;48364:258::-;;;;;;;;;;-1:-1:-1;48364:258:0;;;;;:::i;:::-;;:::i;38872:201::-;;;;;;;;;;-1:-1:-1;38872:201:0;;;;;:::i;:::-;;:::i;32431:57::-;;;;;;;;;;-1:-1:-1;32431:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31441:33;;;;;;;;;;-1:-1:-1;31441:33:0;;;;;;;;;;;46601:288;;;;;;;;;;-1:-1:-1;46601:288:0;;;;;:::i;:::-;;:::i;38174:182::-;;;;;;;;;;-1:-1:-1;38174:182:0;;;;;:::i;:::-;;:::i;37761:405::-;;;;;;;;;;-1:-1:-1;37761:405:0;;;;;:::i;:::-;;:::i;36722:257::-;;;;;;;;;;-1:-1:-1;36722:257:0;;;;;:::i;:::-;;:::i;31286:35::-;;;;;;;;;;;;;;;;35934:497;;;;;;;;;;-1:-1:-1;35934:497:0;;;;;:::i;:::-;;:::i;31919:26::-;;;;;;;;;;;;;;;;31668:27;;;;;;;;;;;;;;;;10773:151;;;;;;;;;;-1:-1:-1;10773:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10889:18:0;;;10862:7;10889:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10773:151;47722:403;;;;;;;;;;-1:-1:-1;47722:403:0;;;;;:::i;:::-;;:::i;31328:33::-;;;;;;;;;;;;;;;;31738:30;;;;;;;;;;;;;;;;2679:201;;;;;;;;;;-1:-1:-1;2679:201:0;;;;;:::i;:::-;;:::i;31881:31::-;;;;;;;;;;;;;;;;31368:24;;;;;;;;;;;;;;;;32033:28;;;;;;;;;;;;;;;;39384:113;;;;;;;;;;-1:-1:-1;39384:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39469:20:0;39445:4;39469:20;;;:11;:20;;;;;;;;;39384:113;8904:100;8958:13;8991:5;8984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8904:100;:::o;11071:169::-;11154:4;11171:39;717:10;11194:7;11203:6;11171:8;:39::i;:::-;-1:-1:-1;11228:4:0;11071:169;;;;;:::o;36439:275::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;;;;;;;;;36576:4:::1;36568;36547:13;10112:12:::0;;;10024:108;36547:13:::1;:17;::::0;36563:1:::1;36547:17;:::i;:::-;36546:26;;;;:::i;:::-;36545:35;;;;:::i;:::-;36535:6;:45;;36513:142;;;::::0;-1:-1:-1;;;36513:142:0;;5872:2:1;36513:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36513:142:0::1;5670:411:1::0;36513:142:0::1;36689:17;:6:::0;36699::::1;36689:17;:::i;:::-;36666:20;:40:::0;-1:-1:-1;36439:275:0:o;11722:492::-;11862:4;11879:36;11889:6;11897:9;11908:6;11879:9;:36::i;:::-;-1:-1:-1;;;;;11955:19:0;;11928:24;11955:19;;;:11;:19;;;;;;;;717:10;11955:33;;;;;;;;12007:26;;;;11999:79;;;;-1:-1:-1;;;11999:79:0;;6288:2:1;11999:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;11999:79:0;6086:404:1;11999:79:0;12114:57;12123:6;717:10;12164:6;12145:16;:25;12114:8;:57::i;:::-;-1:-1:-1;12202:4:0;;11722:492;-1:-1:-1;;;;11722:492:0:o;12623:215::-;717:10;12711:4;12760:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12760:34:0;;;;;;;;;;12711:4;;12728:80;;12751:7;;12760:47;;12797:10;;12760:47;:::i;:::-;12728:8;:80::i;47147:90::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;47204:18:::1;:25:::0;;-1:-1:-1;;47204:25:0::1;::::0;::::1;::::0;;47147:90::o;2421:103::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;2486:30:::1;2513:1;2486:18;:30::i;:::-;2421:103::o:0;35743:121::-;1843:6;;35795:4;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;35812:14:0::1;:22:::0;;-1:-1:-1;;35812:22:0::1;::::0;;;35743:121;:::o;36987:167::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37100:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37100:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36987:167::o;48258:98::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48322:18:0::1;48343:5;48322:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48322:26:0::1;::::0;;48258:98::o;46897:196::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;46970:12:::1;46988:6;-1:-1:-1::0;;;;;46988:11:0::1;47021:21;46988:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46969:89;;;47077:7;47069:16;;;::::0;::::1;;46958:135;46897:196:::0;:::o;39081:161::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;39190:10:::1;::::0;39161:40:::1;::::0;-1:-1:-1;;;;;39190:10:0;;::::1;::::0;39161:40;::::1;::::0;::::1;::::0;39190:10:::1;::::0;39161:40:::1;39212:10;:22:::0;;-1:-1:-1;;;;;;39212:22:0::1;-1:-1:-1::0;;;;;39212:22:0;;;::::1;::::0;;;::::1;::::0;;39081:161::o;37358:395::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;37508:14:::1;:29:::0;;;37548:15:::1;:31:::0;;;37590:10:::1;:21:::0;;;37603:8;37637:32:::1;37566:13:::0;37525:12;37637:32:::1;:::i;:::-;:45;;;;:::i;:::-;37622:12;:60:::0;;;37717:1:::1;-1:-1:-1::0;37701:17:0::1;37693:52;;;::::0;-1:-1:-1;;;37693:52:0;;7037:2:1;37693:52:0::1;::::0;::::1;7019:21:1::0;7076:2;7056:18;;;7049:30;-1:-1:-1;;;7095:18:1;;;7088:52;7157:18;;37693:52:0::1;6835:346:1::0;37693:52:0::1;37358:395:::0;;;:::o;35543:148::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;35598:13:::1;:20:::0;;-1:-1:-1;;35629:18:0;;;;;35658:17:::1;:25:::0;;-1:-1:-1;;35658:25:0::1;::::0;;35543:148::o;37250:100::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;37321:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37321:21:0;;::::1;::::0;;;::::1;::::0;;37250:100::o;9123:104::-;9179:13;9212:7;9205:14;;;;;:::i;38364:304::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;38508:13:::1;-1:-1:-1::0;;;;;38500:21:0::1;:4;-1:-1:-1::0;;;;;38500:21:0::1;::::0;38478:128:::1;;;::::0;-1:-1:-1;;;38478:128:0;;7388:2:1;38478:128:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;7537:27;7517:18;;;7510:55;7582:19;;38478:128:0::1;7186:421:1::0;38478:128:0::1;38619:41;38648:4;38654:5;38619:28;:41::i;13341:413::-:0;717:10;13434:4;13478:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13478:34:0;;;;;;;;;;13531:35;;;;13523:85;;;;-1:-1:-1;;;13523:85:0;;7814:2:1;13523:85:0;;;7796:21:1;7853:2;7833:18;;;7826:30;7892:34;7872:18;;;7865:62;-1:-1:-1;;;7943:18:1;;;7936:35;7988:19;;13523:85:0;7612:401:1;13523:85:0;13644:67;717:10;13667:7;13695:15;13676:16;:34;13644:8;:67::i;:::-;-1:-1:-1;13742:4:0;;13341:413;-1:-1:-1;;;13341:413:0:o;10535:175::-;10621:4;10638:42;717:10;10662:9;10673:6;10638:9;:42::i;48364:258::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48463:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;48463:47:0::1;::::0;::::1;;;::::0;;48521:36:::1;48463:32:::0;:47;48521:15:::1;:36::i;:::-;48568:46;48594:5;48601:12;48568:25;:46::i;38872:201::-:0;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;39005:14:::1;::::0;38964:56:::1;::::0;-1:-1:-1;;;;;39005:14:0;;::::1;::::0;38964:56;::::1;::::0;::::1;::::0;39005:14:::1;::::0;38964:56:::1;39031:14;:34:::0;;-1:-1:-1;;;;;;39031:34:0::1;-1:-1:-1::0;;;;;39031:34:0;;;::::1;::::0;;;::::1;::::0;;38872:201::o;46601:288::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46696:20:0;::::1;46688:59;;;::::0;-1:-1:-1;;;46688:59:0;;8220:2:1;46688:59:0::1;::::0;::::1;8202:21:1::0;8259:2;8239:18;;;8232:30;8298:28;8278:18;;;8271:56;8344:18;;46688:59:0::1;8018:350:1::0;46688:59:0::1;46785:39;::::0;-1:-1:-1;;;46785:39:0;;46818:4:::1;46785:39;::::0;::::1;1822:51:1::0;46758:24:0::1;::::0;-1:-1:-1;;;;;46785:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46785:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46835:46;::::0;-1:-1:-1;;;46835:46:0;;-1:-1:-1;;;;;8754:32:1;;;46835:46:0::1;::::0;::::1;8736:51:1::0;8803:18;;;8796:34;;;46758:66:0;;-1:-1:-1;46835:23:0;;::::1;::::0;::::1;::::0;8709:18:1;;46835:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46677:212;46601:288:::0;;:::o;38174:182::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38259:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38259:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38314:34;;1163:41:1;;;38314:34:0::1;::::0;1136:18:1;38314:34:0::1;;;;;;;38174:182:::0;;:::o;37761:405::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;37912:15:::1;:30:::0;;;37953:16:::1;:32:::0;;;37996:11:::1;:22:::0;;;38010:8;38045:34:::1;37972:13:::0;37930:12;38045:34:::1;:::i;:::-;:48;;;;:::i;:::-;38029:13;:64:::0;;;38129:1:::1;-1:-1:-1::0;38112:18:0::1;38104:54;;;::::0;-1:-1:-1;;;38104:54:0;;9293:2:1;38104:54:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;38104:54:0::1;9091:347:1::0;36722:257:0;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;36863:4:::1;36855;36833:13;10112:12:::0;;;10024:108;36833:13:::1;:18;::::0;36849:2:::1;36833:18;:::i;:::-;36832:27;;;;:::i;:::-;36831:36;;;;:::i;:::-;36821:6;:46;;36799:132;;;::::0;-1:-1:-1;;;36799:132:0;;9645:2:1;36799:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;36799:132:0::1;9443:400:1::0;36799:132:0::1;36954:17;:6:::0;36964::::1;36954:17;:::i;:::-;36942:9;:29:::0;-1:-1:-1;36722:257:0:o;35934:497::-;1843:6;;36042:4;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;36121:6:::1;36100:13;10112:12:::0;;;10024:108;36100:13:::1;:17;::::0;36116:1:::1;36100:17;:::i;:::-;36099:28;;;;:::i;:::-;36086:9;:41;;36064:144;;;::::0;-1:-1:-1;;;36064:144:0;;10050:2:1;36064:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;36064:144:0::1;9848:417:1::0;36064:144:0::1;36276:4;36255:13;10112:12:::0;;;10024:108;36255:13:::1;:17;::::0;36271:1:::1;36255:17;:::i;:::-;36254:26;;;;:::i;:::-;36241:9;:39;;36219:141;;;::::0;-1:-1:-1;;;36219:141:0;;10472:2:1;36219:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;36219:141:0::1;10270:416:1::0;36219:141:0::1;-1:-1:-1::0;36371:18:0::1;:30:::0;36419:4:::1;::::0;35934:497::o;47722:403::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;47810:18:::1;::::0;;;::::1;;;47809:19;47801:65;;;::::0;-1:-1:-1;;;47801:65:0;;10893:2:1;47801:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;47801:65:0::1;10691:397:1::0;47801:65:0::1;47920:13;-1:-1:-1::0;;;;;47899:35:0::1;:9;-1:-1:-1::0;;;;;47899:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;47938:64:0;::::1;47959:42;47938:64;;47899:103;47877:200;;;::::0;-1:-1:-1;;;47877:200:0;;11295:2:1;47877:200:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;47877:200:0::1;11093:410:1::0;47877:200:0::1;-1:-1:-1::0;;;;;48088:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48088:29:0::1;48113:4;48088:29;::::0;;47722:403::o;2679:201::-;1843:6;;-1:-1:-1;;;;;1843:6:0;717:10;1990:23;1982:68;;;;-1:-1:-1;;;1982:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2768:22:0;::::1;2760:73;;;::::0;-1:-1:-1;;;2760:73:0;;11710:2:1;2760:73:0::1;::::0;::::1;11692:21:1::0;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:36;11885:19;;2760:73:0::1;11508:402:1::0;2760:73:0::1;2844:28;2863:8;2844:18;:28::i;:::-;2679:201:::0;:::o;17025:380::-;-1:-1:-1;;;;;17161:19:0;;17153:68;;;;-1:-1:-1;;;17153:68:0;;12117:2:1;17153:68:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:34;12290:19;;17153:68:0;11915:400:1;17153:68:0;-1:-1:-1;;;;;17240:21:0;;17232:68;;;;-1:-1:-1;;;17232:68:0;;12522:2:1;17232:68:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:32;12693:19;;17232:68:0;12320:398:1;17232:68:0;-1:-1:-1;;;;;17313:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17365:32;;1613:25:1;;;17365:32:0;;1586:18:1;17365:32:0;;;;;;;17025:380;;;:::o;39505:4189::-;-1:-1:-1;;;;;39637:18:0;;39629:68;;;;-1:-1:-1;;;39629:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39716:16:0;;39708:64;;;;-1:-1:-1;;;39708:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39792:17:0;;;;;;:11;:17;;;;;;;;39791:18;39783:48;;;;-1:-1:-1;;;39783:48:0;;13735:2:1;39783:48:0;;;13717:21:1;13774:2;13754:18;;;13747:30;-1:-1:-1;;;13793:18:1;;;13786:48;13851:18;;39783:48:0;13533:342:1;39783:48:0;-1:-1:-1;;;;;39851:15:0;;;;;;:11;:15;;;;;;;;39850:16;39842:48;;;;-1:-1:-1;;;39842:48:0;;14082:2:1;39842:48:0;;;14064:21:1;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:50;14200:18;;39842:48:0;13880:344:1;39842:48:0;39907:17;;;;39903:135;;;-1:-1:-1;;;;;39949:31:0;;;;;;:25;:31;;;;;;;;39941:85;;;;-1:-1:-1;;;39941:85:0;;14431:2:1;39941:85:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;-1:-1:-1;;;14560:18:1;;;14553:39;14609:19;;39941:85:0;14229:405:1;39941:85:0;40054:6;40064:1;40054:11;40050:93;;40082:28;40098:4;40104:2;40108:1;40082:15;:28::i;40050:93::-;40159:14;;;;40155:1694;;;1843:6;;-1:-1:-1;;;;;40212:15:0;;;1843:6;;40212:15;;;;:49;;-1:-1:-1;1843:6:0;;-1:-1:-1;;;;;40248:13:0;;;1843:6;;40248:13;;40212:49;:86;;;;-1:-1:-1;;;;;;40282:16:0;;;;40212:86;:128;;;;-1:-1:-1;;;;;;40319:21:0;;40333:6;40319:21;;40212:128;:158;;;;-1:-1:-1;40362:8:0;;-1:-1:-1;;;40362:8:0;;;;40361:9;40212:158;40190:1648;;;40410:13;;;;;;;40405:223;;-1:-1:-1;;;;;40482:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40511:23:0;;;;;;:19;:23;;;;;;;;40482:52;40448:160;;;;-1:-1:-1;;;40448:160:0;;14841:2:1;40448:160:0;;;14823:21:1;14880:2;14860:18;;;14853:30;-1:-1:-1;;;14899:18:1;;;14892:52;14961:18;;40448:160:0;14639:346:1;40448:160:0;-1:-1:-1;;;;;40702:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40759:35:0;;;;;;:31;:35;;;;;;;;40758:36;40702:92;40676:1147;;;40881:20;;40871:6;:30;;40837:169;;;;-1:-1:-1;;;40837:169:0;;15192:2:1;40837:169:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:1;;;15314:51;15382:19;;40837:169:0;14990:417:1;40837:169:0;41089:9;;-1:-1:-1;;;;;10296:18:0;;10269:7;10296:18;;;;;;;;;;;41063:22;;:6;:22;:::i;:::-;:35;;41029:140;;;;-1:-1:-1;;;41029:140:0;;15614:2:1;41029:140:0;;;15596:21:1;15653:2;15633:18;;;15626:30;-1:-1:-1;;;15672:18:1;;;15665:49;15731:18;;41029:140:0;15412:343:1;41029:140:0;40676:1147;;;-1:-1:-1;;;;;41267:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41322:37:0;;;;;;:31;:37;;;;;;;;41321:38;41267:92;41241:582;;;41446:20;;41436:6;:30;;41402:170;;;;-1:-1:-1;;;41402:170:0;;15962:2:1;41402:170:0;;;15944:21:1;16001:2;15981:18;;;15974:30;16040:34;16020:18;;;16013:62;-1:-1:-1;;;16091:18:1;;;16084:52;16153:19;;41402:170:0;15760:418:1;41241:582:0;-1:-1:-1;;;;;41603:35:0;;;;;;:31;:35;;;;;;;;41598:225;;41723:9;;-1:-1:-1;;;;;10296:18:0;;10269:7;10296:18;;;;;;;;;;;41697:22;;:6;:22;:::i;:::-;:35;;41663:140;;;;-1:-1:-1;;;41663:140:0;;15614:2:1;41663:140:0;;;15596:21:1;15653:2;15633:18;;;15626:30;-1:-1:-1;;;15672:18:1;;;15665:49;15731:18;;41663:140:0;15412:343:1;41663:140:0;41910:4;41861:28;10296:18;;;;;;;;;;;41968;;41944:42;;;;;;;42017:35;;-1:-1:-1;42041:11:0;;;;;;;42017:35;:61;;;;-1:-1:-1;42070:8:0;;-1:-1:-1;;;42070:8:0;;;;42069:9;42017:61;:110;;;;-1:-1:-1;;;;;;42096:31:0;;;;;;:25;:31;;;;;;;;42095:32;42017:110;:153;;;;-1:-1:-1;;;;;;42145:25:0;;;;;;:19;:25;;;;;;;;42144:26;42017:153;:194;;;;-1:-1:-1;;;;;;42188:23:0;;;;;;:19;:23;;;;;;;;42187:24;42017:194;41999:326;;;42238:8;:15;;-1:-1:-1;;;;42238:15:0;-1:-1:-1;;;42238:15:0;;;42270:10;:8;:10::i;:::-;42297:8;:16;;-1:-1:-1;;;;42297:16:0;;;41999:326;42353:8;;-1:-1:-1;;;;;42463:25:0;;42337:12;42463:25;;;:19;:25;;;;;;42353:8;-1:-1:-1;;;42353:8:0;;;;;42352:9;;42463:25;;:52;;-1:-1:-1;;;;;;42492:23:0;;;;;;:19;:23;;;;;;;;42463:52;42459:100;;;-1:-1:-1;42542:5:0;42459:100;42571:12;42676:7;42672:969;;;-1:-1:-1;;;;;42728:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42777:1;42761:13;;:17;42728:50;42724:768;;;42806:34;42836:3;42806:25;42817:13;;42806:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42799:41;;42909:13;;42889:16;;42882:4;:23;;;;:::i;:::-;42881:41;;;;:::i;:::-;42859:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42981:13:0;;42966:11;;42959:18;;:4;:18;:::i;:::-;42958:36;;;;:::i;:::-;42941:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43061:13:0;;43042:15;;43035:22;;:4;:22;:::i;:::-;43034:40;;;;:::i;:::-;43013:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;42724:768:0;;-1:-1:-1;42724:768:0;;-1:-1:-1;;;;;43136:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43186:1;43171:12;;:16;43136:51;43132:360;;;43215:33;43244:3;43215:24;43226:12;;43215:6;:10;;:24;;;;:::i;:33::-;43208:40;;43316:12;;43297:15;;43290:4;:22;;;;:::i;:::-;43289:39;;;;:::i;:::-;43267:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43386:12:0;;43372:10;;43365:17;;:4;:17;:::i;:::-;43364:34;;;;:::i;:::-;43347:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43464:12:0;;43446:14;;43439:21;;:4;:21;:::i;:::-;43438:38;;;;:::i;:::-;43417:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43132:360:0;43512:8;;43508:91;;43541:42;43557:4;43571;43578;43541:15;:42::i;:::-;43615:14;43625:4;43615:14;;:::i;:::-;;;42672:969;43653:33;43669:4;43675:2;43679:6;43653:15;:33::i;:::-;39618:4076;;;;39505:4189;;;:::o;3040:191::-;3133:6;;;-1:-1:-1;;;;;3150:17:0;;;-1:-1:-1;;;;;;3150:17:0;;;;;;;3183:40;;3133:6;;;3150:17;3133:6;;3183:40;;3114:16;;3183:40;3103:128;3040:191;:::o;38676:188::-;-1:-1:-1;;;;;38759:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38759:39:0;;;;;;;;;;38816:40;;38759:39;;:31;38816:40;;;38676:188;;:::o;14244:733::-;-1:-1:-1;;;;;14384:20:0;;14376:70;;;;-1:-1:-1;;;14376:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14465:23:0;;14457:71;;;;-1:-1:-1;;;14457:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14625:17:0;;14601:21;14625:17;;;;;;;;;;;14661:23;;;;14653:74;;;;-1:-1:-1;;;14653:74:0;;16518:2:1;14653:74:0;;;16500:21:1;16557:2;16537:18;;;16530:30;16596:34;16576:18;;;16569:62;-1:-1:-1;;;16647:18:1;;;16640:36;16693:19;;14653:74:0;16316:402:1;14653:74:0;-1:-1:-1;;;;;14763:17:0;;;:9;:17;;;;;;;;;;;14783:22;;;14763:42;;14827:20;;;;;;;;:30;;14799:6;;14763:9;14827:30;;14799:6;;14827:30;:::i;:::-;;;;;;;;14892:9;-1:-1:-1;;;;;14875:35:0;14884:6;-1:-1:-1;;;;;14875:35:0;;14903:6;14875:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;14875:35:0;;;;;;;;14923:46;37358:395;44820:1773;44903:4;44859:23;10296:18;;;;;;;;;;;44859:50;;44920:25;45015:13;;44982:17;;44948:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44920:108;-1:-1:-1;45039:12:0;45068:20;;;:46;;-1:-1:-1;45092:22:0;;45068:46;45064:85;;;45131:7;;;44820:1773::o;45064:85::-;45183:18;;:23;;45204:2;45183:23;:::i;:::-;45165:15;:41;45161:115;;;45241:18;;:23;;45262:2;45241:23;:::i;:::-;45223:41;;45161:115;45337:23;45450:1;45417:17;45382:18;;45364:15;:36;;;;:::i;:::-;45363:71;;;;:::i;:::-;:88;;;;:::i;:::-;45337:114;-1:-1:-1;45462:26:0;45491:36;:15;45337:114;45491:19;:36::i;:::-;45462:65;-1:-1:-1;45568:21:0;45602:36;45462:65;45602:16;:36::i;:::-;45651:18;45672:44;:21;45698:17;45672:25;:44::i;:::-;45651:65;;45729:22;45754:83;45834:1;45813:18;;:22;;;;:::i;:::-;45792:44;;:17;:44;:::i;:::-;45769:17;;45754:33;;:10;;:14;:33::i;:83::-;45729:108;;45858:18;45879:79;45955:1;45934:18;;:22;;;;:::i;:::-;45913:44;;:17;:44;:::i;:::-;45894:13;;45879:29;;:10;;:14;:29::i;:79::-;45858:100;-1:-1:-1;45971:23:0;45858:100;45997:27;46010:14;45997:10;:27;:::i;:::-;:40;;;;:::i;:::-;46071:1;46050:18;:22;;;46083:17;:21;;;46115:13;:17;;;46167:10;;46159:47;;45971:66;;-1:-1:-1;;;;;;46167:10:0;;46191;;46159:47;46071:1;46159:47;46191:10;46167;46159:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46145:61:0;;-1:-1:-1;;46223:19:0;;;;;:42;;;46264:1;46246:15;:19;46223:42;46219:278;;;46282:46;46295:15;46312;46282:12;:46::i;:::-;46452:18;;46348:137;;;16925:25:1;;;16981:2;16966:18;;16959:34;;;17009:18;;;17002:34;;;;46348:137:0;;;;;;16913:2:1;46348:137:0;;;46219:278;46531:14;;46523:62;;-1:-1:-1;;;;;46531:14:0;;;;46559:21;;46523:62;;;;46559:21;46531:14;46523:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44820:1773:0:o;22157:98::-;22215:7;22242:5;22246:1;22242;:5;:::i;:::-;22235:12;22157:98;-1:-1:-1;;;22157:98:0:o;22556:::-;22614:7;22641:5;22645:1;22641;:5;:::i;21800:98::-;21858:7;21885:5;21889:1;21885;:5;:::i;43702:589::-;43852:16;;;43866:1;43852:16;;;;;;;;43828:21;;43852:16;;;;;;;;;;-1:-1:-1;43852:16:0;43828:40;;43897:4;43879;43884:1;43879:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43879:23:0;;;-1:-1:-1;;;;;43879:23:0;;;;;43923:15;-1:-1:-1;;;;;43923:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43913:4;43918:1;43913:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43913:32:0;;;-1:-1:-1;;;;;43913:32:0;;;;;43958:62;43975:4;43990:15;44008:11;43958:8;:62::i;:::-;44059:224;;-1:-1:-1;;;44059:224:0;;-1:-1:-1;;;;;44059:15:0;:66;;;;:224;;44140:11;;44166:1;;44210:4;;44237;;44257:15;;44059:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43757:534;43702:589;:::o;44299:513::-;44447:62;44464:4;44479:15;44497:11;44447:8;:62::i;:::-;44552:15;-1:-1:-1;;;;;44552:31:0;;44591:9;44624:4;44644:11;44670:1;44713;44756:7;1843:6;;-1:-1:-1;;;;;1843:6:0;;1770:87;44756:7;44552:252;;;;;;-1:-1:-1;;;;;;44552:252:0;;;-1:-1:-1;;;;;18911:15:1;;;44552:252:0;;;18893:34:1;18943:18;;;18936:34;;;;18986:18;;;18979:34;;;;19029:18;;;19022:34;19093:15;;;19072:19;;;19065:44;44778:15:0;19125:19:1;;;19118:35;18827:19;;44552:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44299:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;8373:184::-;8443:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:52;;;8512:1;8509;8502:12;8464:52;-1:-1:-1;8535:16:1;;8373:184;-1:-1:-1;8373:184:1:o;8841:245::-;8908:6;8961:2;8949:9;8940:7;8936:23;8932:32;8929:52;;;8977:1;8974;8967:12;8929:52;9009:9;9003:16;9028:28;9050:5;9028:28;:::i;12723:401::-;12925:2;12907:21;;;12964:2;12944:18;;;12937:30;13003:34;12998:2;12983:18;;12976:62;-1:-1:-1;;;13069:2:1;13054:18;;13047:35;13114:3;13099:19;;12723:401::o;13129:399::-;13331:2;13313:21;;;13370:2;13350:18;;;13343:30;13409:34;13404:2;13389:18;;13382:62;-1:-1:-1;;;13475:2:1;13460:18;;13453:33;13518:3;13503:19;;13129:399::o;16183:128::-;16250:9;;;16271:11;;;16268:37;;;16285:18;;:::i;17179:127::-;17240:10;17235:3;17231:20;17228:1;17221:31;17271:4;17268:1;17261:15;17295:4;17292:1;17285:15;17311:251;17381:6;17434:2;17422:9;17413:7;17409:23;17405:32;17402:52;;;17450:1;17447;17440:12;17402:52;17482:9;17476:16;17501:31;17526:5;17501:31;:::i;17567:980::-;17829:4;17877:3;17866:9;17862:19;17908:6;17897:9;17890:25;17934:2;17972:6;17967:2;17956:9;17952:18;17945:34;18015:3;18010:2;17999:9;17995:18;17988:31;18039:6;18074;18068:13;18105:6;18097;18090:22;18143:3;18132:9;18128:19;18121:26;;18182:2;18174:6;18170:15;18156:29;;18203:1;18213:195;18227:6;18224:1;18221:13;18213:195;;;18292:13;;-1:-1:-1;;;;;18288:39:1;18276:52;;18383:15;;;;18348:12;;;;18324:1;18242:9;18213:195;;;-1:-1:-1;;;;;;;18464:32:1;;;;18459:2;18444:18;;18437:60;-1:-1:-1;;;18528:3:1;18513:19;18506:35;18425:3;17567:980;-1:-1:-1;;;17567:980:1:o;19164:306::-;19252:6;19260;19268;19321:2;19309:9;19300:7;19296:23;19292:32;19289:52;;;19337:1;19334;19327:12;19289:52;19366:9;19360:16;19350:26;;19416:2;19405:9;19401:18;19395:25;19385:35;;19460:2;19449:9;19445:18;19439:25;19429:35;;19164:306;;;;;:::o
Swarm Source
ipfs://41e3837013d38de3c2a3b676e1a6f7917c09a92fc5d0dbba319513c923c96b99
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.