ERC-20
Overview
Max Total Supply
10,000,000 BLUME
Holders
31
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BLUME
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-09 */ // Sources flattened with hardhat v2.8.3 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/BLUME.sol pragma solidity ^0.8.0; /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMathInt { function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns (uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed(address indexed from, uint256 weiAmount); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn(address indexed to, uint256 weiAmount); } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns (uint256); } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is Context, ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { } /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(_msgSender(), msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}(""); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return (magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() + magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] - (magnifiedDividendPerShare.mul(value)).toInt256Safe(); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] + (magnifiedDividendPerShare.mul(value)).toInt256Safe(); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract ERC20DividendToken is Context, ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; TokenDividendTracker public dividendTracker; uint256 public minTokensBeforeSwap; mapping(address => bool) public isBlacklisted; uint256 public rewardsFee; uint256 public liquidityFee; uint256 public treasuryFee; uint256 public totalFees; address public treasuryAddress; bool public tradingEnabled; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // 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; uint256 public maxTxAmount; uint256 public maxWalletAmount; mapping (address => bool) public isExcludedFromLimits; event DeployedDividendTracker( address indexed newAddress ); event UpdateUniswapV2Router( address indexed newAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SendDividends(uint256 tokensSwapped, uint256 amount); event SendDividendsToTreasury(uint256 tokensSwapped, uint256 amount); constructor(string memory name_, string memory symbol_, uint256 totalSupply_, address routerV2_, address treasuryAddress_) ERC20(name_, symbol_) { rewardsFee = 3; liquidityFee = 2; treasuryFee = 10; totalFees = rewardsFee.add(liquidityFee).add(treasuryFee); require(totalFees <= 100, "Total fee is over 100%"); treasuryAddress = treasuryAddress_; minTokensBeforeSwap = 1_000 * (10**18); maxTxAmount = totalSupply_ * 3 * (10**16); // 3% maxWalletAmount = totalSupply_ * (10**17); // 10% deployDividendTracker(routerV2_); _updateUniswapV2Router(routerV2_); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(treasuryAddress, true); excludeFromLimits(owner(), true); excludeFromLimits(address(this), true); excludeFromLimits(treasuryAddress, true); excludeFromLimits(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), totalSupply_ * (10**18)); } receive() external payable {} function excludeFromLimits(address account, bool excluded) public onlyOwner { isExcludedFromLimits[account] = excluded; } function changeMaxTxAmount(uint256 amount) public onlyOwner { maxTxAmount = amount; } function changeMaxWalletAmount(uint256 amount) public onlyOwner { maxWalletAmount = amount; } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } function enableTrading(bool enabled) external onlyOwner { tradingEnabled = enabled; } function deployDividendTracker(address _uniswapV2Router) internal { dividendTracker = new TokenDividendTracker(); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(0xdead)); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); emit DeployedDividendTracker(address(dividendTracker)); } function _updateUniswapV2Router(address newAddress) internal { uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); excludeFromLimits(newAddress, true); uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); emit UpdateUniswapV2Router(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees( address[] calldata accounts, bool excluded ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setTreasuryWallet(address wallet) external onlyOwner { treasuryAddress = wallet; } function setRewardsFee(uint256 value) external onlyOwner { rewardsFee = value; totalFees = rewardsFee.add(liquidityFee).add(treasuryFee); } function setLiquidityFee(uint256 value) external onlyOwner { liquidityFee = value; totalFees = rewardsFee.add(liquidityFee).add(treasuryFee); } function setTreasuryFee(uint256 value) external onlyOwner { treasuryFee = value; totalFees = rewardsFee.add(liquidityFee).add(treasuryFee); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "ERC20DividendToken: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function blacklistAddress(address account, bool value) external onlyOwner { isBlacklisted[account] = value; } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "ERC20DividendToken: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; if (value) { excludeFromLimits(pair, true); dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function excludeFromDividends(address account) external onlyOwner { dividendTracker.excludeFromDividends(account); } function includeInDividends(address account) external onlyOwner { dividendTracker.includeInDividends(account, balanceOf(account)); } function getAccountDividendsInfo(address account) external view returns ( address, int256, uint256, uint256 ) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, uint256, uint256 ) { return dividendTracker.getAccountAtIndex(index); } function claim() external { dividendTracker.processAccount(_msgSender()); } function getNumberOfDividendTokenHolders() external view returns (uint256) { return dividendTracker.getNumberOfTokenHolders(); } 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(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); require(!isBlacklisted[from] && !isBlacklisted[to], "Blacklisted address"); if ((automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]) && (from != owner() && to != owner())) { require(tradingEnabled, "Trading is not enabled"); } if (!isExcludedFromLimits[from] || (automatedMarketMakerPairs[from] && !isExcludedFromLimits[to])) { require(amount <= maxTxAmount, "Anti-whale: Transfer amount exceeds max limit"); } if (!isExcludedFromLimits[to]) { require(balanceOf(to) + amount <= maxWalletAmount, "Anti-whale: Wallet amount exceeds max limit"); } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minTokensBeforeSwap; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() ) { swapping = true; if (treasuryFee > 0) { uint256 treasuryTokens = contractTokenBalance.mul(treasuryFee).div(totalFees); swapAndSendDividendsToTreasury(treasuryTokens); } if (liquidityFee > 0) { uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees); swapAndLiquify(swapTokens); } if (rewardsFee > 0) { uint256 rewardTokens = balanceOf(address(this)); swapAndSendDividends(rewardTokens); } swapping = false; } bool takeFee = !swapping && (automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]); // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (takeFee) { uint256 fees = amount.mul(totalFees).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapAndLiquify(uint256 tokens) private { // split the contract balance into halves uint256 half = tokens.div(2); uint256 otherHalf = tokens.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 address(0xdead), block.timestamp ); } function swapAndSendDividends(uint256 tokens) private { swapTokensForEth(tokens); uint256 dividends = address(this).balance; (bool success,) = payable(address(dividendTracker)).call{value: dividends}(""); if(success) { emit SendDividends(tokens, dividends); } } function swapAndSendDividendsToTreasury(uint256 tokens) private { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); uint256 dividends = address(this).balance.sub(initialBalance); (bool success,) = payable(treasuryAddress).call{value: dividends}(""); if(success) { emit SendDividendsToTreasury(tokens, dividends); } } } contract TokenDividendTracker is Ownable, DividendPayingToken { using SafeMath for uint256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; mapping(address => bool) public isExcludedFromDividends; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event IncludeInDividends(address indexed account); event Claim( address indexed account, uint256 amount ); constructor() DividendPayingToken("Dividend_Tracker", "Dividend_Tracker") { minimumTokenBalanceForDividends = 1 * (10**18); } function excludeFromDividends(address account) external onlyOwner { require(!isExcludedFromDividends[account]); isExcludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function includeInDividends(address account, uint256 balance) external onlyOwner { require(isExcludedFromDividends[account]); isExcludedFromDividends[account] = false; _setBalance(account, balance); tokenHoldersMap.set(account, balance); emit IncludeInDividends(account); } function getNumberOfTokenHolders() external view returns (uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, uint256 withdrawableDividends, uint256 totalDividends ) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); } function getAccountAtIndex(uint256 index) public view returns ( address, int256, uint256, uint256 ) { if (index >= tokenHoldersMap.size()) { return (address(0), -1, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function setBalance(address account, uint256 newBalance) external onlyOwner { if (isExcludedFromDividends[account]) { return; } if (newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } } function processAccount(address account) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(payable(account)); if (amount > 0) { emit Claim(account, amount); return true; } return false; } } contract BLUME is ERC20DividendToken { uint256 private _tokenSupply = 10_000_000; /** * @dev Choose proper router address according to your network: * Ethereum mainnet: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D (Uniswap) * BSC mainnet: 0x10ED43C718714eb63d5aA57B78B54704E256024E (PancakeSwap) * BSC testnet: 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3 */ address private _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; constructor (address _treasuryAddress) ERC20DividendToken("Blume Capital", "BLUME", _tokenSupply, _routerAddress, _treasuryAddress) { // Fees to be set in parent constructor } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_treasuryAddress","type":"address"}],"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":"newAddress","type":"address"}],"name":"DeployedDividendTracker","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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividendsToTreasury","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":"tokensIntoLiqudity","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"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract TokenDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInDividends","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":"","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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","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":"uint256","name":"value","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"tradingEnabled","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":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405262989680601555601680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200003e57600080fd5b50604051620054cb380380620054cb833981016040819052620000619162000c33565b604080518082018252600d81526c109b1d5b594810d85c1a5d185b609a1b602080830191825283518085019094526005845264424c554d4560d81b90840152601554601654835193949391926001600160a01b0390911691869186918691620000ce916003919062000b7f565b508051620000e490600490602084019062000b7f565b50505062000101620000fb620002f260201b60201c565b620002f6565b6003600b8190556002600c819055600a600d8190556200014992909162000135919062000348602090811b620015d817901c565b6200034860201b620015d81790919060201c565b600e81905560641015620001a45760405162461bcd60e51b815260206004820152601660248201527f546f74616c20666565206973206f76657220313030250000000000000000000060448201526064015b60405180910390fd5b600f80546001600160a01b0319166001600160a01b038316179055683635c9adc5dea00000600955620001d983600362000c79565b620001ec90662386f26fc1000062000c79565b601255620002038367016345785d8a000062000c79565b60135562000211826200035d565b6200021c82620005d6565b6200023b620002336005546001600160a01b031690565b6001620007f5565b62000248306001620007f5565b600f5462000261906001600160a01b03166001620007f5565b62000280620002786005546001600160a01b031690565b60016200089f565b6200028d3060016200089f565b600f54620002a6906001600160a01b031660016200089f565b620002b561dead60016200089f565b620002e6620002cc6005546001600160a01b031690565b620002e085670de0b6b3a764000062000c79565b62000915565b50505050505062000cee565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600062000356828462000c5e565b9392505050565b6040516200036b9062000c0e565b604051809103906000f08015801562000388573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b0392909216918217905560405163031e79db60e41b8152600481018290526331e79db090602401600060405180830381600087803b158015620003e057600080fd5b505af1158015620003f5573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200043f57600080fd5b505af115801562000454573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db090506200047e6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004c057600080fd5b505af1158015620004d5573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200052157600080fd5b505af115801562000536573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03858116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200058257600080fd5b505af115801562000597573d6000803e3d6000fd5b50506008546040516001600160a01b0390911692507f5a9eee832e9ca9f7d2110f2cee781d010262c4c3d74b9f1e4ca1b8e3861a8d019150600090a250565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b1580156200062e57600080fd5b505afa15801562000643573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000669919062000c33565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620006c757600080fd5b505afa158015620006dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000702919062000c33565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200074b57600080fd5b505af115801562000760573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000786919062000c33565b9050620007958260016200089f565b600780546001600160a01b0319166001600160a01b038316179055620007bd816001620009fa565b6040516001600160a01b038316907f0c36f1f3a0f38cd9563b52fb110cc5b0fa22c509defc16728a6a42f1bddad22990600090a25050565b6005546001600160a01b03163314620008405760405162461bcd60e51b81526020600482018190526024820152600080516020620054ab83398151915260448201526064016200019b565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620008ea5760405162461bcd60e51b81526020600482018190526024820152600080516020620054ab83398151915260448201526064016200019b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b0382166200096d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200019b565b806002600082825462000981919062000c5e565b90915550506001600160a01b03821660009081526020819052604081208054839290620009b090849062000c5e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821660009081526011602052604090205460ff161515811515141562000aa65760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a4016200019b565b6001600160a01b0382166000908152601160205260409020805460ff1916821580159190911790915562000b435762000ae18260016200089f565b60085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801562000b2957600080fd5b505af115801562000b3e573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b82805462000b8d9062000c9b565b90600052602060002090601f01602090048101928262000bb1576000855562000bfc565b82601f1062000bcc57805160ff191683800117855562000bfc565b8280016001018555821562000bfc579182015b8281111562000bfc57825182559160200191906001019062000bdf565b5062000c0a92915062000c1c565b5090565b611d73806200373883390190565b5b8082111562000c0a576000815560010162000c1d565b60006020828403121562000c4657600080fd5b81516001600160a01b03811681146200035657600080fd5b6000821982111562000c745762000c7462000cd8565b500190565b600081600019048311821515161562000c965762000c9662000cd8565b500290565b600181811c9082168062000cb057607f821691505b6020821081141562000cd257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612a3a8062000cfe6000396000f3fe6080604052600436106103035760003560e01c806381bfdcca11610190578063b62496f5116100dc578063cc32d17611610095578063f275f64b1161006f578063f275f64b1461094e578063f27fd2541461096e578063f2fde38b1461098e578063fe575a87146109ae57600080fd5b8063cc32d176146108dc578063dd62ed3e146108f2578063e5d41c6b1461093857600080fd5b8063b62496f51461080c578063c02466681461083c578063c0a904a21461085c578063c0f306ef1461087c578063c492f0461461089c578063c5f956af146108bc57600080fd5b80639a7a23d611610149578063a8b9d24011610123578063a8b9d2401461076c578063a9059cbb1461078c578063aa4bde28146107ac578063ad56c13c146107c257600080fd5b80639a7a23d61461070c578063a457c2d71461072c578063a8602fea1461074c57600080fd5b806381bfdcca1461066d57806385aa5e5a1461068d5780638c0b5e22146106ad5780638da5cb5b146106c357806395d89b41146106e157806398118cb4146106f657600080fd5b8063455a43961161024f5780635cce86cd116102085780636843cd84116101e25780636843cd84146105f857806370a0823114610618578063715018a61461063857806377e741c71461064d57600080fd5b80635cce86cd1461059357806364b0f653146105c3578063677daa57146105d857600080fd5b8063455a4396146104c457806348a46473146104e457806349bd5a5e146105045780634ada218b146105245780634e71d92d146105455780634fbee1931461055a57600080fd5b80632bb14e1d116102bc578063313ce56711610296578063313ce5671461044657806331e79db014610462578063357bf15c1461048457806339509351146104a457600080fd5b80632bb14e1d146103fb5780632c1f52161461041157806330bb4cff1461043157600080fd5b806306fdde031461030f578063095ea7b31461033a57806313114a9d1461036a5780631694505e1461038e57806318160ddd146103c657806323b872dd146103db57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b506103246109de565b6040516103319190612726565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612581565b610a70565b6040519015158152602001610331565b34801561037657600080fd5b50610380600e5481565b604051908152602001610331565b34801561039a57600080fd5b506006546103ae906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b3480156103d257600080fd5b50600254610380565b3480156103e757600080fd5b5061035a6103f63660046124d3565b610a86565b34801561040757600080fd5b50610380600b5481565b34801561041d57600080fd5b506008546103ae906001600160a01b031681565b34801561043d57600080fd5b50610380610b35565b34801561045257600080fd5b5060405160128152602001610331565b34801561046e57600080fd5b5061048261047d366004612460565b610bb7565b005b34801561049057600080fd5b5061048261049f36600461266d565b610c44565b3480156104b057600080fd5b5061035a6104bf366004612581565b610c94565b3480156104d057600080fd5b506104826104df366004612514565b610cd0565b3480156104f057600080fd5b506104826104ff36600461266d565b610d25565b34801561051057600080fd5b506007546103ae906001600160a01b031681565b34801561053057600080fd5b50600f5461035a90600160a01b900460ff1681565b34801561055157600080fd5b50610482610d54565b34801561056657600080fd5b5061035a610575366004612460565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561059f57600080fd5b5061035a6105ae366004612460565b60146020526000908152604090205460ff1681565b3480156105cf57600080fd5b50610380610de2565b3480156105e457600080fd5b506104826105f336600461266d565b610e27565b34801561060457600080fd5b50610380610613366004612460565b610e56565b34801561062457600080fd5b50610380610633366004612460565b610edb565b34801561064457600080fd5b50610482610ef6565b34801561065957600080fd5b5061048261066836600461266d565b610f2c565b34801561067957600080fd5b5061048261068836600461266d565b610f70565b34801561069957600080fd5b506104826106a836600461266d565b610f9f565b3480156106b957600080fd5b5061038060125481565b3480156106cf57600080fd5b506005546001600160a01b03166103ae565b3480156106ed57600080fd5b50610324610fe4565b34801561070257600080fd5b50610380600c5481565b34801561071857600080fd5b50610482610727366004612514565b610ff3565b34801561073857600080fd5b5061035a610747366004612581565b6110d5565b34801561075857600080fd5b50610482610767366004612460565b61116e565b34801561077857600080fd5b50610380610787366004612460565b6111ba565b34801561079857600080fd5b5061035a6107a7366004612581565b6111ed565b3480156107b857600080fd5b5061038060135481565b3480156107ce57600080fd5b506107e26107dd366004612460565b6111fa565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610331565b34801561081857600080fd5b5061035a610827366004612460565b60116020526000908152604090205460ff1681565b34801561084857600080fd5b50610482610857366004612514565b61128e565b34801561086857600080fd5b50610482610877366004612514565b611317565b34801561088857600080fd5b50610482610897366004612460565b61136c565b3480156108a857600080fd5b506104826108b73660046125ad565b6113e2565b3480156108c857600080fd5b50600f546103ae906001600160a01b031681565b3480156108e857600080fd5b50610380600d5481565b3480156108fe57600080fd5b5061038061090d36600461249a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561094457600080fd5b5061038060095481565b34801561095a57600080fd5b50610482610969366004612633565b6114be565b34801561097a57600080fd5b506107e261098936600461266d565b611506565b34801561099a57600080fd5b506104826109a9366004612460565b611540565b3480156109ba57600080fd5b5061035a6109c9366004612460565b600a6020526000908152604090205460ff1681565b6060600380546109ed9061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a199061295f565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7d3384846115eb565b50600192915050565b6000610a9384848461170f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b1d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610b2a85338584036115eb565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610b7a57600080fd5b505afa158015610b8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb29190612686565b905090565b6005546001600160a01b03163314610be15760405162461bcd60e51b8152600401610b1490612804565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610c2957600080fd5b505af1158015610c3d573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c6e5760405162461bcd60e51b8152600401610b1490612804565b600c819055600d54600b54610c8e9190610c8890846115d8565b906115d8565b600e5550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a7d918590610ccb9086906128ef565b6115eb565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d4f5760405162461bcd60e51b8152600401610b1490612804565b600955565b6008546001600160a01b031663807ab4f7336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381600087803b158015610da757600080fd5b505af1158015610dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddf9190612650565b50565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610b7a57600080fd5b6005546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b1490612804565b601255565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed59190612686565b92915050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610f205760405162461bcd60e51b8152600401610b1490612804565b610f2a6000611d5e565b565b6005546001600160a01b03163314610f565760405162461bcd60e51b8152600401610b1490612804565b600d819055600c54600b54610c8e918391610c88916115d8565b6005546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610b1490612804565b601355565b6005546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610b1490612804565b600b819055600d54600c54610c8e9190610c889084906115d8565b6060600480546109ed9061295f565b6005546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610b1490612804565b6007546001600160a01b03838116911614156110c75760405162461bcd60e51b815260206004820152605960248201527f45524332304469766964656e64546f6b656e3a205468652050616e63616b655360448201527f77617020706169722063616e6e6f742062652072656d6f7665642066726f6d2060648201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000608482015260a401610b14565b6110d18282611db0565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b14565b61116433858584036115eb565b5060019392505050565b6005546001600160a01b031633146111985760405162461bcd60e51b8152600401610b1490612804565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610e85565b6000610a7d33848461170f565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392169063fbcbc0f1906024015b60806040518083038186803b15801561124757600080fd5b505afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190612542565b93509350935093509193509193565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113415760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113965760405162461bcd60e51b8152600401610b1490612804565b6008546001600160a01b031663b817d725826113b181610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610c0f565b6005546001600160a01b0316331461140c5760405162461bcd60e51b8152600401610b1490612804565b60005b8281101561147d57816010600086868581811061142e5761142e6129cb565b90506020020160208101906114439190612460565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114758161299a565b91505061140f565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516114b1939291906126cd565b60405180910390a1505050565b6005546001600160a01b031633146114e85760405162461bcd60e51b8152600401610b1490612804565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b600854604051635183d6fd60e01b8152600481018390526000918291829182916001600160a01b0390911690635183d6fd9060240161122f565b6005546001600160a01b0316331461156a5760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b0381166115cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b14565b610ddf81611d5e565b60006115e482846128ef565b9392505050565b6001600160a01b03831661164d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b14565b6001600160a01b0382166116ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b14565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117355760405162461bcd60e51b8152600401610b1490612839565b6001600160a01b03821661175b5760405162461bcd60e51b8152600401610b149061277b565b8061176584610edb565b10156117835760405162461bcd60e51b8152600401610b14906127be565b6001600160a01b0383166000908152600a602052604090205460ff161580156117c557506001600160a01b0382166000908152600a602052604090205460ff16155b6118075760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610b14565b6001600160a01b03831660009081526011602052604090205460ff168061184657506001600160a01b03821660009081526011602052604090205460ff165b801561187957506005546001600160a01b0384811691161480159061187957506005546001600160a01b03838116911614155b156118d057600f54600160a01b900460ff166118d05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b14565b6001600160a01b03831660009081526014602052604090205460ff16158061193457506001600160a01b03831660009081526011602052604090205460ff16801561193457506001600160a01b03821660009081526014602052604090205460ff16155b156119a1576012548111156119a15760405162461bcd60e51b815260206004820152602d60248201527f416e74692d7768616c653a205472616e7366657220616d6f756e74206578636560448201526c19591cc81b585e081b1a5b5a5d609a1b6064820152608401610b14565b6001600160a01b03821660009081526014602052604090205460ff16611a3a57601354816119ce84610edb565b6119d891906128ef565b1115611a3a5760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b6064820152608401610b14565b80611a5057611a4b83836000611f2e565b505050565b6000611a5b30610edb565b60095490915081108015908190611a7c5750600754600160a01b900460ff16155b8015611aa157506001600160a01b03851660009081526011602052604090205460ff16155b8015611abb57506005546001600160a01b03868116911614155b8015611ad557506005546001600160a01b03858116911614155b15611b85576007805460ff60a01b1916600160a01b179055600d5415611b25576000611b18600e54611b12600d548661204590919063ffffffff16565b90612051565b9050611b238161205d565b505b600c5415611b57576000611b4a600e54611b12600c548661204590919063ffffffff16565b9050611b5581612113565b505b600b5415611b77576000611b6a30610edb565b9050611b758161219a565b505b6007805460ff60a01b191690555b600754600090600160a01b900460ff16158015611bdc57506001600160a01b03861660009081526011602052604090205460ff1680611bdc57506001600160a01b03851660009081526011602052604090205460ff165b6001600160a01b03871660009081526010602052604090205490915060ff1680611c1e57506001600160a01b03851660009081526010602052604090205460ff165b15611c27575060005b8015611c64576000611c496064611b12600e548861204590919063ffffffff16565b9050611c558582612239565b9450611c62873083611f2e565b505b611c6f868686611f2e565b6008546001600160a01b031663e30443bc87611c8a81610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611cd057600080fd5b505af1925050508015611ce1575060015b506008546001600160a01b031663e30443bc86611cfd81610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611d4357600080fd5b505af1925050508015611d54575060015b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e5a5760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a401610b14565b6001600160a01b0382166000908152601160205260409020805460ff19168215801591909117909155611ef257611e92826001611317565b60085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015611ed957600080fd5b505af1158015611eed573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316611f545760405162461bcd60e51b8152600401610b1490612839565b6001600160a01b038216611f7a5760405162461bcd60e51b8152600401610b149061277b565b6001600160a01b03831660009081526020819052604090205481811015611fb35760405162461bcd60e51b8152600401610b14906127be565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fea9084906128ef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203691815260200190565b60405180910390a35b50505050565b60006115e48284612929565b60006115e48284612907565b4761206782612245565b60006120734783612239565b600f546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146120c5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ca565b606091505b50509050801561203f5760408051858152602081018490527f0650a4f59c09c1cbab7e26dcbb938d145968701b20a4e2ea06be24751b76690e910160405180910390a150505050565b6000612120826002612051565b9050600061212e8383612239565b90504761213a83612245565b60006121464783612239565b905061215283826123a6565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b6121a381612245565b60085460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146121f4576040519150601f19603f3d011682016040523d82523d6000602084013e6121f9565b606091505b505090508015611a4b5760408051848152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc391016114b1565b60006115e48284612948565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061227a5761227a6129cb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156122ce57600080fd5b505afa1580156122e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612306919061247d565b81600181518110612319576123196129cb565b6001600160a01b03928316602091820292909201015260065461233f91309116846115eb565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061237890859060009086903090429060040161287e565b600060405180830381600087803b15801561239257600080fd5b505af1158015611d56573d6000803e3d6000fd5b6006546123be9030906001600160a01b0316846115eb565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561242757600080fd5b505af115801561243b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3d919061269f565b60006020828403121561247257600080fd5b81356115e4816129e1565b60006020828403121561248f57600080fd5b81516115e4816129e1565b600080604083850312156124ad57600080fd5b82356124b8816129e1565b915060208301356124c8816129e1565b809150509250929050565b6000806000606084860312156124e857600080fd5b83356124f3816129e1565b92506020840135612503816129e1565b929592945050506040919091013590565b6000806040838503121561252757600080fd5b8235612532816129e1565b915060208301356124c8816129f6565b6000806000806080858703121561255857600080fd5b8451612563816129e1565b60208601516040870151606090970151919890975090945092505050565b6000806040838503121561259457600080fd5b823561259f816129e1565b946020939093013593505050565b6000806000604084860312156125c257600080fd5b833567ffffffffffffffff808211156125da57600080fd5b818601915086601f8301126125ee57600080fd5b8135818111156125fd57600080fd5b8760208260051b850101111561261257600080fd5b60209283019550935050840135612628816129f6565b809150509250925092565b60006020828403121561264557600080fd5b81356115e4816129f6565b60006020828403121561266257600080fd5b81516115e4816129f6565b60006020828403121561267f57600080fd5b5035919050565b60006020828403121561269857600080fd5b5051919050565b6000806000606084860312156126b457600080fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b868110156127105782356126f3816129e1565b6001600160a01b03168252602092830192909101906001016126e0565b5080925050508215156020830152949350505050565b600060208083528351808285015260005b8181101561275357858101830151858201604001528201612737565b81811115612765576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128ce5784516001600160a01b0316835293830193918301916001016128a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612902576129026129b5565b500190565b60008261292457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612943576129436129b5565b500290565b60008282101561295a5761295a6129b5565b500390565b600181811c9082168061297357607f821691505b6020821081141561299457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ae576129ae6129b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610ddf57600080fd5b8015158114610ddf57600080fdfea264697066735822122006abb05b27d64c1def909eda046f8377b9e655bbbb3c371bd9f2caf124c335ea64736f6c6343000807003360806040523480156200001157600080fd5b506040518060400160405280601081526020016f2234bb34b232b7322faa3930b1b5b2b960811b8152506040518060400160405280601081526020016f2234bb34b232b7322faa3930b1b5b2b960811b8152508181620000806200007a620000c360201b60201c565b620000c7565b81516200009590600490602085019062000117565b508051620000ab90600590602084019062000117565b5050670de0b6b3a7640000600f5550620001fa915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600181811c90821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b611b69806200020a6000396000f3fe6080604052600436106101c65760003560e01c806385a6b3ae116100f7578063aafd847a11610095578063dd62ed3e11610064578063dd62ed3e14610531578063e30443bc14610577578063f2fde38b14610597578063fbcbc0f1146105b757600080fd5b8063aafd847a14610495578063b817d725146104cb578063be10b614146104eb578063c705c5691461050157600080fd5b806395d89b41116100d157806395d89b4114610420578063a457c2d714610435578063a8b9d24014610455578063a9059cbb1461047557600080fd5b806385a6b3ae146103c25780638da5cb5b146103d857806391b89fba1461040057600080fd5b8063313ce567116101645780635183d6fd1161013e5780635183d6fd1461030d57806370a0823114610357578063715018a61461038d578063807ab4f7146103a257600080fd5b8063313ce567146102b157806331e79db0146102cd57806339509351146102ed57600080fd5b806309bbedde116101a057806309bbedde1461023d57806318160ddd1461025c57806323b872dd1461027157806327ce01471461029157600080fd5b806303c83302146101da57806306fdde03146101e2578063095ea7b31461020d57600080fd5b366101d5576101d36105d7565b005b600080fd5b6101d36105d7565b3480156101ee57600080fd5b506101f761066a565b6040516102049190611953565b60405180910390f35b34801561021957600080fd5b5061022d6102283660046118f5565b6106fc565b6040519015158152602001610204565b34801561024957600080fd5b50600a545b604051908152602001610204565b34801561026857600080fd5b5060035461024e565b34801561027d57600080fd5b5061022d61028c3660046118b4565b610712565b34801561029d57600080fd5b5061024e6102ac366004611841565b6107c1565b3480156102bd57600080fd5b5060405160128152602001610204565b3480156102d957600080fd5b506101d36102e8366004611841565b610824565b3480156102f957600080fd5b5061022d6103083660046118f5565b61094b565b34801561031957600080fd5b5061032d61032836600461193a565b610987565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610204565b34801561036357600080fd5b5061024e610372366004611841565b6001600160a01b031660009081526001602052604090205490565b34801561039957600080fd5b506101d3610ad5565b3480156103ae57600080fd5b5061022d6103bd366004611841565b610b09565b3480156103ce57600080fd5b5061024e60095481565b3480156103e457600080fd5b506000546040516001600160a01b039091168152602001610204565b34801561040c57600080fd5b5061024e61041b366004611841565b610b9c565b34801561042c57600080fd5b506101f7610ba7565b34801561044157600080fd5b5061022d6104503660046118f5565b610bb6565b34801561046157600080fd5b5061024e610470366004611841565b610c4f565b34801561048157600080fd5b5061022d6104903660046118f5565b610c7b565b3480156104a157600080fd5b5061024e6104b0366004611841565b6001600160a01b031660009081526008602052604090205490565b3480156104d757600080fd5b506101d36104e63660046118f5565b610c88565b3480156104f757600080fd5b5061024e600f5481565b34801561050d57600080fd5b5061022d61051c366004611841565b600e6020526000908152604090205460ff1681565b34801561053d57600080fd5b5061024e61054c36600461187b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561058357600080fd5b506101d36105923660046118f5565b610db2565b3480156105a357600080fd5b506101d36105b2366004611841565b610ef6565b3480156105c357600080fd5b5061032d6105d2366004611841565b610f91565b60006105e260035490565b116105ec57600080fd5b34156106685761061f6105fe60035490565b61060c34600160801b61104b565b6106169190611a36565b6006549061105e565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600954610664903461105e565b6009555b565b60606004805461067990611acd565b80601f01602080910402602001604051908101604052809291908181526020018280546106a590611acd565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b600061070933848461106a565b50600192915050565b600061071f84848461118e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156107a95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107b6853385840361106a565b506001949350505050565b6001600160a01b0381166000908152600760209081526040808320546001909252822054600160801b916108149161080590610800906006549061104b565b61135e565b61080f91906119dd565b61136e565b61081e9190611a36565b92915050565b6000546001600160a01b0316331461084e5760405162461bcd60e51b81526004016107a0906119a8565b6001600160a01b0381166000908152600e602052604090205460ff161561087457600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff191660011790556108a2908290611381565b60405163131836e760e21b8152600a60048201526001600160a01b038216602482015273df956c93906a59e1726e917d68434c2c3995a04790634c60db9c9060440160006040518083038186803b1580156108fc57600080fd5b505af4158015610910573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610709918590610982908690611a1e565b61106a565b604051636f59ec4b60e11b8152600a600482015260009081908190819073df956c93906a59e1726e917d68434c2c3995a0479063deb3d8969060240160206040518083038186803b1580156109db57600080fd5b505af41580156109ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a139190611921565b8510610a2c575060009250600019915082905080610ace565b6040516368d54f3f60e11b8152600a60048201526024810186905260009073df956c93906a59e1726e917d68434c2c3995a0479063d1aa9e7e9060440160206040518083038186803b158015610a8157600080fd5b505af4158015610a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab9919061185e565b9050610ac481610f91565b9450945094509450505b9193509193565b6000546001600160a01b03163314610aff5760405162461bcd60e51b81526004016107a0906119a8565b61066860006113df565b600080546001600160a01b03163314610b345760405162461bcd60e51b81526004016107a0906119a8565b6000610b3f8361142f565b90508015610b9357826001600160a01b03167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610b8291815260200190565b60405180910390a250600192915050565b50600092915050565b600061081e82610c4f565b60606005805461067990611acd565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610c385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107a0565b610c45338585840361106a565b5060019392505050565b6001600160a01b03811660009081526008602052604081205461081e90610c75846107c1565b9061156c565b600061070933848461118e565b6000546001600160a01b03163314610cb25760405162461bcd60e51b81526004016107a0906119a8565b6001600160a01b0382166000908152600e602052604090205460ff16610cd757600080fd5b6001600160a01b0382166000908152600e60205260409020805460ff19169055610d018282611381565b604051632f0ad01760e21b8152600a60048201526001600160a01b03831660248201526044810182905273df956c93906a59e1726e917d68434c2c3995a0479063bc2b405c9060640160006040518083038186803b158015610d6257600080fd5b505af4158015610d76573d6000803e3d6000fd5b50506040516001600160a01b03851692507f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329150600090a25050565b6000546001600160a01b03163314610ddc5760405162461bcd60e51b81526004016107a0906119a8565b6001600160a01b0382166000908152600e602052604090205460ff1615610e01575050565b600f548110610e9157610e148282611381565b604051632f0ad01760e21b8152600a60048201526001600160a01b03831660248201526044810182905273df956c93906a59e1726e917d68434c2c3995a0479063bc2b405c9060640160006040518083038186803b158015610e7557600080fd5b505af4158015610e89573d6000803e3d6000fd5b505050505050565b610e9c826000611381565b60405163131836e760e21b8152600a60048201526001600160a01b038316602482015273df956c93906a59e1726e917d68434c2c3995a04790634c60db9c9060440160006040518083038186803b158015610e7557600080fd5b6000546001600160a01b03163314610f205760405162461bcd60e51b81526004016107a0906119a8565b6001600160a01b038116610f855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a0565b610f8e816113df565b50565b6040516317e142d160e01b8152600a60048201526001600160a01b038216602482015281906000908190819073df956c93906a59e1726e917d68434c2c3995a047906317e142d19060440160206040518083038186803b158015610ff457600080fd5b505af4158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c9190611921565b925061103784610c4f565b9150611042846107c1565b90509193509193565b60006110578284611a58565b9392505050565b60006110578284611a1e565b6001600160a01b0383166110cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a0565b6001600160a01b03821661112d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107a0565b6001600160a01b0382166112545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107a0565b6001600160a01b038316600090815260016020526040902054818110156112cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a0565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290611303908490611a1e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134f91815260200190565b60405180910390a35b50505050565b6000818181121561081e57600080fd5b60008082121561137d57600080fd5b5090565b6001600160a01b038216600090815260016020526040902054808211156113ba5760006113ae838361156c565b90506113588482611578565b808210156113da5760006113ce828461156c565b905061135884826115d6565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061143b83610c4f565b90508015610b93576001600160a01b038316600090815260086020526040902054611466908261105e565b6001600160a01b038416600081815260086020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906114b59084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d806000811461150f576040519150601f19603f3d011682016040523d82523d6000602084013e611514565b606091505b5050905080611565576001600160a01b038416600090815260086020526040902054611540908361156c565b6001600160a01b03909416600090815260086020526040812094909455509192915050565b5092915050565b60006110578284611ab6565b6115828282611614565b60065461159390610800908361104b565b6001600160a01b0383166000908152600760205260409020546115b69190611a77565b6001600160a01b0390921660009081526007602052604090209190915550565b6115e082826116f3565b6006546115f190610800908361104b565b6001600160a01b0383166000908152600760205260409020546115b691906119dd565b6001600160a01b03821661166a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107a0565b806003600082825461167c9190611a1e565b90915550506001600160a01b038216600090815260016020526040812080548392906116a9908490611a1e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166117535760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107a0565b6001600160a01b038216600090815260016020526040902054818110156117c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107a0565b6001600160a01b03831660009081526001602052604081208383039055600380548492906117f6908490611ab6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006020828403121561185357600080fd5b813561105781611b1e565b60006020828403121561187057600080fd5b815161105781611b1e565b6000806040838503121561188e57600080fd5b823561189981611b1e565b915060208301356118a981611b1e565b809150509250929050565b6000806000606084860312156118c957600080fd5b83356118d481611b1e565b925060208401356118e481611b1e565b929592945050506040919091013590565b6000806040838503121561190857600080fd5b823561191381611b1e565b946020939093013593505050565b60006020828403121561193357600080fd5b5051919050565b60006020828403121561194c57600080fd5b5035919050565b600060208083528351808285015260005b8181101561198057858101830151858201604001528201611964565b81811115611992576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b03849003851316156119ff576119ff611b08565b600160ff1b8390038412811615611a1857611a18611b08565b50500190565b60008219821115611a3157611a31611b08565b500190565b600082611a5357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a7257611a72611b08565b500290565b60008083128015600160ff1b850184121615611a9557611a95611b08565b6001600160ff1b0384018313811615611ab057611ab0611b08565b50500390565b600082821015611ac857611ac8611b08565b500390565b600181811c90821680611ae157607f821691505b60208210811415611b0257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f8e57600080fdfea26469706673582212206ac6d7c493092a925e699deea2bb211624d31392c7c157c9cc6e59fb7c8e368464736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000018f6faef03c2797dff688165470bd1072816e583
Deployed Bytecode
0x6080604052600436106103035760003560e01c806381bfdcca11610190578063b62496f5116100dc578063cc32d17611610095578063f275f64b1161006f578063f275f64b1461094e578063f27fd2541461096e578063f2fde38b1461098e578063fe575a87146109ae57600080fd5b8063cc32d176146108dc578063dd62ed3e146108f2578063e5d41c6b1461093857600080fd5b8063b62496f51461080c578063c02466681461083c578063c0a904a21461085c578063c0f306ef1461087c578063c492f0461461089c578063c5f956af146108bc57600080fd5b80639a7a23d611610149578063a8b9d24011610123578063a8b9d2401461076c578063a9059cbb1461078c578063aa4bde28146107ac578063ad56c13c146107c257600080fd5b80639a7a23d61461070c578063a457c2d71461072c578063a8602fea1461074c57600080fd5b806381bfdcca1461066d57806385aa5e5a1461068d5780638c0b5e22146106ad5780638da5cb5b146106c357806395d89b41146106e157806398118cb4146106f657600080fd5b8063455a43961161024f5780635cce86cd116102085780636843cd84116101e25780636843cd84146105f857806370a0823114610618578063715018a61461063857806377e741c71461064d57600080fd5b80635cce86cd1461059357806364b0f653146105c3578063677daa57146105d857600080fd5b8063455a4396146104c457806348a46473146104e457806349bd5a5e146105045780634ada218b146105245780634e71d92d146105455780634fbee1931461055a57600080fd5b80632bb14e1d116102bc578063313ce56711610296578063313ce5671461044657806331e79db014610462578063357bf15c1461048457806339509351146104a457600080fd5b80632bb14e1d146103fb5780632c1f52161461041157806330bb4cff1461043157600080fd5b806306fdde031461030f578063095ea7b31461033a57806313114a9d1461036a5780631694505e1461038e57806318160ddd146103c657806323b872dd146103db57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b506103246109de565b6040516103319190612726565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612581565b610a70565b6040519015158152602001610331565b34801561037657600080fd5b50610380600e5481565b604051908152602001610331565b34801561039a57600080fd5b506006546103ae906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b3480156103d257600080fd5b50600254610380565b3480156103e757600080fd5b5061035a6103f63660046124d3565b610a86565b34801561040757600080fd5b50610380600b5481565b34801561041d57600080fd5b506008546103ae906001600160a01b031681565b34801561043d57600080fd5b50610380610b35565b34801561045257600080fd5b5060405160128152602001610331565b34801561046e57600080fd5b5061048261047d366004612460565b610bb7565b005b34801561049057600080fd5b5061048261049f36600461266d565b610c44565b3480156104b057600080fd5b5061035a6104bf366004612581565b610c94565b3480156104d057600080fd5b506104826104df366004612514565b610cd0565b3480156104f057600080fd5b506104826104ff36600461266d565b610d25565b34801561051057600080fd5b506007546103ae906001600160a01b031681565b34801561053057600080fd5b50600f5461035a90600160a01b900460ff1681565b34801561055157600080fd5b50610482610d54565b34801561056657600080fd5b5061035a610575366004612460565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561059f57600080fd5b5061035a6105ae366004612460565b60146020526000908152604090205460ff1681565b3480156105cf57600080fd5b50610380610de2565b3480156105e457600080fd5b506104826105f336600461266d565b610e27565b34801561060457600080fd5b50610380610613366004612460565b610e56565b34801561062457600080fd5b50610380610633366004612460565b610edb565b34801561064457600080fd5b50610482610ef6565b34801561065957600080fd5b5061048261066836600461266d565b610f2c565b34801561067957600080fd5b5061048261068836600461266d565b610f70565b34801561069957600080fd5b506104826106a836600461266d565b610f9f565b3480156106b957600080fd5b5061038060125481565b3480156106cf57600080fd5b506005546001600160a01b03166103ae565b3480156106ed57600080fd5b50610324610fe4565b34801561070257600080fd5b50610380600c5481565b34801561071857600080fd5b50610482610727366004612514565b610ff3565b34801561073857600080fd5b5061035a610747366004612581565b6110d5565b34801561075857600080fd5b50610482610767366004612460565b61116e565b34801561077857600080fd5b50610380610787366004612460565b6111ba565b34801561079857600080fd5b5061035a6107a7366004612581565b6111ed565b3480156107b857600080fd5b5061038060135481565b3480156107ce57600080fd5b506107e26107dd366004612460565b6111fa565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610331565b34801561081857600080fd5b5061035a610827366004612460565b60116020526000908152604090205460ff1681565b34801561084857600080fd5b50610482610857366004612514565b61128e565b34801561086857600080fd5b50610482610877366004612514565b611317565b34801561088857600080fd5b50610482610897366004612460565b61136c565b3480156108a857600080fd5b506104826108b73660046125ad565b6113e2565b3480156108c857600080fd5b50600f546103ae906001600160a01b031681565b3480156108e857600080fd5b50610380600d5481565b3480156108fe57600080fd5b5061038061090d36600461249a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561094457600080fd5b5061038060095481565b34801561095a57600080fd5b50610482610969366004612633565b6114be565b34801561097a57600080fd5b506107e261098936600461266d565b611506565b34801561099a57600080fd5b506104826109a9366004612460565b611540565b3480156109ba57600080fd5b5061035a6109c9366004612460565b600a6020526000908152604090205460ff1681565b6060600380546109ed9061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a199061295f565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7d3384846115eb565b50600192915050565b6000610a9384848461170f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b1d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610b2a85338584036115eb565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610b7a57600080fd5b505afa158015610b8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb29190612686565b905090565b6005546001600160a01b03163314610be15760405162461bcd60e51b8152600401610b1490612804565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610c2957600080fd5b505af1158015610c3d573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c6e5760405162461bcd60e51b8152600401610b1490612804565b600c819055600d54600b54610c8e9190610c8890846115d8565b906115d8565b600e5550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a7d918590610ccb9086906128ef565b6115eb565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d4f5760405162461bcd60e51b8152600401610b1490612804565b600955565b6008546001600160a01b031663807ab4f7336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381600087803b158015610da757600080fd5b505af1158015610dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddf9190612650565b50565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610b7a57600080fd5b6005546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b1490612804565b601255565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed59190612686565b92915050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610f205760405162461bcd60e51b8152600401610b1490612804565b610f2a6000611d5e565b565b6005546001600160a01b03163314610f565760405162461bcd60e51b8152600401610b1490612804565b600d819055600c54600b54610c8e918391610c88916115d8565b6005546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610b1490612804565b601355565b6005546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610b1490612804565b600b819055600d54600c54610c8e9190610c889084906115d8565b6060600480546109ed9061295f565b6005546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610b1490612804565b6007546001600160a01b03838116911614156110c75760405162461bcd60e51b815260206004820152605960248201527f45524332304469766964656e64546f6b656e3a205468652050616e63616b655360448201527f77617020706169722063616e6e6f742062652072656d6f7665642066726f6d2060648201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000608482015260a401610b14565b6110d18282611db0565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b14565b61116433858584036115eb565b5060019392505050565b6005546001600160a01b031633146111985760405162461bcd60e51b8152600401610b1490612804565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610e85565b6000610a7d33848461170f565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392169063fbcbc0f1906024015b60806040518083038186803b15801561124757600080fd5b505afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190612542565b93509350935093509193509193565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113415760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113965760405162461bcd60e51b8152600401610b1490612804565b6008546001600160a01b031663b817d725826113b181610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610c0f565b6005546001600160a01b0316331461140c5760405162461bcd60e51b8152600401610b1490612804565b60005b8281101561147d57816010600086868581811061142e5761142e6129cb565b90506020020160208101906114439190612460565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114758161299a565b91505061140f565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516114b1939291906126cd565b60405180910390a1505050565b6005546001600160a01b031633146114e85760405162461bcd60e51b8152600401610b1490612804565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b600854604051635183d6fd60e01b8152600481018390526000918291829182916001600160a01b0390911690635183d6fd9060240161122f565b6005546001600160a01b0316331461156a5760405162461bcd60e51b8152600401610b1490612804565b6001600160a01b0381166115cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b14565b610ddf81611d5e565b60006115e482846128ef565b9392505050565b6001600160a01b03831661164d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b14565b6001600160a01b0382166116ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b14565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117355760405162461bcd60e51b8152600401610b1490612839565b6001600160a01b03821661175b5760405162461bcd60e51b8152600401610b149061277b565b8061176584610edb565b10156117835760405162461bcd60e51b8152600401610b14906127be565b6001600160a01b0383166000908152600a602052604090205460ff161580156117c557506001600160a01b0382166000908152600a602052604090205460ff16155b6118075760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610b14565b6001600160a01b03831660009081526011602052604090205460ff168061184657506001600160a01b03821660009081526011602052604090205460ff165b801561187957506005546001600160a01b0384811691161480159061187957506005546001600160a01b03838116911614155b156118d057600f54600160a01b900460ff166118d05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610b14565b6001600160a01b03831660009081526014602052604090205460ff16158061193457506001600160a01b03831660009081526011602052604090205460ff16801561193457506001600160a01b03821660009081526014602052604090205460ff16155b156119a1576012548111156119a15760405162461bcd60e51b815260206004820152602d60248201527f416e74692d7768616c653a205472616e7366657220616d6f756e74206578636560448201526c19591cc81b585e081b1a5b5a5d609a1b6064820152608401610b14565b6001600160a01b03821660009081526014602052604090205460ff16611a3a57601354816119ce84610edb565b6119d891906128ef565b1115611a3a5760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b6064820152608401610b14565b80611a5057611a4b83836000611f2e565b505050565b6000611a5b30610edb565b60095490915081108015908190611a7c5750600754600160a01b900460ff16155b8015611aa157506001600160a01b03851660009081526011602052604090205460ff16155b8015611abb57506005546001600160a01b03868116911614155b8015611ad557506005546001600160a01b03858116911614155b15611b85576007805460ff60a01b1916600160a01b179055600d5415611b25576000611b18600e54611b12600d548661204590919063ffffffff16565b90612051565b9050611b238161205d565b505b600c5415611b57576000611b4a600e54611b12600c548661204590919063ffffffff16565b9050611b5581612113565b505b600b5415611b77576000611b6a30610edb565b9050611b758161219a565b505b6007805460ff60a01b191690555b600754600090600160a01b900460ff16158015611bdc57506001600160a01b03861660009081526011602052604090205460ff1680611bdc57506001600160a01b03851660009081526011602052604090205460ff165b6001600160a01b03871660009081526010602052604090205490915060ff1680611c1e57506001600160a01b03851660009081526010602052604090205460ff165b15611c27575060005b8015611c64576000611c496064611b12600e548861204590919063ffffffff16565b9050611c558582612239565b9450611c62873083611f2e565b505b611c6f868686611f2e565b6008546001600160a01b031663e30443bc87611c8a81610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611cd057600080fd5b505af1925050508015611ce1575060015b506008546001600160a01b031663e30443bc86611cfd81610edb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611d4357600080fd5b505af1925050508015611d54575060015b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e5a5760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a401610b14565b6001600160a01b0382166000908152601160205260409020805460ff19168215801591909117909155611ef257611e92826001611317565b60085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015611ed957600080fd5b505af1158015611eed573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316611f545760405162461bcd60e51b8152600401610b1490612839565b6001600160a01b038216611f7a5760405162461bcd60e51b8152600401610b149061277b565b6001600160a01b03831660009081526020819052604090205481811015611fb35760405162461bcd60e51b8152600401610b14906127be565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fea9084906128ef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203691815260200190565b60405180910390a35b50505050565b60006115e48284612929565b60006115e48284612907565b4761206782612245565b60006120734783612239565b600f546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146120c5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ca565b606091505b50509050801561203f5760408051858152602081018490527f0650a4f59c09c1cbab7e26dcbb938d145968701b20a4e2ea06be24751b76690e910160405180910390a150505050565b6000612120826002612051565b9050600061212e8383612239565b90504761213a83612245565b60006121464783612239565b905061215283826123a6565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b6121a381612245565b60085460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146121f4576040519150601f19603f3d011682016040523d82523d6000602084013e6121f9565b606091505b505090508015611a4b5760408051848152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc391016114b1565b60006115e48284612948565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061227a5761227a6129cb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156122ce57600080fd5b505afa1580156122e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612306919061247d565b81600181518110612319576123196129cb565b6001600160a01b03928316602091820292909201015260065461233f91309116846115eb565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061237890859060009086903090429060040161287e565b600060405180830381600087803b15801561239257600080fd5b505af1158015611d56573d6000803e3d6000fd5b6006546123be9030906001600160a01b0316846115eb565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561242757600080fd5b505af115801561243b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3d919061269f565b60006020828403121561247257600080fd5b81356115e4816129e1565b60006020828403121561248f57600080fd5b81516115e4816129e1565b600080604083850312156124ad57600080fd5b82356124b8816129e1565b915060208301356124c8816129e1565b809150509250929050565b6000806000606084860312156124e857600080fd5b83356124f3816129e1565b92506020840135612503816129e1565b929592945050506040919091013590565b6000806040838503121561252757600080fd5b8235612532816129e1565b915060208301356124c8816129f6565b6000806000806080858703121561255857600080fd5b8451612563816129e1565b60208601516040870151606090970151919890975090945092505050565b6000806040838503121561259457600080fd5b823561259f816129e1565b946020939093013593505050565b6000806000604084860312156125c257600080fd5b833567ffffffffffffffff808211156125da57600080fd5b818601915086601f8301126125ee57600080fd5b8135818111156125fd57600080fd5b8760208260051b850101111561261257600080fd5b60209283019550935050840135612628816129f6565b809150509250925092565b60006020828403121561264557600080fd5b81356115e4816129f6565b60006020828403121561266257600080fd5b81516115e4816129f6565b60006020828403121561267f57600080fd5b5035919050565b60006020828403121561269857600080fd5b5051919050565b6000806000606084860312156126b457600080fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b868110156127105782356126f3816129e1565b6001600160a01b03168252602092830192909101906001016126e0565b5080925050508215156020830152949350505050565b600060208083528351808285015260005b8181101561275357858101830151858201604001528201612737565b81811115612765576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128ce5784516001600160a01b0316835293830193918301916001016128a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612902576129026129b5565b500190565b60008261292457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612943576129436129b5565b500290565b60008282101561295a5761295a6129b5565b500390565b600181811c9082168061297357607f821691505b6020821081141561299457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ae576129ae6129b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610ddf57600080fd5b8015158114610ddf57600080fdfea264697066735822122006abb05b27d64c1def909eda046f8377b9e655bbbb3c371bd9f2caf124c335ea64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000018f6faef03c2797dff688165470bd1072816e583
-----Decoded View---------------
Arg [0] : _treasuryAddress (address): 0x18F6faEf03c2797dFf688165470BD1072816e583
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000018f6faef03c2797dff688165470bd1072816e583
Deployed Bytecode Sourcemap
64026:682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11463:169;;;;;;;;;;-1:-1:-1;11463:169:0;;;;;:::i;:::-;;:::i;:::-;;;7151:14:1;;7144:22;7126:41;;7114:2;7099:18;11463:169:0;6986:187:1;47140:24:0;;;;;;;;;;;;;;;;;;;14522:25:1;;;14510:2;14495:18;47140:24:0;14376:177:1;46777:41:0;;;;;;;;;;-1:-1:-1;46777:41:0;;;;-1:-1:-1;;;;;46777:41:0;;;;;;-1:-1:-1;;;;;4832:32:1;;;4814:51;;4802:2;4787:18;46777:41:0;4668:203:1;10416:108:0;;;;;;;;;;-1:-1:-1;10504:12:0;;10416:108;;12114:492;;;;;;;;;;-1:-1:-1;12114:492:0;;;;;:::i;:::-;;:::i;47041:25::-;;;;;;;;;;;;;;;;46892:43;;;;;;;;;;-1:-1:-1;46892:43:0;;;;-1:-1:-1;;;;;46892:43:0;;;53511:141;;;;;;;;;;;;;:::i;10258:93::-;;;;;;;;;;-1:-1:-1;10258:93:0;;10341:2;16262:36:1;;16250:2;16235:18;10258:93:0;16120:184:1;54165:130:0;;;;;;;;;;-1:-1:-1;54165:130:0;;;;;:::i;:::-;;:::i;:::-;;52181:166;;;;;;;;;;-1:-1:-1;52181:166:0;;;;;:::i;:::-;;:::i;13015:215::-;;;;;;;;;;-1:-1:-1;13015:215:0;;;;;:::i;:::-;;:::i;52871:123::-;;;;;;;;;;-1:-1:-1;52871:123:0;;;;;:::i;:::-;;:::i;50080:114::-;;;;;;;;;;-1:-1:-1;50080:114:0;;;;;:::i;:::-;;:::i;46825:28::-;;;;;;;;;;-1:-1:-1;46825:28:0;;;;-1:-1:-1;;;;;46825:28:0;;;47212:26;;;;;;;;;;-1:-1:-1;47212:26:0;;;;-1:-1:-1;;;47212:26:0;;;;;;55011:89;;;;;;;;;;;;;:::i;53660:126::-;;;;;;;;;;-1:-1:-1;53660:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;53750:28:0;53726:4;53750:28;;;:19;:28;;;;;;;;;53660:126;47648:53;;;;;;;;;;-1:-1:-1;47648:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55108:142;;;;;;;;;;;;;:::i;49858:99::-;;;;;;;;;;-1:-1:-1;49858:99:0;;;;;:::i;:::-;;:::i;53986:171::-;;;;;;;;;;-1:-1:-1;53986:171:0;;;;;:::i;:::-;;:::i;10587:127::-;;;;;;;;;;-1:-1:-1;10587:127:0;;;;;:::i;:::-;;:::i;2709:103::-;;;;;;;;;;;;;:::i;52355:164::-;;;;;;;;;;-1:-1:-1;52355:164:0;;;;;:::i;:::-;;:::i;49965:107::-;;;;;;;;;;-1:-1:-1;49965:107:0;;;;;:::i;:::-;;:::i;52011:162::-;;;;;;;;;;-1:-1:-1;52011:162:0;;;;;:::i;:::-;;:::i;47576:26::-;;;;;;;;;;;;;;;;2058:87;;;;;;;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;2131:6:0;2058:87;;9515:104;;;;;;;;;;;;;:::i;47073:27::-;;;;;;;;;;;;;;;;52527:336;;;;;;;;;;-1:-1:-1;52527:336:0;;;;;:::i;:::-;;:::i;13733:413::-;;;;;;;;;;-1:-1:-1;13733:413:0;;;;;:::i;:::-;;:::i;51898:105::-;;;;;;;;;;-1:-1:-1;51898:105:0;;;;;:::i;:::-;;:::i;53794:184::-;;;;;;;;;;-1:-1:-1;53794:184:0;;;;;:::i;:::-;;:::i;10927:175::-;;;;;;;;;;-1:-1:-1;10927:175:0;;;;;:::i;:::-;;:::i;47609:30::-;;;;;;;;;;;;;;;;54457:264;;;;;;;;;;-1:-1:-1;54457:264:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5123:32:1;;;5105:51;;5187:2;5172:18;;5165:34;;;;5215:18;;;5208:34;5273:2;5258:18;;5251:34;5092:3;5077:19;54457:264:0;4876:415:1;47510:57:0;;;;;;;;;;-1:-1:-1;47510:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51368:184;;;;;;;;;;-1:-1:-1;51368:184:0;;;;;:::i;:::-;;:::i;49715:135::-;;;;;;;;;;-1:-1:-1;49715:135:0;;;;;:::i;:::-;;:::i;54303:146::-;;;;;;;;;;-1:-1:-1;54303:146:0;;;;;:::i;:::-;;:::i;51560:330::-;;;;;;;;;;-1:-1:-1;51560:330:0;;;;;:::i;:::-;;:::i;47173:30::-;;;;;;;;;;-1:-1:-1;47173:30:0;;;;-1:-1:-1;;;;;47173:30:0;;;47107:26;;;;;;;;;;;;;;;;11165:151;;;;;;;;;;-1:-1:-1;11165:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11281:18:0;;;11254:7;11281:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11165:151;46944:34;;;;;;;;;;;;;;;;50202:99;;;;;;;;;;-1:-1:-1;50202:99:0;;;;;:::i;:::-;;:::i;54729:274::-;;;;;;;;;;-1:-1:-1;54729:274:0;;;;;:::i;:::-;;:::i;2967:201::-;;;;;;;;;;-1:-1:-1;2967:201:0;;;;;:::i;:::-;;:::i;46987:45::-;;;;;;;;;;-1:-1:-1;46987:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9296:100;9350:13;9383:5;9376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:100;:::o;11463:169::-;11546:4;11563:39;860:10;11586:7;11595:6;11563:8;:39::i;:::-;-1:-1:-1;11620:4:0;11463:169;;;;:::o;12114:492::-;12254:4;12271:36;12281:6;12289:9;12300:6;12271:9;:36::i;:::-;-1:-1:-1;;;;;12347:19:0;;12320:24;12347:19;;;:11;:19;;;;;;;;860:10;12347:33;;;;;;;;12399:26;;;;12391:79;;;;-1:-1:-1;;;12391:79:0;;12591:2:1;12391:79:0;;;12573:21:1;12630:2;12610:18;;;12603:30;12669:34;12649:18;;;12642:62;-1:-1:-1;;;12720:18:1;;;12713:38;12768:19;;12391:79:0;;;;;;;;;12506:57;12515:6;860:10;12556:6;12537:16;:25;12506:8;:57::i;:::-;-1:-1:-1;12594:4:0;;12114:492;-1:-1:-1;;;;12114:492:0:o;53511:141::-;53601:15;;:43;;;-1:-1:-1;;;53601:43:0;;;;53574:7;;-1:-1:-1;;;;;53601:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53594:50;;53511:141;:::o;54165:130::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;54242:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;54242:45:0;;-1:-1:-1;;;;;4832:32:1;;;54242:45:0::1;::::0;::::1;4814:51:1::0;54242:15:0;;::::1;::::0;:36:::1;::::0;4787:18:1;;54242:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54165:130:::0;:::o;52181:166::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;52251:12:::1;:20:::0;;;52327:11:::1;::::0;52294:10:::1;::::0;:45:::1;::::0;52327:11;52294:28:::1;::::0;52266:5;52294:14:::1;:28::i;:::-;:32:::0;::::1;:45::i;:::-;52282:9;:57:::0;-1:-1:-1;52181:166:0:o;13015:215::-;860:10;13103:4;13152:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13152:34:0;;;;;;;;;;13103:4;;13120:80;;13143:7;;13152:47;;13189:10;;13152:47;:::i;:::-;13120:8;:80::i;52871:123::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52956:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;52956:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52871:123::o;50080:114::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;50158:19:::1;:28:::0;50080:114::o;55011:89::-;55048:15;;-1:-1:-1;;;;;55048:15:0;:30;860:10;55048:44;;-1:-1:-1;;;;;;55048:44:0;;;;;;;-1:-1:-1;;;;;4832:32:1;;;55048:44:0;;;4814:51:1;4787:18;;55048:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55011:89::o;55108:142::-;55201:15;;:41;;;-1:-1:-1;;;55201:41:0;;;;55174:7;;-1:-1:-1;;;;;55201:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;49858:99;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;49929:11:::1;:20:::0;49858:99::o;53986:171::-;54115:15;;:34;;-1:-1:-1;;;54115:34:0;;-1:-1:-1;;;;;4832:32:1;;;54115:34:0;;;4814:51:1;54083:7:0;;54115:15;;:25;;4787:18:1;;54115:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54108:41;53986:171;-1:-1:-1;;53986:171:0:o;10587:127::-;-1:-1:-1;;;;;10688:18:0;10661:7;10688:18;;;;;;;;;;;;10587:127::o;2709:103::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;2774:30:::1;2801:1;2774:18;:30::i;:::-;2709:103::o:0;52355:164::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;52424:11:::1;:19:::0;;;52481:12:::1;::::0;52466:10:::1;::::0;:45:::1;::::0;52438:5;;52466:28:::1;::::0;:14:::1;:28::i;49965:107::-:0;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;50040:15:::1;:24:::0;49965:107::o;52011:162::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;52079:10:::1;:18:::0;;;52153:11:::1;::::0;52135:12:::1;::::0;52120:45:::1;::::0;52153:11;52120:28:::1;::::0;52092:5;;52120:14:::1;:28::i;9515:104::-:0;9571:13;9604:7;9597:14;;;;;:::i;52527:336::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;52671:13:::1;::::0;-1:-1:-1;;;;;52663:21:0;;::::1;52671:13:::0;::::1;52663:21;;52641:160;;;::::0;-1:-1:-1;;;52641:160:0;;12093:2:1;52641:160:0::1;::::0;::::1;12075:21:1::0;12132:2;12112:18;;;12105:30;12171:34;12151:18;;;12144:62;12242:34;12222:18;;;12215:62;12314:27;12293:19;;;12286:56;12359:19;;52641:160:0::1;11891:493:1::0;52641:160:0::1;52814:41;52843:4;52849:5;52814:28;:41::i;:::-;52527:336:::0;;:::o;13733:413::-;860:10;13826:4;13870:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13870:34:0;;;;;;;;;;13923:35;;;;13915:85;;;;-1:-1:-1;;;13915:85:0;;14172:2:1;13915:85:0;;;14154:21:1;14211:2;14191:18;;;14184:30;14250:34;14230:18;;;14223:62;-1:-1:-1;;;14301:18:1;;;14294:35;14346:19;;13915:85:0;13970:401:1;13915:85:0;14036:67;860:10;14059:7;14087:15;14068:16;:34;14036:8;:67::i;:::-;-1:-1:-1;14134:4:0;;13733:413;-1:-1:-1;;;13733:413:0:o;51898:105::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;51971:15:::1;:24:::0;;-1:-1:-1;;;;;;51971:24:0::1;-1:-1:-1::0;;;;;51971:24:0;;;::::1;::::0;;;::::1;::::0;;51898:105::o;53794:184::-;53923:15;;:47;;-1:-1:-1;;;53923:47:0;;-1:-1:-1;;;;;4832:32:1;;;53923:47:0;;;4814:51:1;53891:7:0;;53923:15;;:38;;4787:18:1;;53923:47:0;4668:203:1;10927:175:0;11013:4;11030:42;860:10;11054:9;11065:6;11030:9;:42::i;54457:264::-;54678:15;;:35;;-1:-1:-1;;;54678:35:0;;-1:-1:-1;;;;;4832:32:1;;;54678:35:0;;;4814:51:1;54571:7:0;;;;;;;;54678:15;;:26;;4787:18:1;;54678:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54671:42;;;;;;;;54457:264;;;;;:::o;51368:184::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51453:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;51453:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51510:34;;7126:41:1;;;51510:34:0::1;::::0;7099:18:1;51510:34:0::1;;;;;;;51368:184:::0;;:::o;49715:135::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49802:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;49802:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49715:135::o;54303:146::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;54378:15:::1;::::0;-1:-1:-1;;;;;54378:15:0::1;:34;54413:7:::0;54422:18:::1;54413:7:::0;54422:9:::1;:18::i;:::-;54378:63;::::0;-1:-1:-1;;;;;;54378:63:0::1;::::0;;;;;;-1:-1:-1;;;;;5488:32:1;;;54378:63:0::1;::::0;::::1;5470:51:1::0;5537:18;;;5530:34;5443:18;;54378:63:0::1;5296:274:1::0;51560:330:0;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;51703:9:::1;51698:116;51718:19:::0;;::::1;51698:116;;;51794:8;51759:19;:32;51779:8;;51788:1;51779:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51759:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51759:32:0;:43;;-1:-1:-1;;51759:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51739:3;::::1;::::0;::::1;:::i;:::-;;;;51698:116;;;;51831:51;51863:8;;51873;51831:51;;;;;;;;:::i;:::-;;;;;;;;51560:330:::0;;;:::o;50202:99::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;50269:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;50269:24:0::1;-1:-1:-1::0;;;;50269:24:0;;::::1;::::0;;;::::1;::::0;;50202:99::o;54729:274::-;54955:15;;:40;;-1:-1:-1;;;54955:40:0;;;;;14522:25:1;;;54848:7:0;;;;;;;;-1:-1:-1;;;;;54955:15:0;;;;:33;;14495:18:1;;54955:40:0;14376:177:1;2967:201:0;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3056:22:0;::::1;3048:73;;;::::0;-1:-1:-1;;;3048:73:0;;8866:2:1;3048:73:0::1;::::0;::::1;8848:21:1::0;8905:2;8885:18;;;8878:30;8944:34;8924:18;;;8917:62;-1:-1:-1;;;8995:18:1;;;8988:36;9041:19;;3048:73:0::1;8664:402:1::0;3048:73:0::1;3132:28;3151:8;3132:18;:28::i;22123:98::-:0;22181:7;22208:5;22212:1;22208;:5;:::i;:::-;22201:12;22123:98;-1:-1:-1;;;22123:98:0:o;17417:380::-;-1:-1:-1;;;;;17553:19:0;;17545:68;;;;-1:-1:-1;;;17545:68:0;;13767:2:1;17545:68:0;;;13749:21:1;13806:2;13786:18;;;13779:30;13845:34;13825:18;;;13818:62;-1:-1:-1;;;13896:18:1;;;13889:34;13940:19;;17545:68:0;13565:400:1;17545:68:0;-1:-1:-1;;;;;17632:21:0;;17624:68;;;;-1:-1:-1;;;17624:68:0;;9273:2:1;17624:68:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:32;9444:19;;17624:68:0;9071:398:1;17624:68:0;-1:-1:-1;;;;;17705:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17757:32;;14522:25:1;;;17757:32:0;;14495:18:1;17757:32:0;;;;;;;17417:380;;;:::o;55258:2803::-;-1:-1:-1;;;;;55390:18:0;;55382:68;;;;-1:-1:-1;;;55382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55469:16:0;;55461:64;;;;-1:-1:-1;;;55461:64:0;;;;;;;:::i;:::-;55563:6;55544:15;55554:4;55544:9;:15::i;:::-;:25;;55536:76;;;;-1:-1:-1;;;55536:76:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55634:19:0;;;;;;:13;:19;;;;;;;;55633:20;:42;;;;-1:-1:-1;;;;;;55658:17:0;;;;;;:13;:17;;;;;;;;55657:18;55633:42;55625:74;;;;-1:-1:-1;;;55625:74:0;;10919:2:1;55625:74:0;;;10901:21:1;10958:2;10938:18;;;10931:30;-1:-1:-1;;;10977:18:1;;;10970:49;11036:18;;55625:74:0;10717:343:1;55625:74:0;-1:-1:-1;;;;;55717:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;55752:29:0;;;;;;:25;:29;;;;;;;;55717:64;55716:104;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;55787:15:0;;;2131:6;;55787:15;;;;:32;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;55806:13:0;;;2131:6;;55806:13;;55787:32;55712:186;;;55845:14;;-1:-1:-1;;;55845:14:0;;;;55837:49;;;;-1:-1:-1;;;55837:49:0;;9676:2:1;55837:49:0;;;9658:21:1;9715:2;9695:18;;;9688:30;-1:-1:-1;;;9734:18:1;;;9727:52;9796:18;;55837:49:0;9474:346:1;55837:49:0;-1:-1:-1;;;;;55915:26:0;;;;;;:20;:26;;;;;;;;55914:27;;:93;;-1:-1:-1;;;;;;55946:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;55982:24:0;;;;;;:20;:24;;;;;;;;55981:25;55946:60;55910:205;;;56042:11;;56032:6;:21;;56024:79;;;;-1:-1:-1;;;56024:79:0;;11679:2:1;56024:79:0;;;11661:21:1;11718:2;11698:18;;;11691:30;11757:34;11737:18;;;11730:62;-1:-1:-1;;;11808:18:1;;;11801:43;11861:19;;56024:79:0;11477:409:1;56024:79:0;-1:-1:-1;;;;;56130:24:0;;;;;;:20;:24;;;;;;;;56125:155;;56205:15;;56195:6;56179:13;56189:2;56179:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;56171:97;;;;-1:-1:-1;;;56171:97:0;;11267:2:1;56171:97:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345:34;11325:18;;;11318:62;-1:-1:-1;;;11396:18:1;;;11389:41;11447:19;;56171:97:0;11065:407:1;56171:97:0;56296:11;56292:93;;56324:28;56340:4;56346:2;56350:1;56324:15;:28::i;:::-;55258:2803;;;:::o;56292:93::-;56397:28;56428:24;56446:4;56428:9;:24::i;:::-;56504:19;;56397:55;;-1:-1:-1;56480:43:0;;;;;;;56554:33;;-1:-1:-1;56579:8:0;;-1:-1:-1;;;56579:8:0;;;;56578:9;56554:33;:82;;;;-1:-1:-1;;;;;;56605:31:0;;;;;;:25;:31;;;;;;;;56604:32;56554:82;:114;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;56653:15:0;;;2131:6;;56653:15;;56554:114;:144;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;56685:13:0;;;2131:6;;56685:13;;56554:144;56536:822;;;56725:8;:15;;-1:-1:-1;;;;56725:15:0;-1:-1:-1;;;56725:15:0;;;56761:11;;:15;56757:198;;56797:22;56822:52;56864:9;;56822:37;56847:11;;56822:20;:24;;:37;;;;:::i;:::-;:41;;:52::i;:::-;56797:77;;56893:46;56924:14;56893:30;:46::i;:::-;56778:177;56757:198;56973:12;;:16;56969:176;;57010:18;57031:53;57074:9;;57031:38;57056:12;;57031:20;:24;;:38;;;;:::i;:53::-;57010:74;;57103:26;57118:10;57103:14;:26::i;:::-;56991:154;56969:176;57163:10;;:14;57159:155;;57198:20;57221:24;57239:4;57221:9;:24::i;:::-;57198:47;;57264:34;57285:12;57264:20;:34::i;:::-;57179:135;57159:155;57330:8;:16;;-1:-1:-1;;;;57330:16:0;;;56536:822;57386:8;;57370:12;;-1:-1:-1;;;57386:8:0;;;;57385:9;:79;;;;-1:-1:-1;;;;;;57399:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;57434:29:0;;;;;;:25;:29;;;;;;;;57399:64;-1:-1:-1;;;;;57566:25:0;;;;;;:19;:25;;;;;;57370:94;;-1:-1:-1;57566:25:0;;;:52;;-1:-1:-1;;;;;;57595:23:0;;;;;;:19;:23;;;;;;;;57566:52;57562:100;;;-1:-1:-1;57645:5:0;57562:100;57678:7;57674:186;;;57702:12;57717:30;57743:3;57717:21;57728:9;;57717:6;:10;;:21;;;;:::i;:30::-;57702:45;-1:-1:-1;57773:16:0;:6;57702:45;57773:10;:16::i;:::-;57764:25;;57806:42;57822:4;57836;57843;57806:15;:42::i;:::-;57687:173;57674:186;57872:33;57888:4;57894:2;57898:6;57872:15;:33::i;:::-;57922:15;;-1:-1:-1;;;;;57922:15:0;:26;57949:4;57955:15;57949:4;57955:9;:15::i;:::-;57922:49;;-1:-1:-1;;;;;;57922:49:0;;;;;;;-1:-1:-1;;;;;5488:32:1;;;57922:49:0;;;5470:51:1;5537:18;;;5530:34;5443:18;;57922:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57918:65;57997:15;;-1:-1:-1;;;;;57997:15:0;:26;58024:2;58028:13;58024:2;58028:9;:13::i;:::-;57997:45;;-1:-1:-1;;;;;;57997:45:0;;;;;;;-1:-1:-1;;;;;5488:32:1;;;57997:45:0;;;5470:51:1;5537:18;;;5530:34;5443:18;;57997:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57993:61;;55371:2690;;;55258:2803;;;:::o;3328:191::-;3421:6;;;-1:-1:-1;;;;;3438:17:0;;;-1:-1:-1;;;;;;3438:17:0;;;;;;;3471:40;;3421:6;;;3438:17;3421:6;;3471:40;;3402:16;;3471:40;3391:128;3328:191;:::o;53002:501::-;-1:-1:-1;;;;;53107:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;53085:166;;;;-1:-1:-1;;;53085:166:0;;10434:2:1;53085:166:0;;;10416:21:1;10473:2;10453:18;;;10446:30;10512:34;10492:18;;;10485:62;10583:34;10563:18;;;10556:62;-1:-1:-1;;;10634:19:1;;;10627:43;10687:19;;53085:166:0;10232:480:1;53085:166:0;-1:-1:-1;;;;;53262:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;53262:39:0;;;;;;;;;;;;53314:124;;53340:29;53358:4;53364;53340:17;:29::i;:::-;53384:15;;:42;;-1:-1:-1;;;53384:42:0;;-1:-1:-1;;;;;4832:32:1;;;53384:42:0;;;4814:51:1;53384:15:0;;;;:36;;4787:18:1;;53384:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53314:124;53455:40;;;;;;-1:-1:-1;;;;;53455:40:0;;;;;;;;53002:501;;:::o;14636:733::-;-1:-1:-1;;;;;14776:20:0;;14768:70;;;;-1:-1:-1;;;14768:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14857:23:0;;14849:71;;;;-1:-1:-1;;;14849:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15017:17:0;;14993:21;15017:17;;;;;;;;;;;15053:23;;;;15045:74;;;;-1:-1:-1;;;15045:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15155:17:0;;;:9;:17;;;;;;;;;;;15175:22;;;15155:42;;15219:20;;;;;;;;:30;;15191:6;;15155:9;15219:30;;15191:6;;15219:30;:::i;:::-;;;;;;;;15284:9;-1:-1:-1;;;;;15267:35:0;15276:6;-1:-1:-1;;;;;15267:35:0;;15295:6;15267:35;;;;14522:25:1;;14510:2;14495:18;;14376:177;15267:35:0;;;;;;;;15315:46;14757:612;14636:733;;;:::o;22861:98::-;22919:7;22946:5;22950:1;22946;:5;:::i;23260:98::-;23318:7;23345:5;23349:1;23345;:5;:::i;60460:426::-;60560:21;60594:24;60611:6;60594:16;:24::i;:::-;60639:17;60659:41;:21;60685:14;60659:25;:41::i;:::-;60737:15;;60729:51;;60639:61;;-1:-1:-1;60712:12:0;;-1:-1:-1;;;;;60737:15:0;;;;60639:61;;60712:12;60729:51;60712:12;60729:51;60639:61;60737:15;60729:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60711:69;;;60796:7;60793:86;;;60825:42;;;15717:25:1;;;15773:2;15758:18;;15751:34;;;60825:42:0;;15690:18:1;60825:42:0;;;;;;;60524:362;;;60460:426;:::o;58069:923::-;58179:12;58194:13;:6;58205:1;58194:10;:13::i;:::-;58179:28;-1:-1:-1;58218:17:0;58238:16;:6;58179:28;58238:10;:16::i;:::-;58218:36;-1:-1:-1;58557:21:0;58623:22;58640:4;58623:16;:22::i;:::-;58776:18;58797:41;:21;58823:14;58797:25;:41::i;:::-;58776:62;;58888:35;58901:9;58912:10;58888:12;:35::i;:::-;58941:43;;;15998:25:1;;;16054:2;16039:18;;16032:34;;;16082:18;;;16075:34;;;58941:43:0;;15986:2:1;15971:18;58941:43:0;;;;;;;58117:875;;;;58069:923;:::o;60126:326::-;60191:24;60208:6;60191:16;:24::i;:::-;60312:15;;60296:60;;60246:21;;60226:17;;-1:-1:-1;;;;;60312:15:0;;;;60246:21;;60226:17;60296:60;60226:17;60296:60;60246:21;60312:15;60296:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60278:78;;;60372:7;60369:76;;;60401:32;;;15717:25:1;;;15773:2;15758:18;;15751:34;;;60401:32:0;;15690:18:1;60401:32:0;15543:248:1;22504:98:0;22562:7;22589:5;22593:1;22589;:5;:::i;59000:589::-;59150:16;;;59164:1;59150:16;;;;;;;;59126:21;;59150:16;;;;;;;;;;-1:-1:-1;59150:16:0;59126:40;;59195:4;59177;59182:1;59177:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59177:23:0;;;:7;;;;;;;;;;:23;;;;59221:15;;:22;;;-1:-1:-1;;;59221:22:0;;;;:15;;;;;:20;;:22;;;;;59177:7;;59221:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59211:4;59216:1;59211:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59211:32:0;;;:7;;;;;;;;;:32;59288:15;;59256:62;;59273:4;;59288:15;59306:11;59256:8;:62::i;:::-;59357:15;;:224;;-1:-1:-1;;;59357:224:0;;-1:-1:-1;;;;;59357:15:0;;;;:66;;:224;;59438:11;;59357:15;;59508:4;;59535;;59555:15;;59357:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59597:521;59777:15;;59745:62;;59762:4;;-1:-1:-1;;;;;59777:15:0;59795:11;59745:8;:62::i;:::-;59850:15;;:260;;-1:-1:-1;;;59850:260:0;;59922:4;59850:260;;;5916:34:1;5966:18;;;5959:34;;;59850:15:0;6009:18:1;;;6002:34;;;6052:18;;;6045:34;60062:6:0;6095:19:1;;;6088:44;60084:15:0;6148:19:1;;;6141:35;-1:-1:-1;;;;;59850:15:0;;;;:31;;59889:9;;5850:19:1;;59850:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:382::-;1441:6;1449;1502:2;1490:9;1481:7;1477:23;1473:32;1470:52;;;1518:1;1515;1508:12;1470:52;1557:9;1544:23;1576:31;1601:5;1576:31;:::i;:::-;1626:5;-1:-1:-1;1683:2:1;1668:18;;1655:32;1696:30;1655:32;1696:30;:::i;1763:434::-;1859:6;1867;1875;1883;1936:3;1924:9;1915:7;1911:23;1907:33;1904:53;;;1953:1;1950;1943:12;1904:53;1985:9;1979:16;2004:31;2029:5;2004:31;:::i;:::-;2099:2;2084:18;;2078:25;2143:2;2128:18;;2122:25;2187:2;2172:18;;;2166:25;2054:5;;2078:25;;-1:-1:-1;2166:25:1;;-1:-1:-1;1763:434:1;-1:-1:-1;;;1763:434:1:o;2202:315::-;2270:6;2278;2331:2;2319:9;2310:7;2306:23;2302:32;2299:52;;;2347:1;2344;2337:12;2299:52;2386:9;2373:23;2405:31;2430:5;2405:31;:::i;:::-;2455:5;2507:2;2492:18;;;;2479:32;;-1:-1:-1;;;2202:315:1:o;2522:750::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2739:9;2726:23;2768:18;2809:2;2801:6;2798:14;2795:34;;;2825:1;2822;2815:12;2795:34;2863:6;2852:9;2848:22;2838:32;;2908:7;2901:4;2897:2;2893:13;2889:27;2879:55;;2930:1;2927;2920:12;2879:55;2970:2;2957:16;2996:2;2988:6;2985:14;2982:34;;;3012:1;3009;3002:12;2982:34;3067:7;3060:4;3050:6;3047:1;3043:14;3039:2;3035:23;3031:34;3028:47;3025:67;;;3088:1;3085;3078:12;3025:67;3119:4;3111:13;;;;-1:-1:-1;3143:6:1;-1:-1:-1;;3184:20:1;;3171:34;3214:28;3171:34;3214:28;:::i;:::-;3261:5;3251:15;;;2522:750;;;;;:::o;3277:241::-;3333:6;3386:2;3374:9;3365:7;3361:23;3357:32;3354:52;;;3402:1;3399;3392:12;3354:52;3441:9;3428:23;3460:28;3482:5;3460:28;:::i;3523:245::-;3590:6;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3691:9;3685:16;3710:28;3732:5;3710:28;:::i;3773:180::-;3832:6;3885:2;3873:9;3864:7;3860:23;3856:32;3853:52;;;3901:1;3898;3891:12;3853:52;-1:-1:-1;3924:23:1;;3773:180;-1:-1:-1;3773:180:1:o;3958:184::-;4028:6;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;-1:-1:-1;4120:16:1;;3958:184;-1:-1:-1;3958:184:1:o;4147:306::-;4235:6;4243;4251;4304:2;4292:9;4283:7;4279:23;4275:32;4272:52;;;4320:1;4317;4310:12;4272:52;4349:9;4343:16;4333:26;;4399:2;4388:9;4384:18;4378:25;4368:35;;4443:2;4432:9;4428:18;4422:25;4412:35;;4147:306;;;;;:::o;6187:794::-;6409:2;6421:21;;;6394:18;;6477:22;;;6361:4;6556:6;6530:2;6515:18;;6361:4;6590:304;6604:6;6601:1;6598:13;6590:304;;;6679:6;6666:20;6699:31;6724:5;6699:31;:::i;:::-;-1:-1:-1;;;;;6755:31:1;6743:44;;6810:4;6869:15;;;;6834:12;;;;6783:1;6619:9;6590:304;;;6594:3;6911;6903:11;;;;6966:6;6959:14;6952:22;6945:4;6934:9;6930:20;6923:52;6187:794;;;;;;:::o;7658:597::-;7770:4;7799:2;7828;7817:9;7810:21;7860:6;7854:13;7903:6;7898:2;7887:9;7883:18;7876:34;7928:1;7938:140;7952:6;7949:1;7946:13;7938:140;;;8047:14;;;8043:23;;8037:30;8013:17;;;8032:2;8009:26;8002:66;7967:10;;7938:140;;;8096:6;8093:1;8090:13;8087:91;;;8166:1;8161:2;8152:6;8141:9;8137:22;8133:31;8126:42;8087:91;-1:-1:-1;8239:2:1;8218:15;-1:-1:-1;;8214:29:1;8199:45;;;;8246:2;8195:54;;7658:597;-1:-1:-1;;;7658:597:1:o;8260:399::-;8462:2;8444:21;;;8501:2;8481:18;;;8474:30;8540:34;8535:2;8520:18;;8513:62;-1:-1:-1;;;8606:2:1;8591:18;;8584:33;8649:3;8634:19;;8260:399::o;9825:402::-;10027:2;10009:21;;;10066:2;10046:18;;;10039:30;10105:34;10100:2;10085:18;;10078:62;-1:-1:-1;;;10171:2:1;10156:18;;10149:36;10217:3;10202:19;;9825:402::o;12798:356::-;13000:2;12982:21;;;13019:18;;;13012:30;13078:34;13073:2;13058:18;;13051:62;13145:2;13130:18;;12798:356::o;13159:401::-;13361:2;13343:21;;;13400:2;13380:18;;;13373:30;13439:34;13434:2;13419:18;;13412:62;-1:-1:-1;;;13505:2:1;13490:18;;13483:35;13550:3;13535:19;;13159:401::o;14558:980::-;14820:4;14868:3;14857:9;14853:19;14899:6;14888:9;14881:25;14925:2;14963:6;14958:2;14947:9;14943:18;14936:34;15006:3;15001:2;14990:9;14986:18;14979:31;15030:6;15065;15059:13;15096:6;15088;15081:22;15134:3;15123:9;15119:19;15112:26;;15173:2;15165:6;15161:15;15147:29;;15194:1;15204:195;15218:6;15215:1;15212:13;15204:195;;;15283:13;;-1:-1:-1;;;;;15279:39:1;15267:52;;15374:15;;;;15339:12;;;;15315:1;15233:9;15204:195;;;-1:-1:-1;;;;;;;15455:32:1;;;;15450:2;15435:18;;15428:60;-1:-1:-1;;;15519:3:1;15504:19;15497:35;15416:3;14558:980;-1:-1:-1;;;14558:980:1:o;16309:128::-;16349:3;16380:1;16376:6;16373:1;16370:13;16367:39;;;16386:18;;:::i;:::-;-1:-1:-1;16422:9:1;;16309:128::o;16442:217::-;16482:1;16508;16498:132;;16552:10;16547:3;16543:20;16540:1;16533:31;16587:4;16584:1;16577:15;16615:4;16612:1;16605:15;16498:132;-1:-1:-1;16644:9:1;;16442:217::o;16664:168::-;16704:7;16770:1;16766;16762:6;16758:14;16755:1;16752:21;16747:1;16740:9;16733:17;16729:45;16726:71;;;16777:18;;:::i;:::-;-1:-1:-1;16817:9:1;;16664:168::o;16837:125::-;16877:4;16905:1;16902;16899:8;16896:34;;;16910:18;;:::i;:::-;-1:-1:-1;16947:9:1;;16837:125::o;16967:380::-;17046:1;17042:12;;;;17089;;;17110:61;;17164:4;17156:6;17152:17;17142:27;;17110:61;17217:2;17209:6;17206:14;17186:18;17183:38;17180:161;;;17263:10;17258:3;17254:20;17251:1;17244:31;17298:4;17295:1;17288:15;17326:4;17323:1;17316:15;17180:161;;16967:380;;;:::o;17352:135::-;17391:3;-1:-1:-1;;17412:17:1;;17409:43;;;17432:18;;:::i;:::-;-1:-1:-1;17479:1:1;17468:13;;17352:135::o;17492:127::-;17553:10;17548:3;17544:20;17541:1;17534:31;17584:4;17581:1;17574:15;17608:4;17605:1;17598:15;17624:127;17685:10;17680:3;17676:20;17673:1;17666:31;17716:4;17713:1;17706:15;17740:4;17737:1;17730:15;17888:131;-1:-1:-1;;;;;17963:31:1;;17953:42;;17943:70;;18009:1;18006;17999:12;18024:118;18110:5;18103:13;18096:21;18089:5;18086:32;18076:60;;18132:1;18129;18122:12
Swarm Source
ipfs://6ac6d7c493092a925e699deea2bb211624d31392c7c157c9cc6e59fb7c8e3684
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.