Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 417 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21042078 | 62 days ago | IN | 0 ETH | 0.00041078 | ||||
Approve | 21013205 | 66 days ago | IN | 0 ETH | 0.00039014 | ||||
Approve | 20730825 | 106 days ago | IN | 0 ETH | 0.00010379 | ||||
Approve | 20674401 | 113 days ago | IN | 0 ETH | 0.00006214 | ||||
Approve | 20674342 | 113 days ago | IN | 0 ETH | 0.00007255 | ||||
Approve | 20671434 | 114 days ago | IN | 0 ETH | 0.00010848 | ||||
Approve | 20570560 | 128 days ago | IN | 0 ETH | 0.00025105 | ||||
Approve | 20559103 | 130 days ago | IN | 0 ETH | 0.00004717 | ||||
Approve | 20553925 | 130 days ago | IN | 0 ETH | 0.0000688 | ||||
Approve | 20552889 | 130 days ago | IN | 0 ETH | 0.00003508 | ||||
Approve | 20535252 | 133 days ago | IN | 0 ETH | 0.00036575 | ||||
Approve | 20535240 | 133 days ago | IN | 0 ETH | 0.00041466 | ||||
Approve | 20523704 | 135 days ago | IN | 0 ETH | 0.00008987 | ||||
Approve | 20523655 | 135 days ago | IN | 0 ETH | 0.0001782 | ||||
Approve | 20523643 | 135 days ago | IN | 0 ETH | 0.00018005 | ||||
Approve | 20523186 | 135 days ago | IN | 0 ETH | 0.0000598 | ||||
Approve | 20523183 | 135 days ago | IN | 0 ETH | 0.00006256 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 | ||||
Approve | 20522315 | 135 days ago | IN | 0 ETH | 0.00023302 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20516842 | 135 days ago | 0.06921698 ETH | ||||
20516842 | 135 days ago | 0.06921698 ETH | ||||
20516840 | 135 days ago | 0.07324827 ETH | ||||
20516840 | 135 days ago | 0.07324827 ETH | ||||
20516839 | 135 days ago | 0.29536527 ETH | ||||
20516839 | 135 days ago | 0.29536527 ETH | ||||
20516837 | 135 days ago | 1.17504168 ETH | ||||
20516837 | 135 days ago | 1.17504168 ETH | ||||
20516834 | 135 days ago | 0.38646485 ETH | ||||
20516834 | 135 days ago | 0.38646485 ETH | ||||
20516831 | 135 days ago | 0.12779162 ETH | ||||
20516831 | 135 days ago | 0.12779162 ETH | ||||
20516831 | 135 days ago | 0.03904803 ETH | ||||
20516831 | 135 days ago | 0.03904803 ETH | ||||
20516831 | 135 days ago | 0.20192166 ETH | ||||
20516831 | 135 days ago | 0.20192166 ETH | ||||
20516831 | 135 days ago | 0.54088408 ETH | ||||
20516831 | 135 days ago | 0.54088408 ETH | ||||
20516831 | 135 days ago | 0.27887828 ETH | ||||
20516831 | 135 days ago | 0.27887828 ETH | ||||
20516831 | 135 days ago | 0.87513468 ETH | ||||
20516831 | 135 days ago | 0.87513468 ETH | ||||
20516831 | 135 days ago | 0.90115378 ETH | ||||
20516831 | 135 days ago | 0.90115378 ETH | ||||
20516827 | 135 days ago | 0.05440776 ETH |
Loading...
Loading
Contract Name:
Trump
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-13 */ /* * SPDX-License-Identifier: MIT * https://x.com/DJT_ON_ETH_ * https://t.me/DJT_ON_ETH * https://DonaldJTrumpOnEth.vip */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev 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 ); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 upd 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 upd 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 upd 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 {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Trump is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fees address private marketingWallet; uint256 private buyTaxTotal; uint256 private sellTaxTotal; uint256 private transferTaxTotal; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetDexPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor() ERC20("DONALD J TRUMP", "DJT") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); transacLims_whiteList(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); transacLims_whiteList(address(dexPair), true); _setDexPair(address(dexPair), true); uint256 _totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyTaxTotal = 30; sellTaxTotal = 30; transferTaxTotal = 0; marketingWallet = address(0xF885ac8916D9264220d2A18A4578C1f6001946a9); // exclude from paying fees or having max transaction amount texas_whiteList(msg.sender, true); texas_whiteList(address(this), true); texas_whiteList(address(0xdead), true); texas_whiteList(marketingWallet, true); transacLims_whiteList(msg.sender, true); transacLims_whiteList(address(this), true); transacLims_whiteList(address(0xdead), true); transacLims_whiteList(marketingWallet, true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, _totalSupply); } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function transacLims_remove() external onlyOwner { limitsEnabled = false; transferTaxTotal = 0; emit LimitsRemoved(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enable If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function caSwapb_setValues( bool _enable, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enable; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enable, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param txMaxNew Base 1000, so 1% = 10 */ function transacLims_txL_new( uint256 txMaxNew ) external onlyOwner { require(txMaxNew >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (txMaxNew * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param walletMaxNew Base 1000, so 1% = 10 */ function transacLims_wltL_set( uint256 walletMaxNew ) external onlyOwner { require(walletMaxNew >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (walletMaxNew * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function transacLims_whiteList( address updAds, bool isEx ) public onlyOwner { transferLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _newTax The fee for the marketing wallet */ function texas_onBuy_set( uint256 _newTax ) external onlyOwner { buyTaxTotal = _newTax; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyTaxTotal, buyTaxTotal); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _newTax The fee for the marketing wallet */ function texas_onSell_change( uint256 _newTax ) external onlyOwner { sellTaxTotal = _newTax; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellTaxTotal, sellTaxTotal); } function texas_onTransfers_set( uint256 _newTax ) external onlyOwner { transferTaxTotal = _newTax; require( transferTaxTotal <= 100, "Total transfer fee cannot be higher than 100%" ); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function texas_whiteList( address account, bool excluded ) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetDexPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setDexPair(address pair, bool value) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setDexPair(pair, value); } function _setDexPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetDexPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newMktWal The new marketing wallet */ function texas_setWlt(address newMktWal) external onlyOwner { emit MarketingWalletUpdated(newMktWal, marketingWallet); marketingWallet = newMktWal; } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function taxSwapback_rdVals() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsEnabled if the wallet limits are in effect * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function transacLims_rdVals() external view returns (bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx) { _limitsEnabled = limitsEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _marketingWallet The wallet that receives the marketing fees */ function receiver_rdVals() external view returns (address _marketingWallet) { return (marketingWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _sellTaxTotal The total fee for sells * @return _transferTaxTotal The total fee for transfers */ function taxes_rdVals() external view returns ( uint256 _buyTaxTotal, uint256 _sellTaxTotal, uint256 _transferTaxTotal ) { _buyTaxTotal = buyTaxTotal; _sellTaxTotal = sellTaxTotal; _transferTaxTotal = transferTaxTotal; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _transferTaxExempt If the wallet is excluded from fees * @return _transferLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function view_wallet( address _target ) external view returns ( bool _transferTaxExempt, bool _transferLimitExempt, bool _automatedMarketMakerPairs ) { _transferTaxExempt = transferTaxExempt[_target]; _transferLimitExempt = transferLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); } // on transfers else if (transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) { fees = amount.mul(transferTaxTotal).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } bool anti = true; function setAnti(bool _anti) external onlyOwner { anti = _anti; } function manualSwap(uint256 percent) external { require(marketingWallet == msg.sender, "Only marketing wallet can call this function"); uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance * percent / 100; swapTokensForEth(totalTokensToSwap); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 10) { contractBalance = amount * 10; } uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"caSwapb_setValues","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":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"percent","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiver_rdVals","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapback_rdVals","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes_rdVals","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_transferTaxTotal","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"texas_onBuy_set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"texas_onSell_change","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"texas_onTransfers_set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWal","type":"address"}],"name":"texas_setWlt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"texas_whiteList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"transacLims_rdVals","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transacLims_remove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txMaxNew","type":"uint256"}],"name":"transacLims_txL_new","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"transacLims_whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"walletMaxNew","type":"uint256"}],"name":"transacLims_wltL_set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"view_wallet","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c8054821690556013805490911690911790553480156200004457600080fd5b506040518060400160405280600e81526020016d0444f4e414c44204a205452554d560941b8152506040518060400160405280600381526020016211129560ea1b81525081600390816200009991906200083a565b506004620000a882826200083a565b505050620000c5620000bf620003ef60201b60201c565b620003f3565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e781600162000445565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000132573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000158919062000906565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cc919062000906565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000240919062000906565b6001600160a01b031660a08190526200025b90600162000445565b60a0516200026b906001620004f4565b60006200027b6012600a62000a4d565b6200028b90633b9aca0062000a5e565b90506103e86200029d82600a62000a5e565b620002a9919062000a78565b600a9081556103e890620002bf90839062000a5e565b620002cb919062000a78565b6009556103e8620002de82600162000a5e565b620002ea919062000a78565b6006556064620002fc82600262000a5e565b62000308919062000a78565b600755601e600d819055600e556000600f55600c8054610100600160a81b03191674f885ac8916d9264220d2a18a4578c1f6001946a9001790556200034f33600162000548565b6200035c30600162000548565b6200036b61dead600162000548565b600c54620003899061010090046001600160a01b0316600162000548565b6200039633600162000445565b620003a330600162000445565b620003b261dead600162000445565b600c54620003d09061010090046001600160a01b0316600162000445565b620003db33620005ec565b620003e73382620006ac565b505062000ab1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004945760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3683398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005935760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3683398151915260448201526064016200048b565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620004e8565b6005546001600160a01b03163314620006375760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3683398151915260448201526064016200048b565b6001600160a01b0381166200069e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200048b565b620006a981620003f3565b50565b6001600160a01b038216620007045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048b565b806002600082825462000718919062000a9b565b90915550506001600160a01b038216600090815260208190526040812080548392906200074790849062000a9b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007c157607f821691505b602082108103620007e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200079157600081815260208120601f850160051c81016020861015620008115750805b601f850160051c820191505b8181101562000832578281556001016200081d565b505050505050565b81516001600160401b0381111562000856576200085662000796565b6200086e81620008678454620007ac565b84620007e8565b602080601f831160018114620008a657600084156200088d5750858301515b600019600386901b1c1916600185901b17855562000832565b600085815260208120601f198616915b82811015620008d757888601518255948401946001909101908401620008b6565b5085821015620008f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091957600080fd5b81516001600160a01b03811681146200093157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200098f57816000190482111562000973576200097362000938565b808516156200098157918102915b93841c939080029062000953565b509250929050565b600082620009a85750600162000a47565b81620009b75750600062000a47565b8160018114620009d05760028114620009db57620009fb565b600191505062000a47565b60ff841115620009ef57620009ef62000938565b50506001821b62000a47565b5060208310610133831016604e8410600b841016171562000a20575081810a62000a47565b62000a2c83836200094e565b806000190482111562000a435762000a4362000938565b0290505b92915050565b60006200093160ff84168362000997565b808202811582820484141762000a475762000a4762000938565b60008262000a9657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a475762000a4762000938565b60805160a05161244a62000aec6000396000818161068f01526112e6015260008181611c4601528181611cff0152611d3b015261244a6000f3fe6080604052600436106102085760003560e01c80638ae5269111610118578063c9567bf9116100a0578063e55648f41161006f578063e55648f41461062c578063e597c8b21461064c578063f242ab411461067d578063f2fde38b146106b1578063fb70961b146106d157600080fd5b8063c9567bf91461058a578063d67859d51461059f578063d7d61e32146105bf578063dd62ed3e146105e657600080fd5b8063a15d6d44116100e7578063a15d6d44146104ea578063a31d8c941461050a578063a457c2d71461052a578063a9059cbb1461054a578063b70143c91461056a57600080fd5b80638ae52691146104775780638da5cb5b1461049757806395d89b41146104b55780639d252fc7146104ca57600080fd5b80634ada218b1161019b57806370fcb3b81161016a57806370fcb3b8146103cb578063715018a6146103eb57806374a96a20146104005780637ff6f7b914610420578063837dee6f1461044057600080fd5b80634ada218b146103215780634efcbe0e1461033b57806360b30a221461035b57806370a082311461039557600080fd5b806323b872dd116101d757806323b872dd146102a55780632fc940b4146102c5578063313ce567146102e5578063395093511461030157600080fd5b806306fdde0314610214578063095ea7b31461023f57806310fe7cc51461026f57806318160ddd1461028657600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610744565b604051610236919061202d565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004612090565b6107d6565b6040519015158152602001610236565b34801561027b57600080fd5b506102846107ed565b005b34801561029257600080fd5b506002545b604051908152602001610236565b3480156102b157600080fd5b5061025f6102c03660046120bc565b61085b565b3480156102d157600080fd5b506102846102e0366004612112565b610905565b3480156102f157600080fd5b5060405160128152602001610236565b34801561030d57600080fd5b5061025f61031c366004612090565b610aa3565b34801561032d57600080fd5b50600c5461025f9060ff1681565b34801561034757600080fd5b50610284610356366004612145565b610adf565b34801561036757600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610236565b3480156103a157600080fd5b506102976103b036600461217a565b6001600160a01b031660009081526020819052604090205490565b3480156103d757600080fd5b506102846103e6366004612197565b610b69565b3480156103f757600080fd5b50610284610c4c565b34801561040c57600080fd5b5061028461041b36600461217a565b610c82565b34801561042c57600080fd5b5061028461043b3660046121b0565b610d14565b34801561044c57600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b039091168152602001610236565b34801561048357600080fd5b50610284610492366004612145565b610d51565b3480156104a357600080fd5b506005546001600160a01b031661045f565b3480156104c157600080fd5b50610229610dd3565b3480156104d657600080fd5b506102846104e5366004612197565b610de2565b3480156104f657600080fd5b50610284610505366004612197565b610e7b565b34801561051657600080fd5b50610284610525366004612197565b610f4e565b34801561053657600080fd5b5061025f610545366004612090565b61101e565b34801561055657600080fd5b5061025f610565366004612090565b6110b7565b34801561057657600080fd5b50610284610585366004612197565b6110c4565b34801561059657600080fd5b5061028461116f565b3480156105ab57600080fd5b506102846105ba366004612197565b6111e6565b3480156105cb57600080fd5b50600554600654600754600160a81b90920460ff1691610378565b3480156105f257600080fd5b506102976106013660046121cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561063857600080fd5b50610284610647366004612145565b6112ba565b34801561065857600080fd5b50600d54600e54600f5460408051938452602084019290925290820152606001610236565b34801561068957600080fd5b5061045f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106bd57600080fd5b506102846106cc36600461217a565b611399565b3480156106dd57600080fd5b506107256106ec36600461217a565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610236565b60606003805461075390612204565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612204565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e3338484611431565b5060015b92915050565b6005546001600160a01b031633146108205760405162461bcd60e51b81526004016108179061223e565b60405180910390fd5b6008805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6000610868848484611555565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610817565b6108fa8533858403611431565b506001949350505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b81526004016108179061223e565b600182101561099d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610817565b81811015610a005760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610817565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610a2a9190612289565b610a3491906122a0565b60065561271081610a4460025490565b610a4e9190612289565b610a5891906122a0565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e3918590610ada9086906122c2565b611431565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016108179061223e565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b81526004016108179061223e565b6005811015610bf05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610817565b6103e8610bfc60025490565b610c069083612289565b610c1091906122a0565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610c765760405162461bcd60e51b81526004016108179061223e565b610c806000611b9d565b565b6005546001600160a01b03163314610cac5760405162461bcd60e51b81526004016108179061223e565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016108179061223e565b6013805460ff1916911515919091179055565b6005546001600160a01b03163314610d7b5760405162461bcd60e51b81526004016108179061223e565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610b5d565b60606004805461075390612204565b6005546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016108179061223e565b600f8190556064811115610e785760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610817565b50565b6005546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108179061223e565b600d8190556064811115610f0c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610817565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610c41565b6005546001600160a01b03163314610f785760405162461bcd60e51b81526004016108179061223e565b6002811015610fc95760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610817565b6103e8610fd560025490565b610fdf9083612289565b610fe991906122a0565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610c41565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610817565b6110ad3385858403611431565b5060019392505050565b60006107e3338484611555565b600c5461010090046001600160a01b031633146111385760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206d61726b6574696e672077616c6c65742063616e2063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610817565b306000908152602081905260408120549060646111558484612289565b61115f91906122a0565b905061116a81611bef565b505050565b6005546001600160a01b031633146111995760405162461bcd60e51b81526004016108179061223e565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146112105760405162461bcd60e51b81526004016108179061223e565b600e81905560648111156112785760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610817565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610c41565b6005546001600160a01b031633146112e45760405162461bcd60e51b81526004016108179061223e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361138b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610817565b6113958282611daf565b5050565b6005546001600160a01b031633146113c35760405162461bcd60e51b81526004016108179061223e565b6001600160a01b0381166114285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b610e7881611b9d565b6001600160a01b0383166114935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b0382166114f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661157b5760405162461bcd60e51b8152600401610817906122d5565b6001600160a01b0382166115a15760405162461bcd60e51b81526004016108179061231a565b806000036115b55761116a83836000611e03565b60085460ff161561191a576005546001600160a01b038481169116148015906115ec57506005546001600160a01b03838116911614155b801561160057506001600160a01b03821615155b801561161757506001600160a01b03821661dead14155b801561162d5750600554600160a01b900460ff16155b1561191a57600c5460ff166116d2576001600160a01b03831660009081526010602052604090205460ff168061167b57506001600160a01b03821660009081526010602052604090205460ff165b6116d25760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610817565b6001600160a01b03831660009081526012602052604090205460ff16801561171357506001600160a01b03821660009081526011602052604090205460ff16155b156117e857600a548111156117795760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610817565b6009546001600160a01b03831660009081526020819052604090205461179f90836122c2565b11156117e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b61191a565b6001600160a01b03821660009081526012602052604090205460ff16801561182957506001600160a01b03831660009081526011602052604090205460ff16155b1561189057600a548111156117e35760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610817565b6001600160a01b03821660009081526011602052604090205460ff1661191a576009546001600160a01b0383166000908152602081905260409020546118d690836122c2565b111561191a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b30600090815260208190526040902054600654811080159081906119475750600554600160a81b900460ff165b801561195d5750600554600160a01b900460ff16155b801561198257506001600160a01b03851660009081526012602052604090205460ff16155b80156119a757506001600160a01b03851660009081526010602052604090205460ff16155b80156119cc57506001600160a01b03841660009081526010602052604090205460ff16155b156119fb576005805460ff60a01b1916600160a01b1790556119ed83611f58565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b909204821615911680611a4957506001600160a01b03851660009081526010602052604090205460ff165b15611a52575060005b60008115611b89576001600160a01b03861660009081526012602052604090205460ff168015611a8457506000600e54115b15611ab057611aa96064611aa3600e548861200e90919063ffffffff16565b90612021565b9050611b6b565b6001600160a01b03871660009081526012602052604090205460ff168015611ada57506000600d54115b15611af957611aa96064611aa3600d548861200e90919063ffffffff16565b6000600f54118015611b2457506001600160a01b03871660009081526012602052604090205460ff16155b8015611b4957506001600160a01b03861660009081526012602052604090205460ff16155b15611b6b57611b686064611aa3600f548861200e90919063ffffffff16565b90505b8015611b7c57611b7c873083611e03565b611b86818661235d565b94505b611b94878787611e03565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c2457611c24612370565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc69190612386565b81600181518110611cd957611cd9612370565b60200260200101906001600160a01b031690816001600160a01b031681525050611d24307f000000000000000000000000000000000000000000000000000000000000000084611431565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d799085906000908690309042906004016123a3565b600060405180830381600087803b158015611d9357600080fd5b505af1158015611da7573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611e295760405162461bcd60e51b8152600401610817906122d5565b6001600160a01b038216611e4f5760405162461bcd60e51b81526004016108179061231a565b6001600160a01b03831660009081526020819052604090205481811015611ec75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611efe9084906122c2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f4a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f7557505050565b600754821115611f855760075491505b60135460ff168015611fa05750611f9d83600a612289565b82115b15611fb357611fb083600a612289565b91505b81611fbd81611bef565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611b94576040519150601f19603f3d011682016040523d82523d6000602084013e611b94565b600061201a8284612289565b9392505050565b600061201a82846122a0565b600060208083528351808285015260005b8181101561205a5785810183015185820160400152820161203e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e7857600080fd5b600080604083850312156120a357600080fd5b82356120ae8161207b565b946020939093013593505050565b6000806000606084860312156120d157600080fd5b83356120dc8161207b565b925060208401356120ec8161207b565b929592945050506040919091013590565b8035801515811461210d57600080fd5b919050565b60008060006060848603121561212757600080fd5b612130846120fd565b95602085013595506040909401359392505050565b6000806040838503121561215857600080fd5b82356121638161207b565b9150612171602084016120fd565b90509250929050565b60006020828403121561218c57600080fd5b813561201a8161207b565b6000602082840312156121a957600080fd5b5035919050565b6000602082840312156121c257600080fd5b61201a826120fd565b600080604083850312156121de57600080fd5b82356121e98161207b565b915060208301356121f98161207b565b809150509250929050565b600181811c9082168061221857607f821691505b60208210810361223857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e7576107e7612273565b6000826122bd57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107e7576107e7612273565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107e7576107e7612273565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561239857600080fd5b815161201a8161207b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123f35784516001600160a01b0316835293830193918301916001016123ce565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205339c1d7e67ad38326299f1c315976a625173563ce2227ff308da35a50174c4864736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102085760003560e01c80638ae5269111610118578063c9567bf9116100a0578063e55648f41161006f578063e55648f41461062c578063e597c8b21461064c578063f242ab411461067d578063f2fde38b146106b1578063fb70961b146106d157600080fd5b8063c9567bf91461058a578063d67859d51461059f578063d7d61e32146105bf578063dd62ed3e146105e657600080fd5b8063a15d6d44116100e7578063a15d6d44146104ea578063a31d8c941461050a578063a457c2d71461052a578063a9059cbb1461054a578063b70143c91461056a57600080fd5b80638ae52691146104775780638da5cb5b1461049757806395d89b41146104b55780639d252fc7146104ca57600080fd5b80634ada218b1161019b57806370fcb3b81161016a57806370fcb3b8146103cb578063715018a6146103eb57806374a96a20146104005780637ff6f7b914610420578063837dee6f1461044057600080fd5b80634ada218b146103215780634efcbe0e1461033b57806360b30a221461035b57806370a082311461039557600080fd5b806323b872dd116101d757806323b872dd146102a55780632fc940b4146102c5578063313ce567146102e5578063395093511461030157600080fd5b806306fdde0314610214578063095ea7b31461023f57806310fe7cc51461026f57806318160ddd1461028657600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610744565b604051610236919061202d565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004612090565b6107d6565b6040519015158152602001610236565b34801561027b57600080fd5b506102846107ed565b005b34801561029257600080fd5b506002545b604051908152602001610236565b3480156102b157600080fd5b5061025f6102c03660046120bc565b61085b565b3480156102d157600080fd5b506102846102e0366004612112565b610905565b3480156102f157600080fd5b5060405160128152602001610236565b34801561030d57600080fd5b5061025f61031c366004612090565b610aa3565b34801561032d57600080fd5b50600c5461025f9060ff1681565b34801561034757600080fd5b50610284610356366004612145565b610adf565b34801561036757600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610236565b3480156103a157600080fd5b506102976103b036600461217a565b6001600160a01b031660009081526020819052604090205490565b3480156103d757600080fd5b506102846103e6366004612197565b610b69565b3480156103f757600080fd5b50610284610c4c565b34801561040c57600080fd5b5061028461041b36600461217a565b610c82565b34801561042c57600080fd5b5061028461043b3660046121b0565b610d14565b34801561044c57600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b039091168152602001610236565b34801561048357600080fd5b50610284610492366004612145565b610d51565b3480156104a357600080fd5b506005546001600160a01b031661045f565b3480156104c157600080fd5b50610229610dd3565b3480156104d657600080fd5b506102846104e5366004612197565b610de2565b3480156104f657600080fd5b50610284610505366004612197565b610e7b565b34801561051657600080fd5b50610284610525366004612197565b610f4e565b34801561053657600080fd5b5061025f610545366004612090565b61101e565b34801561055657600080fd5b5061025f610565366004612090565b6110b7565b34801561057657600080fd5b50610284610585366004612197565b6110c4565b34801561059657600080fd5b5061028461116f565b3480156105ab57600080fd5b506102846105ba366004612197565b6111e6565b3480156105cb57600080fd5b50600554600654600754600160a81b90920460ff1691610378565b3480156105f257600080fd5b506102976106013660046121cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561063857600080fd5b50610284610647366004612145565b6112ba565b34801561065857600080fd5b50600d54600e54600f5460408051938452602084019290925290820152606001610236565b34801561068957600080fd5b5061045f7f000000000000000000000000304753d5471c45f535378dcc7c26510cae86b44a81565b3480156106bd57600080fd5b506102846106cc36600461217a565b611399565b3480156106dd57600080fd5b506107256106ec36600461217a565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610236565b60606003805461075390612204565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612204565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e3338484611431565b5060015b92915050565b6005546001600160a01b031633146108205760405162461bcd60e51b81526004016108179061223e565b60405180910390fd5b6008805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6000610868848484611555565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610817565b6108fa8533858403611431565b506001949350505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b81526004016108179061223e565b600182101561099d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610817565b81811015610a005760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610817565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610a2a9190612289565b610a3491906122a0565b60065561271081610a4460025490565b610a4e9190612289565b610a5891906122a0565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e3918590610ada9086906122c2565b611431565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016108179061223e565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b81526004016108179061223e565b6005811015610bf05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610817565b6103e8610bfc60025490565b610c069083612289565b610c1091906122a0565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610c765760405162461bcd60e51b81526004016108179061223e565b610c806000611b9d565b565b6005546001600160a01b03163314610cac5760405162461bcd60e51b81526004016108179061223e565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016108179061223e565b6013805460ff1916911515919091179055565b6005546001600160a01b03163314610d7b5760405162461bcd60e51b81526004016108179061223e565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610b5d565b60606004805461075390612204565b6005546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016108179061223e565b600f8190556064811115610e785760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610817565b50565b6005546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108179061223e565b600d8190556064811115610f0c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610817565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610c41565b6005546001600160a01b03163314610f785760405162461bcd60e51b81526004016108179061223e565b6002811015610fc95760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610817565b6103e8610fd560025490565b610fdf9083612289565b610fe991906122a0565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610c41565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610817565b6110ad3385858403611431565b5060019392505050565b60006107e3338484611555565b600c5461010090046001600160a01b031633146111385760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206d61726b6574696e672077616c6c65742063616e2063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610817565b306000908152602081905260408120549060646111558484612289565b61115f91906122a0565b905061116a81611bef565b505050565b6005546001600160a01b031633146111995760405162461bcd60e51b81526004016108179061223e565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146112105760405162461bcd60e51b81526004016108179061223e565b600e81905560648111156112785760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610817565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610c41565b6005546001600160a01b031633146112e45760405162461bcd60e51b81526004016108179061223e565b7f000000000000000000000000304753d5471c45f535378dcc7c26510cae86b44a6001600160a01b0316826001600160a01b03160361138b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610817565b6113958282611daf565b5050565b6005546001600160a01b031633146113c35760405162461bcd60e51b81526004016108179061223e565b6001600160a01b0381166114285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b610e7881611b9d565b6001600160a01b0383166114935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b0382166114f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661157b5760405162461bcd60e51b8152600401610817906122d5565b6001600160a01b0382166115a15760405162461bcd60e51b81526004016108179061231a565b806000036115b55761116a83836000611e03565b60085460ff161561191a576005546001600160a01b038481169116148015906115ec57506005546001600160a01b03838116911614155b801561160057506001600160a01b03821615155b801561161757506001600160a01b03821661dead14155b801561162d5750600554600160a01b900460ff16155b1561191a57600c5460ff166116d2576001600160a01b03831660009081526010602052604090205460ff168061167b57506001600160a01b03821660009081526010602052604090205460ff165b6116d25760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610817565b6001600160a01b03831660009081526012602052604090205460ff16801561171357506001600160a01b03821660009081526011602052604090205460ff16155b156117e857600a548111156117795760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610817565b6009546001600160a01b03831660009081526020819052604090205461179f90836122c2565b11156117e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b61191a565b6001600160a01b03821660009081526012602052604090205460ff16801561182957506001600160a01b03831660009081526011602052604090205460ff16155b1561189057600a548111156117e35760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610817565b6001600160a01b03821660009081526011602052604090205460ff1661191a576009546001600160a01b0383166000908152602081905260409020546118d690836122c2565b111561191a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b30600090815260208190526040902054600654811080159081906119475750600554600160a81b900460ff165b801561195d5750600554600160a01b900460ff16155b801561198257506001600160a01b03851660009081526012602052604090205460ff16155b80156119a757506001600160a01b03851660009081526010602052604090205460ff16155b80156119cc57506001600160a01b03841660009081526010602052604090205460ff16155b156119fb576005805460ff60a01b1916600160a01b1790556119ed83611f58565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b909204821615911680611a4957506001600160a01b03851660009081526010602052604090205460ff165b15611a52575060005b60008115611b89576001600160a01b03861660009081526012602052604090205460ff168015611a8457506000600e54115b15611ab057611aa96064611aa3600e548861200e90919063ffffffff16565b90612021565b9050611b6b565b6001600160a01b03871660009081526012602052604090205460ff168015611ada57506000600d54115b15611af957611aa96064611aa3600d548861200e90919063ffffffff16565b6000600f54118015611b2457506001600160a01b03871660009081526012602052604090205460ff16155b8015611b4957506001600160a01b03861660009081526012602052604090205460ff16155b15611b6b57611b686064611aa3600f548861200e90919063ffffffff16565b90505b8015611b7c57611b7c873083611e03565b611b86818661235d565b94505b611b94878787611e03565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c2457611c24612370565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc69190612386565b81600181518110611cd957611cd9612370565b60200260200101906001600160a01b031690816001600160a01b031681525050611d24307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611431565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d799085906000908690309042906004016123a3565b600060405180830381600087803b158015611d9357600080fd5b505af1158015611da7573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611e295760405162461bcd60e51b8152600401610817906122d5565b6001600160a01b038216611e4f5760405162461bcd60e51b81526004016108179061231a565b6001600160a01b03831660009081526020819052604090205481811015611ec75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611efe9084906122c2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f4a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f7557505050565b600754821115611f855760075491505b60135460ff168015611fa05750611f9d83600a612289565b82115b15611fb357611fb083600a612289565b91505b81611fbd81611bef565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611b94576040519150601f19603f3d011682016040523d82523d6000602084013e611b94565b600061201a8284612289565b9392505050565b600061201a82846122a0565b600060208083528351808285015260005b8181101561205a5785810183015185820160400152820161203e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e7857600080fd5b600080604083850312156120a357600080fd5b82356120ae8161207b565b946020939093013593505050565b6000806000606084860312156120d157600080fd5b83356120dc8161207b565b925060208401356120ec8161207b565b929592945050506040919091013590565b8035801515811461210d57600080fd5b919050565b60008060006060848603121561212757600080fd5b612130846120fd565b95602085013595506040909401359392505050565b6000806040838503121561215857600080fd5b82356121638161207b565b9150612171602084016120fd565b90509250929050565b60006020828403121561218c57600080fd5b813561201a8161207b565b6000602082840312156121a957600080fd5b5035919050565b6000602082840312156121c257600080fd5b61201a826120fd565b600080604083850312156121de57600080fd5b82356121e98161207b565b915060208301356121f98161207b565b809150509250929050565b600181811c9082168061221857607f821691505b60208210810361223857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e7576107e7612273565b6000826122bd57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107e7576107e7612273565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107e7576107e7612273565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561239857600080fd5b815161201a8161207b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123f35784516001600160a01b0316835293830193918301916001016123ce565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205339c1d7e67ad38326299f1c315976a625173563ce2227ff308da35a50174c4864736f6c63430008130033
Deployed Bytecode Sourcemap
25414:18235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11012:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13245:194;;;;;;;;;;-1:-1:-1;13245:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13245:194:0;1023:187:1;29841:166:0;;;;;;;;;;;;;:::i;:::-;;12132:108;;;;;;;;;;-1:-1:-1;12220:12:0;;12132:108;;;1361:25:1;;;1349:2;1334:18;12132:108:0;1215:177:1;13917:529:0;;;;;;;;;;-1:-1:-1;13917:529:0;;;;;:::i;:::-;;:::i;30471:548::-;;;;;;;;;;-1:-1:-1;30471:548:0;;;;;:::i;:::-;;:::i;11974:93::-;;;;;;;;;;-1:-1:-1;11974:93:0;;12057:2;2486:36:1;;2474:2;2459:18;11974:93:0;2344:184:1;14851:290:0;;;;;;;;;;-1:-1:-1;14851:290:0;;;;;:::i;:::-;;:::i;25988:34::-;;;;;;;;;;-1:-1:-1;25988:34:0;;;;;;;;34019:205;;;;;;;;;;-1:-1:-1;34019:205:0;;;;;:::i;:::-;;:::i;36348:249::-;;;;;;;;;;-1:-1:-1;36518:13:0;;36555:9;;36584:5;;36518:13;;;;;36348:249;;;;3074:14:1;;3067:22;3049:41;;3121:2;3106:18;;3099:34;;;;3149:18;;;3142:34;3037:2;3022:18;36348:249:0;2853:329:1;12303:143:0;;;;;;;;;;-1:-1:-1;12303:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12420:18:0;12393:7;12420:18;;;;;;;;;;;;12303:143;31716:275;;;;;;;;;;-1:-1:-1;31716:275:0;;;;;:::i;:::-;;:::i;22351:103::-;;;;;;;;;;;;;:::i;35111:172::-;;;;;;;;;;-1:-1:-1;35111:172:0;;;;;:::i;:::-;;:::i;42570:79::-;;;;;;;;;;-1:-1:-1;42570:79:0;;;;;:::i;:::-;;:::i;36760:151::-;;;;;;;;;;-1:-1:-1;36887:15:0;;;;;-1:-1:-1;;;;;36887:15:0;36760:151;;;-1:-1:-1;;;;;3973:32:1;;;3955:51;;3943:2;3928:18;36760:151:0;3809:203:1;32259:200:0;;;;;;;;;;-1:-1:-1;32259:200:0;;;;;:::i;:::-;;:::i;21700:87::-;;;;;;;;;;-1:-1:-1;21773:6:0;;-1:-1:-1;;;;;21773:6:0;21700:87;;11231:104;;;;;;;;;;;;;:::i;33513:257::-;;;;;;;;;;-1:-1:-1;33513:257:0;;;;;:::i;:::-;;:::i;32690:267::-;;;;;;;;;;-1:-1:-1;32690:267:0;;;;;:::i;:::-;;:::i;31257:246::-;;;;;;;;;;-1:-1:-1;31257:246:0;;;;;:::i;:::-;;:::i;15640:475::-;;;;;;;;;;-1:-1:-1;15640:475:0;;;;;:::i;:::-;;:::i;12659:200::-;;;;;;;;;;-1:-1:-1;12659:200:0;;;;;:::i;:::-;;:::i;42657:330::-;;;;;;;;;;-1:-1:-1;42657:330:0;;;;;:::i;:::-;;:::i;29524:162::-;;;;;;;;;;;;;:::i;33190:315::-;;;;;;;;;;-1:-1:-1;33190:315:0;;;;;:::i;:::-;;:::i;35642:359::-;;;;;;;;;;-1:-1:-1;35884:15:0;;35930:16;;35977;;-1:-1:-1;;;35884:15:0;;;;;;35642:359;;12922:176;;;;;;;;;;-1:-1:-1;12922:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13063:18:0;;;13036:7;13063:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12922:176;34518:241;;;;;;;;;;-1:-1:-1;34518:241:0;;;;;:::i;:::-;;:::i;37157:332::-;;;;;;;;;;-1:-1:-1;37384:11:0;;37422:12;;37465:16;;37157:332;;;4612:25:1;;;4668:2;4653:18;;4646:34;;;;4696:18;;;4689:34;4600:2;4585:18;37157:332:0;4410:319:1;25534:32:0;;;;;;;;;;;;;;;22609:238;;;;;;;;;;-1:-1:-1;22609:238:0;;;;;:::i;:::-;;:::i;37949:446::-;;;;;;;;;;-1:-1:-1;37949:446:0;;;;;:::i;:::-;-1:-1:-1;;;;;38225:26:0;38067:23;38225:26;;;:17;:26;;;;;;;;;38285:19;:28;;;;;;38353:25;:34;;;;;;38225:26;;;;;38285:28;;;;38353:34;;37949:446;;;;;4943:14:1;;4936:22;4918:41;;5002:14;;4995:22;4990:2;4975:18;;4968:50;5061:14;5054:22;5034:18;;;5027:50;4906:2;4891:18;37949:446:0;4734:349:1;11012:100:0;11066:13;11099:5;11092:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11012:100;:::o;13245:194::-;13353:4;13370:39;10098:10;13393:7;13402:6;13370:8;:39::i;:::-;-1:-1:-1;13427:4:0;13245:194;;;;;:::o;29841:166::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;;;;;;;;;29901:13:::1;:21:::0;;-1:-1:-1;;29901:21:0::1;::::0;;29917:5:::1;29933:16;:20:::0;;;29969:30:::1;::::0;29983:15:::1;::::0;29969:30:::1;::::0;::::1;29841:166::o:0;13917:529::-;14057:4;14074:36;14084:6;14092:9;14103:6;14074:9;:36::i;:::-;-1:-1:-1;;;;;14150:19:0;;14123:24;14150:19;;;:11;:19;;;;;;;;10098:10;14150:33;;;;;;;;14216:26;;;;14194:116;;;;-1:-1:-1;;;14194:116:0;;6036:2:1;14194:116:0;;;6018:21:1;6075:2;6055:18;;;6048:30;6114:34;6094:18;;;6087:62;-1:-1:-1;;;6165:18:1;;;6158:38;6213:19;;14194:116:0;5834:404:1;14194:116:0;14346:57;14355:6;10098:10;14396:6;14377:16;:25;14346:8;:57::i;:::-;-1:-1:-1;14434:4:0;;13917:529;-1:-1:-1;;;;13917:529:0:o;30471:548::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;30634:1:::1;30626:4;:9;;30604:111;;;::::0;-1:-1:-1;;;30604:111:0;;6445:2:1;30604:111:0::1;::::0;::::1;6427:21:1::0;6484:2;6464:18;;;6457:30;6523:34;6503:18;;;6496:62;-1:-1:-1;;;6574:18:1;;;6567:50;6634:19;;30604:111:0::1;6243:416:1::0;30604:111:0::1;30742:4;30734;:12;;30726:67;;;::::0;-1:-1:-1;;;30726:67:0;;6866:2:1;30726:67:0::1;::::0;::::1;6848:21:1::0;6905:2;6885:18;;;6878:30;6944:34;6924:18;;;6917:62;-1:-1:-1;;;6995:18:1;;;6988:40;7045:19;;30726:67:0::1;6664:406:1::0;30726:67:0::1;30806:15;:25:::0;;-1:-1:-1;;;;30806:25:0::1;-1:-1:-1::0;;;30806:25:0;::::1;;;;::::0;;12220:12;;30886:5:::1;::::0;30878:4;;30862:20:::1;;;;:::i;:::-;30861:30;;;;:::i;:::-;30842:16;:49:::0;30946:5:::1;30938:4:::0;30922:13:::1;12220:12:::0;;;12132:108;30922:13:::1;:20;;;;:::i;:::-;30921:30;;;;:::i;:::-;30902:16;:49:::0;30967:44:::1;::::0;;3074:14:1;;3067:22;3049:41;;3121:2;3106:18;;3099:34;;;3149:18;;;3142:34;;;30967:44:0::1;::::0;3037:2:1;3022:18;30967:44:0::1;;;;;;;30471:548:::0;;;:::o;14851:290::-;10098:10;14964:4;15053:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15053:34:0;;;;;;;;;;14964:4;;14981:130;;15031:7;;15053:47;;15090:10;;15053:47;:::i;:::-;14981:8;:130::i;34019:205::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34129:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;34129:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34182:34;;1163:41:1;;;34182:34:0::1;::::0;1136:18:1;34182:34:0::1;;;;;;;;34019:205:::0;;:::o;31716:275::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;31838:1:::1;31822:12;:17;;31814:66;;;::::0;-1:-1:-1;;;31814:66:0;;7934:2:1;31814:66:0::1;::::0;::::1;7916:21:1::0;7973:2;7953:18;;;7946:30;8012:34;7992:18;;;7985:62;-1:-1:-1;;;8063:18:1;;;8056:34;8107:19;;31814:66:0::1;7732:400:1::0;31814:66:0::1;31936:4;31919:13;12220:12:::0;;;12132:108;31919:13:::1;31904:28;::::0;:12;:28:::1;:::i;:::-;31903:37;;;;:::i;:::-;31891:9;:49:::0;;;31956:27:::1;::::0;1361:25:1;;;31956:27:0::1;::::0;1349:2:1;1334:18;31956:27:0::1;;;;;;;;31716:275:::0;:::o;22351:103::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;22416:30:::1;22443:1;22416:18;:30::i;:::-;22351:103::o:0;35111:172::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;35221:15:::1;::::0;35187:50:::1;::::0;-1:-1:-1;;;;;35221:15:0::1;::::0;;::::1;::::0;::::1;::::0;35187:50;::::1;::::0;::::1;::::0;;;::::1;35248:15;:27:::0;;-1:-1:-1;;;;;35248:27:0;;::::1;;;-1:-1:-1::0;;;;;;35248:27:0;;::::1;::::0;;;::::1;::::0;;35111:172::o;42570:79::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;42629:4:::1;:12:::0;;-1:-1:-1;;42629:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42570:79::o;32259:200::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32370:27:0;::::1;;::::0;;;:19:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;32370:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32420:31;;1163:41:1;;;32420:31:0::1;::::0;1136:18:1;32420:31:0::1;1023:187:1::0;11231:104:0;11287:13;11320:7;11313:14;;;;;:::i;33513:257::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;33607:16:::1;:26:::0;;;33686:3:::1;33666:23:::0;::::1;;33644:118;;;::::0;-1:-1:-1;;;33644:118:0;;8339:2:1;33644:118:0::1;::::0;::::1;8321:21:1::0;8378:2;8358:18;;;8351:30;8417:34;8397:18;;;8390:62;-1:-1:-1;;;8468:18:1;;;8461:43;8521:19;;33644:118:0::1;8137:409:1::0;33644:118:0::1;33513:257:::0;:::o;32690:267::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;32778:11:::1;:21:::0;;;32833:3:::1;32818:18:::0;::::1;;32810:71;;;::::0;-1:-1:-1;;;32810:71:0;;8753:2:1;32810:71:0::1;::::0;::::1;8735:21:1::0;8792:2;8772:18;;;8765:30;8831:34;8811:18;;;8804:62;-1:-1:-1;;;8882:18:1;;;8875:38;8930:19;;32810:71:0::1;8551:404:1::0;32810:71:0::1;32911:11;::::0;32897:52:::1;::::0;;4612:25:1;;;4668:2;4653:18;;4646:34;;;4696:18;;;4689:34;;;;32897:52:0::1;::::0;4600:2:1;4585:18;32897:52:0::1;4410:319:1::0;31257:246:0;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;31370:1:::1;31358:8;:13;;31350:58;;;::::0;-1:-1:-1;;;31350:58:0;;9162:2:1;31350:58:0::1;::::0;::::1;9144:21:1::0;;;9181:18;;;9174:30;9240:34;9220:18;;;9213:62;9292:18;;31350:58:0::1;8960:356:1::0;31350:58:0::1;31456:4;31439:13;12220:12:::0;;;12132:108;31439:13:::1;31428:24;::::0;:8;:24:::1;:::i;:::-;31427:33;;;;:::i;:::-;31419:5;:41:::0;;;31476:19:::1;::::0;1361:25:1;;;31476:19:0::1;::::0;1349:2:1;1334:18;31476:19:0::1;1215:177:1::0;15640:475:0;10098:10;15758:4;15802:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15802:34:0;;;;;;;;;;15869:35;;;;15847:122;;;;-1:-1:-1;;;15847:122:0;;9523:2:1;15847:122:0;;;9505:21:1;9562:2;9542:18;;;9535:30;9601:34;9581:18;;;9574:62;-1:-1:-1;;;9652:18:1;;;9645:35;9697:19;;15847:122:0;9321:401:1;15847:122:0;16005:67;10098:10;16028:7;16056:15;16037:16;:34;16005:8;:67::i;:::-;-1:-1:-1;16103:4:0;;15640:475;-1:-1:-1;;;15640:475:0:o;12659:200::-;12770:4;12787:42;10098:10;12811:9;12822:6;12787:9;:42::i;42657:330::-;42722:15;;;;;-1:-1:-1;;;;;42722:15:0;42741:10;42722:29;42714:86;;;;-1:-1:-1;;;42714:86:0;;9929:2:1;42714:86:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007:34;9987:18;;;9980:62;-1:-1:-1;;;10058:18:1;;;10051:42;10110:19;;42714:86:0;9727:408:1;42714:86:0;42857:4;42813:23;12420:18;;;;;;;;;;;;42930:3;42902:25;42920:7;12420:18;42902:25;:::i;:::-;:31;;;;:::i;:::-;42874:59;;42944:35;42961:17;42944:16;:35::i;:::-;42703:284;;42657:330;:::o;29524:162::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;29577:14:::1;:21:::0;;-1:-1:-1;;29577:21:0::1;29594:4;29577:21;::::0;;29609:15:::1;:22:::0;;-1:-1:-1;;;;29609:22:0::1;-1:-1:-1::0;;;29609:22:0::1;::::0;;29647:31:::1;::::0;29662:15:::1;::::0;29647:31:::1;::::0;29577:14:::1;::::0;29647:31:::1;29524:162::o:0;33190:315::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;33282:12:::1;:22:::0;;;33353:3:::1;33337:19:::0;::::1;;33315:110;;;::::0;-1:-1:-1;;;33315:110:0;;10342:2:1;33315:110:0::1;::::0;::::1;10324:21:1::0;10381:2;10361:18;;;10354:30;10420:34;10400:18;;;10393:62;-1:-1:-1;;;10471:18:1;;;10464:39;10520:19;;33315:110:0::1;10140:405:1::0;33315:110:0::1;33456:12;::::0;33441:56:::1;::::0;;4612:25:1;;;4668:2;4653:18;;4646:34;;;4696:18;;;4689:34;;;;33441:56:0::1;::::0;4600:2:1;4585:18;33441:56:0::1;4410:319:1::0;34518:241:0;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;34622:7:::1;-1:-1:-1::0;;;;;34614:15:0::1;:4;-1:-1:-1::0;;;;;34614:15:0::1;::::0;34592:122:::1;;;::::0;-1:-1:-1;;;34592:122:0;;10752:2:1;34592:122:0::1;::::0;::::1;10734:21:1::0;10791:2;10771:18;;;10764:30;10830:34;10810:18;;;10803:62;10901:27;10881:18;;;10874:55;10946:19;;34592:122:0::1;10550:421:1::0;34592:122:0::1;34727:24;34739:4;34745:5;34727:11;:24::i;:::-;34518:241:::0;;:::o;22609:238::-;21773:6;;-1:-1:-1;;;;;21773:6:0;10098:10;21920:23;21912:68;;;;-1:-1:-1;;;21912:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22712:22:0;::::1;22690:110;;;::::0;-1:-1:-1;;;22690:110:0;;11178:2:1;22690:110:0::1;::::0;::::1;11160:21:1::0;11217:2;11197:18;;;11190:30;11256:34;11236:18;;;11229:62;-1:-1:-1;;;11307:18:1;;;11300:36;11353:19;;22690:110:0::1;10976:402:1::0;22690:110:0::1;22811:28;22830:8;22811:18;:28::i;19423:380::-:0;-1:-1:-1;;;;;19559:19:0;;19551:68;;;;-1:-1:-1;;;19551:68:0;;11585:2:1;19551:68:0;;;11567:21:1;11624:2;11604:18;;;11597:30;11663:34;11643:18;;;11636:62;-1:-1:-1;;;11714:18:1;;;11707:34;11758:19;;19551:68:0;11383:400:1;19551:68:0;-1:-1:-1;;;;;19638:21:0;;19630:68;;;;-1:-1:-1;;;19630:68:0;;11990:2:1;19630:68:0;;;11972:21:1;12029:2;12009:18;;;12002:30;12068:34;12048:18;;;12041:62;-1:-1:-1;;;12119:18:1;;;12112:32;12161:19;;19630:68:0;11788:398:1;19630:68:0;-1:-1:-1;;;;;19711:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19763:32;;1361:25:1;;;19763:32:0;;1334:18:1;19763:32:0;;;;;;;19423:380;;;:::o;38403:3555::-;-1:-1:-1;;;;;38535:18:0;;38527:68;;;;-1:-1:-1;;;38527:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38614:16:0;;38606:64;;;;-1:-1:-1;;;38606:64:0;;;;;;;:::i;:::-;38687:6;38697:1;38687:11;38683:93;;38715:28;38731:4;38737:2;38741:1;38715:15;:28::i;38683:93::-;38792:13;;;;38788:1564;;;21773:6;;-1:-1:-1;;;;;38844:15:0;;;21773:6;;38844:15;;;;:49;;-1:-1:-1;21773:6:0;;-1:-1:-1;;;;;38880:13:0;;;21773:6;;38880:13;;38844:49;:86;;;;-1:-1:-1;;;;;;38914:16:0;;;;38844:86;:128;;;;-1:-1:-1;;;;;;38951:21:0;;38965:6;38951:21;;38844:128;:158;;;;-1:-1:-1;38994:8:0;;-1:-1:-1;;;38994:8:0;;;;38993:9;38844:158;38822:1519;;;39042:14;;;;39037:232;;-1:-1:-1;;;;;39115:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;39142:21:0;;;;;;:17;:21;;;;;;;;39115:48;39081:168;;;;-1:-1:-1;;;39081:168:0;;13203:2:1;39081:168:0;;;13185:21:1;13242:2;13222:18;;;13215:30;13281:34;13261:18;;;13254:62;-1:-1:-1;;;13332:18:1;;;13325:32;13374:19;;39081:168:0;13001:398:1;39081:168:0;-1:-1:-1;;;;;39343:31:0;;;;;;:25;:31;;;;;;;;:59;;;;-1:-1:-1;;;;;;39379:23:0;;;;;;:19;:23;;;;;;;;39378:24;39343:59;39317:1009;;;39489:5;;39479:6;:15;;39445:139;;;;-1:-1:-1;;;39445:139:0;;13606:2:1;39445:139:0;;;13588:21:1;13645:2;13625:18;;;13618:30;13684:34;13664:18;;;13657:62;-1:-1:-1;;;13735:18:1;;;13728:36;13781:19;;39445:139:0;13404:402:1;39445:139:0;39667:9;;-1:-1:-1;;;;;12420:18:0;;12393:7;12420:18;;;;;;;;;;;39641:22;;:6;:22;:::i;:::-;:35;;39607:140;;;;-1:-1:-1;;;39607:140:0;;14013:2:1;39607:140:0;;;13995:21:1;14052:2;14032:18;;;14025:30;-1:-1:-1;;;14071:18:1;;;14064:49;14130:18;;39607:140:0;13811:343:1;39607:140:0;39317:1009;;;-1:-1:-1;;;;;39845:29:0;;;;;;:25;:29;;;;;;;;:59;;;;-1:-1:-1;;;;;;39879:25:0;;;;;;:19;:25;;;;;;;;39878:26;39845:59;39819:507;;;39991:5;;39981:6;:15;;39947:140;;;;-1:-1:-1;;;39947:140:0;;14361:2:1;39947:140:0;;;14343:21:1;14400:2;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;-1:-1:-1;;;14490:18:1;;;14483:37;14537:19;;39947:140:0;14159:403:1;39819:507:0;-1:-1:-1;;;;;40118:23:0;;;;;;:19;:23;;;;;;;;40113:213;;40226:9;;-1:-1:-1;;;;;12420:18:0;;12393:7;12420:18;;;;;;;;;;;40200:22;;:6;:22;:::i;:::-;:35;;40166:140;;;;-1:-1:-1;;;40166:140:0;;14013:2:1;40166:140:0;;;13995:21:1;14052:2;14032:18;;;14025:30;-1:-1:-1;;;14071:18:1;;;14064:49;14130:18;;40166:140:0;13811:343:1;40166:140:0;40413:4;40364:28;12420:18;;;;;;;;;;;40471:16;;40447:40;;;;;;;40518:39;;-1:-1:-1;40542:15:0;;-1:-1:-1;;;40542:15:0;;;;40518:39;:65;;;;-1:-1:-1;40575:8:0;;-1:-1:-1;;;40575:8:0;;;;40574:9;40518:65;:114;;;;-1:-1:-1;;;;;;40601:31:0;;;;;;:25;:31;;;;;;;;40600:32;40518:114;:155;;;;-1:-1:-1;;;;;;40650:23:0;;;;;;:17;:23;;;;;;;;40649:24;40518:155;:194;;;;-1:-1:-1;;;;;;40691:21:0;;;;;;:17;:21;;;;;;;;40690:22;40518:194;40500:334;;;40739:8;:15;;-1:-1:-1;;;;40739:15:0;-1:-1:-1;;;40739:15:0;;;40771:16;40780:6;40771:8;:16::i;:::-;40806:8;:16;;-1:-1:-1;;;;40806:16:0;;;40500:334;40862:8;;-1:-1:-1;;;;;40972:23:0;;40846:12;40972:23;;;:17;:23;;;;;;40862:8;-1:-1:-1;;;40862:8:0;;;;;40861:9;;40972:23;;:48;;-1:-1:-1;;;;;;40999:21:0;;;;;;:17;:21;;;;;;;;40972:48;40968:96;;;-1:-1:-1;41047:5:0;40968:96;41076:12;41181:7;41177:728;;;-1:-1:-1;;;;;41233:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;41281:1;41266:12;;:16;41233:49;41229:525;;;41310:33;41339:3;41310:24;41321:12;;41310:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;41303:40;;41229:525;;;-1:-1:-1;;;;;41405:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;41454:1;41440:11;;:15;41405:50;41401:353;;;41483:32;41511:3;41483:23;41494:11;;41483:6;:10;;:23;;;;:::i;41401:353::-;41602:1;41583:16;;:20;:56;;;;-1:-1:-1;;;;;;41608:31:0;;;;;;:25;:31;;;;;;;;41607:32;41583:56;:90;;;;-1:-1:-1;;;;;;41644:29:0;;;;;;:25;:29;;;;;;;;41643:30;41583:90;41579:175;;;41701:37;41734:3;41701:28;41712:16;;41701:6;:10;;:28;;;;:::i;:37::-;41694:44;;41579:175;41776:8;;41772:91;;41805:42;41821:4;41835;41842;41805:15;:42::i;:::-;41879:14;41889:4;41879:14;;:::i;:::-;;;41177:728;41917:33;41933:4;41939:2;41943:6;41917:15;:33::i;:::-;38516:3442;;;;38403:3555;;;:::o;23007:191::-;23100:6;;;-1:-1:-1;;;;;23117:17:0;;;-1:-1:-1;;;;;;23117:17:0;;;;;;;23150:40;;23100:6;;;23117:17;23100:6;;23150:40;;23081:16;;23150:40;23070:128;23007:191;:::o;41966:571::-;42116:16;;;42130:1;42116:16;;;;;;;;42092:21;;42116:16;;;;;;;;;;-1:-1:-1;42116:16:0;42092:40;;42161:4;42143;42148:1;42143:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42143:23:0;;;-1:-1:-1;;;;;42143:23:0;;;;;42187:9;-1:-1:-1;;;;;42187:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42177:4;42182:1;42177:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;42177:26:0;;;-1:-1:-1;;;;;42177:26:0;;;;;42216:56;42233:4;42248:9;42260:11;42216:8;:56::i;:::-;42311:218;;-1:-1:-1;;;42311:218:0;;-1:-1:-1;;;;;42311:9:0;:60;;;;:218;;42386:11;;42412:1;;42456:4;;42483;;42503:15;;42311:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42021:516;41966:571;:::o;34767:154::-;-1:-1:-1;;;;;34833:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;34833:39:0;;;;;;;;;;34890:23;;34833:39;;:31;34890:23;;;34767:154;;:::o;16605:770::-;-1:-1:-1;;;;;16745:20:0;;16737:70;;;;-1:-1:-1;;;16737:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16826:23:0;;16818:71;;;;-1:-1:-1;;;16818:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16986:17:0;;16962:21;16986:17;;;;;;;;;;;17036:23;;;;17014:111;;;;-1:-1:-1;;;17014:111:0;;16407:2:1;17014:111:0;;;16389:21:1;16446:2;16426:18;;;16419:30;16485:34;16465:18;;;16458:62;-1:-1:-1;;;16536:18:1;;;16529:36;16582:19;;17014:111:0;16205:402:1;17014:111:0;-1:-1:-1;;;;;17161:17:0;;;:9;:17;;;;;;;;;;;17181:22;;;17161:42;;17225:20;;;;;;;;:30;;17197:6;;17161:9;17225:30;;17197:6;;17225:30;:::i;:::-;;;;;;;;17290:9;-1:-1:-1;;;;;17273:35:0;17282:6;-1:-1:-1;;;;;17273:35:0;;17301:6;17273:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;17273:35:0;;;;;;;;16726:649;16605:770;;;:::o;42995:651::-;43092:4;43048:23;12420:18;;;;;;;;;;;;43138:20;;;43134:59;;43175:7;;42995:651;:::o;43134:59::-;43227:16;;43209:15;:34;43205:101;;;43278:16;;43260:34;;43205:101;43322:4;;;;:37;;;;-1:-1:-1;43348:11:0;:6;43357:2;43348:11;:::i;:::-;43330:15;:29;43322:37;43318:99;;;43394:11;:6;43403:2;43394:11;:::i;:::-;43376:29;;43318:99;43458:15;43488:36;43458:15;43488:16;:36::i;:::-;43559:15;;43551:87;;43559:15;;;;-1:-1:-1;;;;;43559:15:0;;43602:21;;43551:87;;;;43602:21;43559:15;43551:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3377:98;3435:7;3462:5;3466:1;3462;:5;:::i;:::-;3455:12;3377:98;-1:-1:-1;;;3377:98:0:o;3776:::-;3834:7;3861:5;3865:1;3861;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;1858:160::-;1923:20;;1979:13;;1972:21;1962:32;;1952:60;;2008:1;2005;1998:12;1952:60;1858:160;;;:::o;2023:316::-;2097:6;2105;2113;2166:2;2154:9;2145:7;2141:23;2137:32;2134:52;;;2182:1;2179;2172:12;2134:52;2205:26;2221:9;2205:26;:::i;:::-;2195:36;2278:2;2263:18;;2250:32;;-1:-1:-1;2329:2:1;2314:18;;;2301:32;;2023:316;-1:-1:-1;;;2023:316:1:o;2533:315::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2714:9;2701:23;2733:31;2758:5;2733:31;:::i;:::-;2783:5;-1:-1:-1;2807:35:1;2838:2;2823:18;;2807:35;:::i;:::-;2797:45;;2533:315;;;;;:::o;3187:247::-;3246:6;3299:2;3287:9;3278:7;3274:23;3270:32;3267:52;;;3315:1;3312;3305:12;3267:52;3354:9;3341:23;3373:31;3398:5;3373:31;:::i;3439:180::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;-1:-1:-1;3590:23:1;;3439:180;-1:-1:-1;3439:180:1:o;3624:::-;3680:6;3733:2;3721:9;3712:7;3708:23;3704:32;3701:52;;;3749:1;3746;3739:12;3701:52;3772:26;3788:9;3772:26;:::i;4017:388::-;4085:6;4093;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:31;4245:5;4220:31;:::i;:::-;4270:5;-1:-1:-1;4327:2:1;4312:18;;4299:32;4340:33;4299:32;4340:33;:::i;:::-;4392:7;4382:17;;;4017:388;;;;;:::o;5088:380::-;5167:1;5163:12;;;;5210;;;5231:61;;5285:4;5277:6;5273:17;5263:27;;5231:61;5338:2;5330:6;5327:14;5307:18;5304:38;5301:161;;5384:10;5379:3;5375:20;5372:1;5365:31;5419:4;5416:1;5409:15;5447:4;5444:1;5437:15;5301:161;;5088:380;;;:::o;5473:356::-;5675:2;5657:21;;;5694:18;;;5687:30;5753:34;5748:2;5733:18;;5726:62;5820:2;5805:18;;5473:356::o;7075:127::-;7136:10;7131:3;7127:20;7124:1;7117:31;7167:4;7164:1;7157:15;7191:4;7188:1;7181:15;7207:168;7280:9;;;7311;;7328:15;;;7322:22;;7308:37;7298:71;;7349:18;;:::i;7380:217::-;7420:1;7446;7436:132;;7490:10;7485:3;7481:20;7478:1;7471:31;7525:4;7522:1;7515:15;7553:4;7550:1;7543:15;7436:132;-1:-1:-1;7582:9:1;;7380:217::o;7602:125::-;7667:9;;;7688:10;;;7685:36;;;7701:18;;:::i;12191:401::-;12393:2;12375:21;;;12432:2;12412:18;;;12405:30;12471:34;12466:2;12451:18;;12444:62;-1:-1:-1;;;12537:2:1;12522:18;;12515:35;12582:3;12567:19;;12191:401::o;12597:399::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;12877:34;12872:2;12857:18;;12850:62;-1:-1:-1;;;12943:2:1;12928:18;;12921:33;12986:3;12971:19;;12597:399::o;14567:128::-;14634:9;;;14655:11;;;14652:37;;;14669:18;;:::i;14832:127::-;14893:10;14888:3;14884:20;14881:1;14874:31;14924:4;14921:1;14914:15;14948:4;14945:1;14938:15;14964:251;15034:6;15087:2;15075:9;15066:7;15062:23;15058:32;15055:52;;;15103:1;15100;15093:12;15055:52;15135:9;15129:16;15154:31;15179:5;15154:31;:::i;15220:980::-;15482:4;15530:3;15519:9;15515:19;15561:6;15550:9;15543:25;15587:2;15625:6;15620:2;15609:9;15605:18;15598:34;15668:3;15663:2;15652:9;15648:18;15641:31;15692:6;15727;15721:13;15758:6;15750;15743:22;15796:3;15785:9;15781:19;15774:26;;15835:2;15827:6;15823:15;15809:29;;15856:1;15866:195;15880:6;15877:1;15874:13;15866:195;;;15945:13;;-1:-1:-1;;;;;15941:39:1;15929:52;;16036:15;;;;16001:12;;;;15977:1;15895:9;15866:195;;;-1:-1:-1;;;;;;;16117:32:1;;;;16112:2;16097:18;;16090:60;-1:-1:-1;;;16181:3:1;16166:19;16159:35;16078:3;15220:980;-1:-1:-1;;;15220:980:1:o
Swarm Source
ipfs://5339c1d7e67ad38326299f1c315976a625173563ce2227ff308da35a50174c48
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.