ERC-20
Overview
Max Total Supply
1,000,000,000 SAIDAO
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
35,200,000 SAIDAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SAITADAO
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-07 */ /** https://t.me/saitaDao */ // SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } 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); } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface ILpPair { function sync() external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens(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 swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; function addLiquidityETH(address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); 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 getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); } interface IDexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract TokenHandler is Ownable { function sendTokenToOwner(address token) external onlyOwner { if(IERC20(token).balanceOf(address(this)) > 0){ IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this))); } } } contract SAITADAO is ERC20, Ownable { uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; IDexRouter public immutable dexRouter; address public immutable lpPair; TokenHandler public immutable tokenHandler; bool private swapping; uint256 public swapTokensAtAmount; address public operationsAddress; address public yashaAddress; uint256 public tradingActiveBlock = 0; // 0 means trading is not active bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; IERC20 public constant USDC = IERC20(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48); // Testnet: 0xeb8f08a975Ab53E34D8a0330E0D34de942C95926 //Mainnet: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 uint256 public buyTotalFees; uint256 public buyOperationsFee; uint256 public buyLiquidityFee; uint256 public buySaitaFee; uint256 public sellTotalFees; uint256 public sellOperationsFee; uint256 public sellLiquidityFee; uint256 public sellSaitaFee; uint256 public tokensForOperations; uint256 public tokensForLiquidity; uint256 public tokensForSaita; uint256 public lpWithdrawRequestTimestamp; uint256 public lpWithdrawRequestDuration = 3 days; bool public lpWithdrawRequestPending; uint256 public lpPercToWithDraw; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event EnabledTrading(); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedOperationsAddress(address indexed newWallet); event UpdatedYashaAddress(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event RequestedLPWithdraw(); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event TransferForeignToken(address token, uint256 amount); constructor() ERC20("SAITADAO", "SAIDAO") { address newOwner = msg.sender; // can leave alone if owner is deployer. IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _excludeFromMaxTransaction(address(_dexRouter), true); dexRouter = _dexRouter; lpPair = IDexFactory(_dexRouter.factory()).createPair(address(this), address(USDC)); _setAutomatedMarketMakerPair(address(lpPair), true); tokenHandler = new TokenHandler(); uint256 totalSupply = 1 * 1e9 * 1e18; maxBuyAmount = totalSupply * 1 / 1000; maxSellAmount = totalSupply * 1 / 1000; maxWalletAmount = totalSupply * 2 / 1000; swapTokensAtAmount = totalSupply * 25 / 100000; // 0.025% swap amount buyOperationsFee = 20; buyLiquidityFee = 5; buySaitaFee = 0; buyTotalFees = buyOperationsFee + buyLiquidityFee + buySaitaFee; sellOperationsFee = 20; sellLiquidityFee = 5; sellSaitaFee = 0; sellTotalFees = sellOperationsFee + sellLiquidityFee + sellSaitaFee; _excludeFromMaxTransaction(newOwner, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(newOwner, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); operationsAddress = address(newOwner); yashaAddress = address(newOwner); _createInitialSupply(newOwner, totalSupply); transferOwnership(newOwner); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { require(!tradingActive, "Cannot reenable trading"); tradingActive = true; swapEnabled = true; tradingActiveBlock = block.number; emit EnabledTrading(); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; transferDelayEnabled = false; emit RemovedLimits(); } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; } function updateMaxBuyAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max buy amount lower than 0.1%"); maxBuyAmount = newNum * (10**18); emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max sell amount lower than 0.1%"); maxSellAmount = newNum * (10**18); emit UpdatedMaxSellAmount(maxSellAmount); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 3 / 1000)/1e18, "Cannot set max wallet amount lower than 0.3%"); maxWalletAmount = newNum * (10**18); emit UpdatedMaxWalletAmount(maxWalletAmount); } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply."); swapTokensAtAmount = newAmount; } function _excludeFromMaxTransaction(address updAds, bool isExcluded) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function airdropToWallets(address[] memory wallets, uint256[] memory amountsInTokens) external onlyOwner { require(wallets.length == amountsInTokens.length, "arrays must be the same length"); require(wallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input. for(uint256 i = 0; i < wallets.length; i++){ address wallet = wallets[i]; uint256 amount = amountsInTokens[i]*1e18; _transfer(msg.sender, wallet, amount); } } function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner { if(!isEx){ require(updAds != lpPair, "Cannot remove uniswap pair from max txn"); } _isExcludedMaxTransactionAmount[updAds] = isEx; } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; _excludeFromMaxTransaction(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function updateBuyFees(uint256 _operationsFee, uint256 _liquidityFee, uint256 _SaitaFee) external onlyOwner { buyOperationsFee = _operationsFee; buyLiquidityFee = _liquidityFee; buySaitaFee = _SaitaFee; buyTotalFees = buyOperationsFee + buyLiquidityFee + buySaitaFee; require(buyTotalFees <= 30, "Must keep fees at 30% or less"); } function updateSellFees(uint256 _operationsFee, uint256 _liquidityFee, uint256 _SaitaFee) external onlyOwner { sellOperationsFee = _operationsFee; sellLiquidityFee = _liquidityFee; sellSaitaFee = _SaitaFee; sellTotalFees = sellOperationsFee + sellLiquidityFee + sellSaitaFee; require(sellTotalFees <= 50, "Must keep fees at 50% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if(limitsInEffect){ if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){ if(!tradingActive){ require(_isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != address(dexRouter) && to != address(lpPair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number - 4 && _holderLastTransferTimestamp[to] < block.number - 4, "_transfer:: Transfer Delay enabled. Try again later."); _holderLastTransferTimestamp[tx.origin] = block.number; _holderLastTransferTimestamp[to] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy."); require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell."); } else if (!_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from]){ require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 penaltyAmount = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // bot/sniper penalty. Tokens get transferred to marketing wallet to allow potential refund. if(tradingActiveBlock + 1 >= block.number && automatedMarketMakerPairs[from]){ penaltyAmount = amount * 99 / 100; super._transfer(from, operationsAddress, penaltyAmount); } // on sell else if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount * sellTotalFees /100; tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForOperations += fees * sellOperationsFee / sellTotalFees; tokensForSaita += fees * sellSaitaFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount * buyTotalFees / 100; tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForOperations += fees * buyOperationsFee / buyTotalFees; tokensForSaita += fees * buySaitaFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees + penaltyAmount; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 usdcAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(dexRouter), tokenAmount); USDC.approve(address(dexRouter), usdcAmount); // add the liquidity dexRouter.addLiquidity(address(this), address(USDC), tokenAmount, usdcAmount, 0, 0, address(this), block.timestamp); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForSaita; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 10){ contractBalance = swapTokensAtAmount * 10; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; swapTokensForUSDC(contractBalance - liquidityTokens); tokenHandler.sendTokenToOwner(address(USDC)); uint256 usdcBalance = USDC.balanceOf(address(this)); uint256 usdcForLiquidity = usdcBalance; uint256 usdcForOperations = usdcBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2)); uint256 usdcForSaita = usdcBalance * tokensForSaita / (totalTokensToSwap - (tokensForLiquidity/2)); usdcForLiquidity -= usdcForOperations + usdcForSaita; tokensForLiquidity = 0; tokensForOperations = 0; tokensForSaita = 0; if(liquidityTokens > 0 && usdcForLiquidity > 0){ addLiquidity(liquidityTokens, usdcForLiquidity); } if(usdcForSaita > 0){ USDC.transfer(yashaAddress, usdcForSaita); } if(USDC.balanceOf(address(this)) > 0){ USDC.transfer(operationsAddress, USDC.balanceOf(address(this))); } } function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) { require(_token != address(0), "_token address cannot be 0"); require(_token != address(this), "Can't withdraw native tokens"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); _sent = IERC20(_token).transfer(_to, _contractBalance); emit TransferForeignToken(_token, _contractBalance); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = address(USDC); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(tokenHandler), block.timestamp ); } // withdraw ETH if stuck or someone sends to the address function withdrawStuckETH() external onlyOwner { bool success; (success,) = address(msg.sender).call{value: address(this).balance}(""); } function setOperationsAddress(address _operationsAddress) external onlyOwner { require(_operationsAddress != address(0), "_operationsAddress address cannot be 0"); operationsAddress = payable(_operationsAddress); emit UpdatedOperationsAddress(_operationsAddress); } function setYashaAddress(address _yashaAddress) external onlyOwner { require(_yashaAddress != address(0), "_yashaAddress address cannot be 0"); yashaAddress = payable(_yashaAddress); emit UpdatedYashaAddress(_yashaAddress); } function requestToWithdrawLP(uint256 percToWithdraw) external onlyOwner { require(!lpWithdrawRequestPending, "Cannot request again until first request is over."); require(percToWithdraw <= 100 && percToWithdraw > 0, "Need to set between 1-100%"); lpWithdrawRequestTimestamp = block.timestamp; lpWithdrawRequestPending = true; lpPercToWithDraw = percToWithdraw; emit RequestedLPWithdraw(); } function nextAvailableLpWithdrawDate() public view returns (uint256){ if(lpWithdrawRequestPending){ return lpWithdrawRequestTimestamp + lpWithdrawRequestDuration; } else { return 0; // 0 means no open requests } } function withdrawRequestedLP() external onlyOwner { require(block.timestamp >= nextAvailableLpWithdrawDate() && nextAvailableLpWithdrawDate() > 0, "Must request and wait."); lpWithdrawRequestTimestamp = 0; lpWithdrawRequestPending = false; uint256 amtToWithdraw = IERC20(address(lpPair)).balanceOf(address(this)) * lpPercToWithDraw / 100; lpPercToWithDraw = 0; IERC20(lpPair).transfer(msg.sender, amtToWithdraw); } function cancelLPWithdrawRequest() external onlyOwner { lpWithdrawRequestPending = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"RequestedLPWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedOperationsAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedYashaAddress","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amountsInTokens","type":"uint256[]"}],"name":"airdropToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySaitaFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelLPWithdrawRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPercToWithDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAvailableLpWithdrawDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percToWithdraw","type":"uint256"}],"name":"requestToWithdrawLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellSaitaFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_yashaAddress","type":"address"}],"name":"setYashaAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenHandler","outputs":[{"internalType":"contract TokenHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForSaita","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_SaitaFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_SaitaFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRequestedLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yashaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040526000600d55600e805462ffffff191660019081179091556010805460ff191690911790556203f480601d553480156200003c57600080fd5b506040805180820182526008815267534149544144414f60c01b60208083019182528351808501909452600684526553414944414f60d01b9084015281519192916200008b916003916200074b565b508051620000a19060049060208401906200074b565b5050506000620000b6620003ea60201b60201c565b600580546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062004a31833981519152908290a35033737a250d5630b4cf539739df2c5dacb4c659f2488d62000116816001620003ee565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000161573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001879190620007ff565b6040516364e329cb60e11b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af1158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002109190620007ff565b6001600160a01b031660a08190526200022b90600162000451565b6040516200023990620007da565b604051809103906000f08015801562000256573d6000803e3d6000fd5b506001600160a01b031660c0526b033b2e3c9fd0803ce80000006103e86200028082600162000847565b6200028c919062000869565b6006556103e86200029f82600162000847565b620002ab919062000869565b6007556103e8620002be82600262000847565b620002ca919062000869565b600855620186a0620002de82601962000847565b620002ea919062000869565b600a5560146012819055600560138190556000808355916200030d91906200088c565b6200031991906200088c565b601155601460168190556005601781905560006018819055916200033e91906200088c565b6200034a91906200088c565b6015556200035a836001620003ee565b62000367306001620003ee565b6200037661dead6001620003ee565b62000383836001620004bd565b62000390306001620004bd565b6200039f61dead6001620004bd565b600b80546001600160a01b0385166001600160a01b03199182168117909255600c80549091169091179055620003d6838262000569565b620003e1836200064e565b505050620008e3565b3390565b6001600160a01b038216600081815260216020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152602260205260409020805460ff1916821515179055620004818282620003ee565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031633146200050c5760405162461bcd60e51b8152602060048201819052602482015260008051602062004a1183398151915260448201526064015b60405180910390fd5b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000503565b8060026000828254620005d591906200088c565b90915550506001600160a01b03821660009081526020819052604081208054839290620006049084906200088c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620006995760405162461bcd60e51b8152602060048201819052602482015260008051602062004a11833981519152604482015260640162000503565b6001600160a01b038116620007005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000503565b6005546040516001600160a01b0380841692169060008051602062004a3183398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200075990620008a7565b90600052602060002090601f0160209004810192826200077d5760008555620007c8565b82601f106200079857805160ff1916838001178555620007c8565b82800160010185558215620007c8579182015b82811115620007c8578251825591602001919060010190620007ab565b50620007d6929150620007e8565b5090565b6104d6806200453b83390190565b5b80821115620007d65760008155600101620007e9565b6000602082840312156200081257600080fd5b81516001600160a01b03811681146200082a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000864576200086462000831565b500290565b6000826200088757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008a257620008a262000831565b500190565b600181811c90821680620008bc57607f821691505b602082108103620008dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051613bcd6200096e6000396000818161052801528181612d5c01526133c201526000818161061a015281816112e30152818161145701528181611502015281816119240152612506015260008181610451015281816124c9015281816133520152818161338e0152818161342801528181613464015261354a0152613bcd6000f3fe6080604052600436106103e85760003560e01c80638366e79a11610208578063c7c61e2c11610118578063ea4cfe12116100ab578063f2fde38b1161007a578063f2fde38b14610b73578063f5648a4f14610b93578063f637434214610ba8578063fb002c9714610bbe578063fd361d0e14610bd457600080fd5b8063ea4cfe1214610b11578063ee40166e14610b31578063ee44b44e14610b47578063f11a24d314610b5d57600080fd5b8063dc3f0d0f116100e7578063dc3f0d0f14610a80578063dd62ed3e14610aa0578063e2f4560514610ae6578063e884f26014610afc57600080fd5b8063c7c61e2c14610a1b578063c876d0b914610a30578063d257b34f14610a4a578063d85ba06314610a6a57600080fd5b8063a457c2d71161019b578063bbc0c7421161016a578063bbc0c7421461097c578063befd2fac1461099b578063c0246668146109bb578063c17b5b8c146109db578063c18bc195146109fb57600080fd5b8063a457c2d7146108f6578063a9059cbb14610916578063aa4bde2814610936578063b62496f51461094c57600080fd5b80638a8c523c116101d75780638a8c523c1461088e5780638da5cb5b146108a357806395d89b41146108c15780639a7a23d6146108d657600080fd5b80638366e79a1461081a578063857a56aa1461083a57806388e765ff1461085057806389a302711461086657600080fd5b80634a62bb65116103035780636ddd171311610296578063751039fc11610265578063751039fc1461079a5780637571336a146107af578063763cef49146107cf578063783102eb146107e45780638095d564146107fa57600080fd5b80636ddd17131461071a57806370a082311461073a578063712c298514610770578063715018a61461078557600080fd5b80635a139dd4116102d25780635a139dd4146106c25780635f3ccf83146106d857806366d602ae146106ee5780636a486a8e1461070457600080fd5b80634a62bb651461065c5780634f77f6c0146106765780635029c6571461068c5780635045d098146106a257600080fd5b80632307b4411161037b578063313ce5671161034a578063313ce567146105cc57806339509351146105e8578063452ed4f114610608578063499b83941461063c57600080fd5b80632307b4411461054a57806323b872dd1461056c5780632be32b611461058c5780632fa7d7f9146105ac57600080fd5b806310d5de53116103b757806310d5de53146104bb57806318160ddd146104eb5780631a8145bb146105005780631b3d6e871461051657600080fd5b8063058054c9146103f457806306fdde031461041d5780630758d9241461043f578063095ea7b31461048b57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b5061040a601c5481565b6040519081526020015b60405180910390f35b34801561042957600080fd5b50610432610bee565b60405161041491906135c7565b34801561044b57600080fd5b506104737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610414565b34801561049757600080fd5b506104ab6104a6366004613638565b610c80565b6040519015158152602001610414565b3480156104c757600080fd5b506104ab6104d6366004613662565b60216020526000908152604090205460ff1681565b3480156104f757600080fd5b5060025461040a565b34801561050c57600080fd5b5061040a601a5481565b34801561052257600080fd5b506104737f000000000000000000000000000000000000000000000000000000000000000081565b34801561055657600080fd5b5061056a61056536600461375a565b610c96565b005b34801561057857600080fd5b506104ab61058736600461381a565b610e0a565b34801561059857600080fd5b5061056a6105a7366004613856565b610eb4565b3480156105b857600080fd5b5061056a6105c7366004613662565b610fc1565b3480156105d857600080fd5b5060405160128152602001610414565b3480156105f457600080fd5b506104ab610603366004613638565b611095565b34801561061457600080fd5b506104737f000000000000000000000000000000000000000000000000000000000000000081565b34801561064857600080fd5b5061056a610657366004613662565b6110d1565b34801561066857600080fd5b50600e546104ab9060ff1681565b34801561068257600080fd5b5061040a60165481565b34801561069857600080fd5b5061040a60185481565b3480156106ae57600080fd5b50600c54610473906001600160a01b031681565b3480156106ce57600080fd5b5061040a60125481565b3480156106e457600080fd5b5061040a60145481565b3480156106fa57600080fd5b5061040a60075481565b34801561071057600080fd5b5061040a60155481565b34801561072657600080fd5b50600e546104ab9062010000900460ff1681565b34801561074657600080fd5b5061040a610755366004613662565b6001600160a01b031660009081526020819052604090205490565b34801561077c57600080fd5b5061040a6111aa565b34801561079157600080fd5b5061056a6111d3565b3480156107a657600080fd5b5061056a611247565b3480156107bb57600080fd5b5061056a6107ca366004613880565b6112b2565b3480156107db57600080fd5b5061056a61139d565b3480156107f057600080fd5b5061040a601f5481565b34801561080657600080fd5b5061056a6108153660046138b7565b61157b565b34801561082657600080fd5b506104ab6108353660046138e3565b61161e565b34801561084657600080fd5b5061040a601b5481565b34801561085c57600080fd5b5061040a60065481565b34801561087257600080fd5b5061047373a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b34801561089a57600080fd5b5061056a611827565b3480156108af57600080fd5b506005546001600160a01b0316610473565b3480156108cd57600080fd5b506104326118e9565b3480156108e257600080fd5b5061056a6108f1366004613880565b6118f8565b34801561090257600080fd5b506104ab610911366004613638565b6119d3565b34801561092257600080fd5b506104ab610931366004613638565b611a6c565b34801561094257600080fd5b5061040a60085481565b34801561095857600080fd5b506104ab610967366004613662565b60226020526000908152604090205460ff1681565b34801561098857600080fd5b50600e546104ab90610100900460ff1681565b3480156109a757600080fd5b5061056a6109b6366004613856565b611a79565b3480156109c757600080fd5b5061056a6109d6366004613880565b611baf565b3480156109e757600080fd5b5061056a6109f63660046138b7565b611c36565b348015610a0757600080fd5b5061056a610a16366004613856565b611cd9565b348015610a2757600080fd5b5061056a611de2565b348015610a3c57600080fd5b506010546104ab9060ff1681565b348015610a5657600080fd5b5061056a610a65366004613856565b611e18565b348015610a7657600080fd5b5061040a60115481565b348015610a8c57600080fd5b5061056a610a9b366004613856565b611f63565b348015610aac57600080fd5b5061040a610abb3660046138e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610af257600080fd5b5061040a600a5481565b348015610b0857600080fd5b5061056a61206a565b348015610b1d57600080fd5b50600b54610473906001600160a01b031681565b348015610b3d57600080fd5b5061040a600d5481565b348015610b5357600080fd5b5061040a601d5481565b348015610b6957600080fd5b5061040a60135481565b348015610b7f57600080fd5b5061056a610b8e366004613662565b6120a0565b348015610b9f57600080fd5b5061056a61218b565b348015610bb457600080fd5b5061040a60175481565b348015610bca57600080fd5b5061040a60195481565b348015610be057600080fd5b50601e546104ab9060ff1681565b606060038054610bfd90613916565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2990613916565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b5050505050905090565b6000610c8d338484612202565b50600192915050565b6005546001600160a01b03163314610cc95760405162461bcd60e51b8152600401610cc090613950565b60405180910390fd5b8051825114610d1a5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610cc0565b60c8825110610d8a5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610cc0565b60005b8251811015610e05576000838281518110610daa57610daa613985565b602002602001015190506000838381518110610dc857610dc8613985565b6020026020010151670de0b6b3a7640000610de391906139b1565b9050610df0338383612326565b50508080610dfd906139d0565b915050610d8d565b505050565b6000610e17848484612326565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e9c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cc0565b610ea98533858403612202565b506001949350505050565b6005546001600160a01b03163314610ede5760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8610ef360025490565b610efe9060016139b1565b610f0891906139e9565b610f1291906139e9565b811015610f735760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e312560b81b6064820152608401610cc0565b610f8581670de0b6b3a76400006139b1565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6005546001600160a01b03163314610feb5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03811661104b5760405162461bcd60e51b815260206004820152602160248201527f5f79617368614164647265737320616464726573732063616e6e6f74206265206044820152600360fc1b6064820152608401610cc0565b600c80546001600160a01b0319166001600160a01b0383169081179091556040517fcd260171623ee706eef1b72d7b221b6cbeca6f85ff52e82609bcec9218f443dd90600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c8d9185906110cc908690613a0b565b612202565b6005546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b0381166111605760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610cc0565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517f4efa56652237561d0f1fd31311aeaaa41f3b754a461545ed3cf6ced5876d298290600090a250565b601e5460009060ff16156111cd57601d54601c546111c89190613a0b565b905090565b50600090565b6005546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610cc090613950565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112715760405162461bcd60e51b8152600401610cc090613950565b600e805460ff199081169091556010805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b6005546001600160a01b031633146112dc5760405162461bcd60e51b8152600401610cc090613950565b80611372577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036113725760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610cc0565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113c75760405162461bcd60e51b8152600401610cc090613950565b6113cf6111aa565b42101580156113e5575060006113e36111aa565b115b61142a5760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610cc0565b6000601c819055601e805460ff19169055601f546040516370a0823160e01b8152306004820152606491907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca9190613a23565b6114d491906139b1565b6114de91906139e9565b6000601f5560405163a9059cbb60e01b8152336004820152602481018290529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611553573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115779190613a3c565b5050565b6005546001600160a01b031633146115a55760405162461bcd60e51b8152600401610cc090613950565b601283905560138290556014819055806115bf8385613a0b565b6115c99190613a0b565b6011819055601e1015610e055760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cc0565b6005546000906001600160a01b0316331461164b5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b0383166116a15760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cc0565b306001600160a01b038416036116f95760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610cc0565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117649190613a23565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190613a3c565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6005546001600160a01b031633146118515760405162461bcd60e51b8152600401610cc090613950565b600e54610100900460ff16156118a95760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610cc0565b600e805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060048054610bfd90613916565b6005546001600160a01b031633146119225760405162461bcd60e51b8152600401610cc090613950565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036119c95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cc0565b6115778282612c23565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611a555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cc0565b611a623385858403612202565b5060019392505050565b6000610c8d338484612326565b6005546001600160a01b03163314611aa35760405162461bcd60e51b8152600401610cc090613950565b601e5460ff1615611b105760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74207265717565737420616761696e20756e74696c206669727374604482015270103932b8bab2b9ba1034b99037bb32b91760791b6064820152608401610cc0565b60648111158015611b215750600081115b611b6d5760405162461bcd60e51b815260206004820152601a60248201527f4e65656420746f20736574206265747765656e20312d313030250000000000006044820152606401610cc0565b42601c55601e805460ff19166001179055601f8190556040517fd99a77b2f3951cd076e75814e44db497e6abc203dd251329da0b62c288f9f48b90600090a150565b6005546001600160a01b03163314611bd95760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611c605760405162461bcd60e51b8152600401610cc090613950565b60168390556017829055601881905580611c7a8385613a0b565b611c849190613a0b565b601581905560321015610e055760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cc0565b6005546001600160a01b03163314611d035760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8611d1860025490565b611d239060036139b1565b611d2d91906139e9565b611d3791906139e9565b811015611d9b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610cc0565b611dad81670de0b6b3a76400006139b1565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610fb6565b6005546001600160a01b03163314611e0c5760405162461bcd60e51b8152600401610cc090613950565b601e805460ff19169055565b6005546001600160a01b03163314611e425760405162461bcd60e51b8152600401610cc090613950565b620186a0611e4f60025490565b611e5a9060016139b1565b611e6491906139e9565b811015611ed15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cc0565b6103e8611edd60025490565b611ee89060016139b1565b611ef291906139e9565b811115611f5e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610cc0565b600a55565b6005546001600160a01b03163314611f8d5760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8611fa260025490565b611fad9060016139b1565b611fb791906139e9565b611fc191906139e9565b8110156120235760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e312560b01b6064820152608401610cc0565b61203581670de0b6b3a76400006139b1565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610fb6565b6005546001600160a01b031633146120945760405162461bcd60e51b8152600401610cc090613950565b6010805460ff19169055565b6005546001600160a01b031633146120ca5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03811661212f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cc0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146121b55760405162461bcd60e51b8152600401610cc090613950565b604051600090339047908381818185875af1925050503d80600081146121f7576040519150601f19603f3d011682016040523d82523d6000602084013e6121fc565b606091505b50505050565b6001600160a01b0383166122645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cc0565b6001600160a01b0382166122c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cc0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661234c5760405162461bcd60e51b8152600401610cc090613a59565b6001600160a01b0382166123725760405162461bcd60e51b8152600401610cc090613a9e565b600081116123c25760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610cc0565b600e5460ff1615612896576005546001600160a01b038481169116148015906123f957506005546001600160a01b03838116911614155b801561240d57506001600160a01b03821615155b801561242457506001600160a01b03821661dead14155b1561289657600e54610100900460ff166124bc576001600160a01b03831660009081526021602052604090205460ff168061247757506001600160a01b03821660009081526021602052604090205460ff165b6124bc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cc0565b60105460ff1615612618577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561253b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156126185761254b600443613ae1565b326000908152600f6020526040902054108015612589575061256e600443613ae1565b6001600160a01b0383166000908152600f6020526040902054105b6125f35760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610cc0565b326000908152600f602052604080822043908190556001600160a01b03851683529120555b6001600160a01b03831660009081526022602052604090205460ff16801561265957506001600160a01b03821660009081526021602052604090205460ff16155b15612735576006548111156126c15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610cc0565b6008546001600160a01b0383166000908152602081905260409020546126e79083613a0b565b11156127305760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610cc0565b612896565b6001600160a01b03821660009081526022602052604090205460ff16801561277657506001600160a01b03831660009081526021602052604090205460ff16155b156127e0576007548111156127305760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610cc0565b6001600160a01b03821660009081526021602052604090205460ff1615801561282257506001600160a01b03831660009081526021602052604090205460ff16155b15612896576008546001600160a01b03831660009081526020819052604090205461284d9083613a0b565b11156128965760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610cc0565b30600090815260208190526040902054600a54811080159081906128c25750600e5462010000900460ff165b80156128d1575060095460ff16155b80156128f657506001600160a01b03851660009081526022602052604090205460ff16155b801561291a57506001600160a01b038516600090815260208052604090205460ff16155b801561293e57506001600160a01b038416600090815260208052604090205460ff16155b15612963576009805460ff19166001179055612958612c8d565b6009805460ff191690555b6001600160a01b038516600090815260208052604090205460019060ff16806129a357506001600160a01b038516600090815260208052604090205460ff165b156129ac575060005b6000808215612c0e5743600d5460016129c59190613a0b565b101580156129eb57506001600160a01b03881660009081526022602052604090205460ff165b15612a275760646129fd8760636139b1565b612a0791906139e9565b600b54909150612a229089906001600160a01b0316836130f7565b612be6565b6001600160a01b03871660009081526022602052604090205460ff168015612a5157506000601554115b15612b0957606460155487612a6691906139b1565b612a7091906139e9565b915060155460175483612a8391906139b1565b612a8d91906139e9565b601a6000828254612a9e9190613a0b565b9091555050601554601654612ab390846139b1565b612abd91906139e9565b60196000828254612ace9190613a0b565b9091555050601554601854612ae390846139b1565b612aed91906139e9565b601b6000828254612afe9190613a0b565b90915550612be69050565b6001600160a01b03881660009081526022602052604090205460ff168015612b3357506000601154115b15612be657606460115487612b4891906139b1565b612b5291906139e9565b915060115460135483612b6591906139b1565b612b6f91906139e9565b601a6000828254612b809190613a0b565b9091555050601154601254612b9590846139b1565b612b9f91906139e9565b60196000828254612bb09190613a0b565b9091555050601154601454612bc590846139b1565b612bcf91906139e9565b601b6000828254612be09190613a0b565b90915550505b8115612bf757612bf78830846130f7565b612c018183613a0b565b612c0b9087613ae1565b95505b612c198888886130f7565b5050505050505050565b6001600160a01b0382166000908152602260205260409020805460ff1916821515179055612c51828261324c565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3060009081526020819052604081205490506000601b54601954601a54612cb49190613a0b565b612cbe9190613a0b565b9050811580612ccb575080155b15612cd4575050565b600a8054612ce1916139b1565b821115612cf857600a8054612cf5916139b1565b91505b6000600282601a5485612d0b91906139b1565b612d1591906139e9565b612d1f91906139e9565b9050612d33612d2e8285613ae1565b6132af565b6040516304fa881160e21b815273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906313ea204490602401600060405180830381600087803b158015612da857600080fd5b505af1158015612dbc573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201526000925073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4891506370a0823190602401602060405180830381865afa158015612e12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e369190613a23565b9050600081905060006002601a54612e4e91906139e9565b612e589086613ae1565b601954612e6590856139b1565b612e6f91906139e9565b905060006002601a54612e8291906139e9565b612e8c9087613ae1565b601b54612e9990866139b1565b612ea391906139e9565b9050612eaf8183613a0b565b612eb99084613ae1565b6000601a8190556019819055601b5592508415801590612ed95750600083115b15612ee857612ee88584613422565b8015612f7957600c5460405163a9059cbb60e01b81526001600160a01b0390911660048201526024810182905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489063a9059cbb906044016020604051808303816000875af1158015612f53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f779190613a3c565b505b6040516370a0823160e01b815230600482015260009073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa158015612fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fef9190613a23565b11156130ee57600b546040516370a0823160e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489163a9059cbb916001600160a01b039091169083906370a0823190602401602060405180830381865afa15801561305b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307f9190613a23565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156130ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c199190613a3c565b50505050505050565b6001600160a01b03831661311d5760405162461bcd60e51b8152600401610cc090613a59565b6001600160a01b0382166131435760405162461bcd60e51b8152600401610cc090613a9e565b6001600160a01b038316600090815260208190526040902054818110156131bb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cc0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906131f2908490613a0b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161323e91815260200190565b60405180910390a350505050565b6001600160a01b038216600081815260216020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132e4576132e4613985565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb488160018151811061332c5761332c613985565b60200260200101906001600160a01b031690816001600160a01b031681525050613377307f000000000000000000000000000000000000000000000000000000000000000084612202565b604051635c11d79560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690635c11d795906133ec90859060009086907f0000000000000000000000000000000000000000000000000000000000000000904290600401613af8565b600060405180830381600087803b15801561340657600080fd5b505af115801561341a573d6000803e3d6000fd5b505050505050565b61344d307f000000000000000000000000000000000000000000000000000000000000000084612202565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660048201526024810182905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489063095ea7b3906044016020604051808303816000875af11580156134ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134f29190613a3c565b5060405162e8e33760e81b8152306004820181905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486024830152604482018490526064820183905260006084830181905260a483015260c48201524260e48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e8e3370090610104016060604051808303816000875af115801561359c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c09190613b69565b5050505050565b600060208083528351808285015260005b818110156135f4578581018301518582016040015282016135d8565b81811115613606576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461363357600080fd5b919050565b6000806040838503121561364b57600080fd5b6136548361361c565b946020939093013593505050565b60006020828403121561367457600080fd5b61367d8261361c565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136c3576136c3613684565b604052919050565b600067ffffffffffffffff8211156136e5576136e5613684565b5060051b60200190565b600082601f83011261370057600080fd5b81356020613715613710836136cb565b61369a565b82815260059290921b8401810191818101908684111561373457600080fd5b8286015b8481101561374f5780358352918301918301613738565b509695505050505050565b6000806040838503121561376d57600080fd5b823567ffffffffffffffff8082111561378557600080fd5b818501915085601f83011261379957600080fd5b813560206137a9613710836136cb565b82815260059290921b840181019181810190898411156137c857600080fd5b948201945b838610156137ed576137de8661361c565b825294820194908201906137cd565b9650508601359250508082111561380357600080fd5b50613810858286016136ef565b9150509250929050565b60008060006060848603121561382f57600080fd5b6138388461361c565b92506138466020850161361c565b9150604084013590509250925092565b60006020828403121561386857600080fd5b5035919050565b801515811461387d57600080fd5b50565b6000806040838503121561389357600080fd5b61389c8361361c565b915060208301356138ac8161386f565b809150509250929050565b6000806000606084860312156138cc57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156138f657600080fd5b6138ff8361361c565b915061390d6020840161361c565b90509250929050565b600181811c9082168061392a57607f821691505b60208210810361394a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156139cb576139cb61399b565b500290565b6000600182016139e2576139e261399b565b5060010190565b600082613a0657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613a1e57613a1e61399b565b500190565b600060208284031215613a3557600080fd5b5051919050565b600060208284031215613a4e57600080fd5b815161367d8161386f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015613af357613af361399b565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613b485784516001600160a01b031683529383019391830191600101613b23565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613b7e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122050e459ff7d0390f76492b6f38b7069b06cb9acea3460ba34113b914f44046a0264736f6c634300080d0033608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610475806100616000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806313ea204414610051578063715018a6146100665780638da5cb5b1461006e578063f2fde38b1461008d575b600080fd5b61006461005f36600461039f565b6100a0565b005b610064610241565b600054604080516001600160a01b039092168252519081900360200190f35b61006461009b36600461039f565b6102b5565b6000546001600160a01b031633146100d35760405162461bcd60e51b81526004016100ca906103cf565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e9190610404565b111561023e57806001600160a01b031663a9059cbb6101656000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156101a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101cd9190610404565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023c919061041d565b505b50565b6000546001600160a01b0316331461026b5760405162461bcd60e51b81526004016100ca906103cf565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146102df5760405162461bcd60e51b81526004016100ca906103cf565b6001600160a01b0381166103445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016100ca565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000602082840312156103b157600080fd5b81356001600160a01b03811681146103c857600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561041657600080fd5b5051919050565b60006020828403121561042f57600080fd5b815180151581146103c857600080fdfea264697066735822122024d2c4d3c9a6078bd9e427df64ac231f8edee3c83d286d77c0aa7ca1a54277e364736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0
Deployed Bytecode
0x6080604052600436106103e85760003560e01c80638366e79a11610208578063c7c61e2c11610118578063ea4cfe12116100ab578063f2fde38b1161007a578063f2fde38b14610b73578063f5648a4f14610b93578063f637434214610ba8578063fb002c9714610bbe578063fd361d0e14610bd457600080fd5b8063ea4cfe1214610b11578063ee40166e14610b31578063ee44b44e14610b47578063f11a24d314610b5d57600080fd5b8063dc3f0d0f116100e7578063dc3f0d0f14610a80578063dd62ed3e14610aa0578063e2f4560514610ae6578063e884f26014610afc57600080fd5b8063c7c61e2c14610a1b578063c876d0b914610a30578063d257b34f14610a4a578063d85ba06314610a6a57600080fd5b8063a457c2d71161019b578063bbc0c7421161016a578063bbc0c7421461097c578063befd2fac1461099b578063c0246668146109bb578063c17b5b8c146109db578063c18bc195146109fb57600080fd5b8063a457c2d7146108f6578063a9059cbb14610916578063aa4bde2814610936578063b62496f51461094c57600080fd5b80638a8c523c116101d75780638a8c523c1461088e5780638da5cb5b146108a357806395d89b41146108c15780639a7a23d6146108d657600080fd5b80638366e79a1461081a578063857a56aa1461083a57806388e765ff1461085057806389a302711461086657600080fd5b80634a62bb65116103035780636ddd171311610296578063751039fc11610265578063751039fc1461079a5780637571336a146107af578063763cef49146107cf578063783102eb146107e45780638095d564146107fa57600080fd5b80636ddd17131461071a57806370a082311461073a578063712c298514610770578063715018a61461078557600080fd5b80635a139dd4116102d25780635a139dd4146106c25780635f3ccf83146106d857806366d602ae146106ee5780636a486a8e1461070457600080fd5b80634a62bb651461065c5780634f77f6c0146106765780635029c6571461068c5780635045d098146106a257600080fd5b80632307b4411161037b578063313ce5671161034a578063313ce567146105cc57806339509351146105e8578063452ed4f114610608578063499b83941461063c57600080fd5b80632307b4411461054a57806323b872dd1461056c5780632be32b611461058c5780632fa7d7f9146105ac57600080fd5b806310d5de53116103b757806310d5de53146104bb57806318160ddd146104eb5780631a8145bb146105005780631b3d6e871461051657600080fd5b8063058054c9146103f457806306fdde031461041d5780630758d9241461043f578063095ea7b31461048b57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b5061040a601c5481565b6040519081526020015b60405180910390f35b34801561042957600080fd5b50610432610bee565b60405161041491906135c7565b34801561044b57600080fd5b506104737f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610414565b34801561049757600080fd5b506104ab6104a6366004613638565b610c80565b6040519015158152602001610414565b3480156104c757600080fd5b506104ab6104d6366004613662565b60216020526000908152604090205460ff1681565b3480156104f757600080fd5b5060025461040a565b34801561050c57600080fd5b5061040a601a5481565b34801561052257600080fd5b506104737f0000000000000000000000008ba2932cf5164b0483dc0a43d3e867a3b40a2a1481565b34801561055657600080fd5b5061056a61056536600461375a565b610c96565b005b34801561057857600080fd5b506104ab61058736600461381a565b610e0a565b34801561059857600080fd5b5061056a6105a7366004613856565b610eb4565b3480156105b857600080fd5b5061056a6105c7366004613662565b610fc1565b3480156105d857600080fd5b5060405160128152602001610414565b3480156105f457600080fd5b506104ab610603366004613638565b611095565b34801561061457600080fd5b506104737f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c281565b34801561064857600080fd5b5061056a610657366004613662565b6110d1565b34801561066857600080fd5b50600e546104ab9060ff1681565b34801561068257600080fd5b5061040a60165481565b34801561069857600080fd5b5061040a60185481565b3480156106ae57600080fd5b50600c54610473906001600160a01b031681565b3480156106ce57600080fd5b5061040a60125481565b3480156106e457600080fd5b5061040a60145481565b3480156106fa57600080fd5b5061040a60075481565b34801561071057600080fd5b5061040a60155481565b34801561072657600080fd5b50600e546104ab9062010000900460ff1681565b34801561074657600080fd5b5061040a610755366004613662565b6001600160a01b031660009081526020819052604090205490565b34801561077c57600080fd5b5061040a6111aa565b34801561079157600080fd5b5061056a6111d3565b3480156107a657600080fd5b5061056a611247565b3480156107bb57600080fd5b5061056a6107ca366004613880565b6112b2565b3480156107db57600080fd5b5061056a61139d565b3480156107f057600080fd5b5061040a601f5481565b34801561080657600080fd5b5061056a6108153660046138b7565b61157b565b34801561082657600080fd5b506104ab6108353660046138e3565b61161e565b34801561084657600080fd5b5061040a601b5481565b34801561085c57600080fd5b5061040a60065481565b34801561087257600080fd5b5061047373a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b34801561089a57600080fd5b5061056a611827565b3480156108af57600080fd5b506005546001600160a01b0316610473565b3480156108cd57600080fd5b506104326118e9565b3480156108e257600080fd5b5061056a6108f1366004613880565b6118f8565b34801561090257600080fd5b506104ab610911366004613638565b6119d3565b34801561092257600080fd5b506104ab610931366004613638565b611a6c565b34801561094257600080fd5b5061040a60085481565b34801561095857600080fd5b506104ab610967366004613662565b60226020526000908152604090205460ff1681565b34801561098857600080fd5b50600e546104ab90610100900460ff1681565b3480156109a757600080fd5b5061056a6109b6366004613856565b611a79565b3480156109c757600080fd5b5061056a6109d6366004613880565b611baf565b3480156109e757600080fd5b5061056a6109f63660046138b7565b611c36565b348015610a0757600080fd5b5061056a610a16366004613856565b611cd9565b348015610a2757600080fd5b5061056a611de2565b348015610a3c57600080fd5b506010546104ab9060ff1681565b348015610a5657600080fd5b5061056a610a65366004613856565b611e18565b348015610a7657600080fd5b5061040a60115481565b348015610a8c57600080fd5b5061056a610a9b366004613856565b611f63565b348015610aac57600080fd5b5061040a610abb3660046138e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610af257600080fd5b5061040a600a5481565b348015610b0857600080fd5b5061056a61206a565b348015610b1d57600080fd5b50600b54610473906001600160a01b031681565b348015610b3d57600080fd5b5061040a600d5481565b348015610b5357600080fd5b5061040a601d5481565b348015610b6957600080fd5b5061040a60135481565b348015610b7f57600080fd5b5061056a610b8e366004613662565b6120a0565b348015610b9f57600080fd5b5061056a61218b565b348015610bb457600080fd5b5061040a60175481565b348015610bca57600080fd5b5061040a60195481565b348015610be057600080fd5b50601e546104ab9060ff1681565b606060038054610bfd90613916565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2990613916565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b5050505050905090565b6000610c8d338484612202565b50600192915050565b6005546001600160a01b03163314610cc95760405162461bcd60e51b8152600401610cc090613950565b60405180910390fd5b8051825114610d1a5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610cc0565b60c8825110610d8a5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610cc0565b60005b8251811015610e05576000838281518110610daa57610daa613985565b602002602001015190506000838381518110610dc857610dc8613985565b6020026020010151670de0b6b3a7640000610de391906139b1565b9050610df0338383612326565b50508080610dfd906139d0565b915050610d8d565b505050565b6000610e17848484612326565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e9c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cc0565b610ea98533858403612202565b506001949350505050565b6005546001600160a01b03163314610ede5760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8610ef360025490565b610efe9060016139b1565b610f0891906139e9565b610f1291906139e9565b811015610f735760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e312560b81b6064820152608401610cc0565b610f8581670de0b6b3a76400006139b1565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6005546001600160a01b03163314610feb5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03811661104b5760405162461bcd60e51b815260206004820152602160248201527f5f79617368614164647265737320616464726573732063616e6e6f74206265206044820152600360fc1b6064820152608401610cc0565b600c80546001600160a01b0319166001600160a01b0383169081179091556040517fcd260171623ee706eef1b72d7b221b6cbeca6f85ff52e82609bcec9218f443dd90600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c8d9185906110cc908690613a0b565b612202565b6005546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b0381166111605760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610cc0565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517f4efa56652237561d0f1fd31311aeaaa41f3b754a461545ed3cf6ced5876d298290600090a250565b601e5460009060ff16156111cd57601d54601c546111c89190613a0b565b905090565b50600090565b6005546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610cc090613950565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112715760405162461bcd60e51b8152600401610cc090613950565b600e805460ff199081169091556010805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b6005546001600160a01b031633146112dc5760405162461bcd60e51b8152600401610cc090613950565b80611372577f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c26001600160a01b0316826001600160a01b0316036113725760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610cc0565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113c75760405162461bcd60e51b8152600401610cc090613950565b6113cf6111aa565b42101580156113e5575060006113e36111aa565b115b61142a5760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610cc0565b6000601c819055601e805460ff19169055601f546040516370a0823160e01b8152306004820152606491907f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c26001600160a01b0316906370a0823190602401602060405180830381865afa1580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca9190613a23565b6114d491906139b1565b6114de91906139e9565b6000601f5560405163a9059cbb60e01b8152336004820152602481018290529091507f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c26001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611553573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115779190613a3c565b5050565b6005546001600160a01b031633146115a55760405162461bcd60e51b8152600401610cc090613950565b601283905560138290556014819055806115bf8385613a0b565b6115c99190613a0b565b6011819055601e1015610e055760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cc0565b6005546000906001600160a01b0316331461164b5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b0383166116a15760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cc0565b306001600160a01b038416036116f95760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610cc0565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117649190613a23565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190613a3c565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6005546001600160a01b031633146118515760405162461bcd60e51b8152600401610cc090613950565b600e54610100900460ff16156118a95760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610cc0565b600e805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060048054610bfd90613916565b6005546001600160a01b031633146119225760405162461bcd60e51b8152600401610cc090613950565b7f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c26001600160a01b0316826001600160a01b0316036119c95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cc0565b6115778282612c23565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611a555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cc0565b611a623385858403612202565b5060019392505050565b6000610c8d338484612326565b6005546001600160a01b03163314611aa35760405162461bcd60e51b8152600401610cc090613950565b601e5460ff1615611b105760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74207265717565737420616761696e20756e74696c206669727374604482015270103932b8bab2b9ba1034b99037bb32b91760791b6064820152608401610cc0565b60648111158015611b215750600081115b611b6d5760405162461bcd60e51b815260206004820152601a60248201527f4e65656420746f20736574206265747765656e20312d313030250000000000006044820152606401610cc0565b42601c55601e805460ff19166001179055601f8190556040517fd99a77b2f3951cd076e75814e44db497e6abc203dd251329da0b62c288f9f48b90600090a150565b6005546001600160a01b03163314611bd95760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611c605760405162461bcd60e51b8152600401610cc090613950565b60168390556017829055601881905580611c7a8385613a0b565b611c849190613a0b565b601581905560321015610e055760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cc0565b6005546001600160a01b03163314611d035760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8611d1860025490565b611d239060036139b1565b611d2d91906139e9565b611d3791906139e9565b811015611d9b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610cc0565b611dad81670de0b6b3a76400006139b1565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610fb6565b6005546001600160a01b03163314611e0c5760405162461bcd60e51b8152600401610cc090613950565b601e805460ff19169055565b6005546001600160a01b03163314611e425760405162461bcd60e51b8152600401610cc090613950565b620186a0611e4f60025490565b611e5a9060016139b1565b611e6491906139e9565b811015611ed15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cc0565b6103e8611edd60025490565b611ee89060016139b1565b611ef291906139e9565b811115611f5e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610cc0565b600a55565b6005546001600160a01b03163314611f8d5760405162461bcd60e51b8152600401610cc090613950565b670de0b6b3a76400006103e8611fa260025490565b611fad9060016139b1565b611fb791906139e9565b611fc191906139e9565b8110156120235760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e312560b01b6064820152608401610cc0565b61203581670de0b6b3a76400006139b1565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610fb6565b6005546001600160a01b031633146120945760405162461bcd60e51b8152600401610cc090613950565b6010805460ff19169055565b6005546001600160a01b031633146120ca5760405162461bcd60e51b8152600401610cc090613950565b6001600160a01b03811661212f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cc0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146121b55760405162461bcd60e51b8152600401610cc090613950565b604051600090339047908381818185875af1925050503d80600081146121f7576040519150601f19603f3d011682016040523d82523d6000602084013e6121fc565b606091505b50505050565b6001600160a01b0383166122645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cc0565b6001600160a01b0382166122c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cc0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661234c5760405162461bcd60e51b8152600401610cc090613a59565b6001600160a01b0382166123725760405162461bcd60e51b8152600401610cc090613a9e565b600081116123c25760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610cc0565b600e5460ff1615612896576005546001600160a01b038481169116148015906123f957506005546001600160a01b03838116911614155b801561240d57506001600160a01b03821615155b801561242457506001600160a01b03821661dead14155b1561289657600e54610100900460ff166124bc576001600160a01b03831660009081526021602052604090205460ff168061247757506001600160a01b03821660009081526021602052604090205460ff165b6124bc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cc0565b60105460ff1615612618577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b03161415801561253b57507f000000000000000000000000635043ea57e3ea10c77db9058359597a716430c26001600160a01b0316826001600160a01b031614155b156126185761254b600443613ae1565b326000908152600f6020526040902054108015612589575061256e600443613ae1565b6001600160a01b0383166000908152600f6020526040902054105b6125f35760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610cc0565b326000908152600f602052604080822043908190556001600160a01b03851683529120555b6001600160a01b03831660009081526022602052604090205460ff16801561265957506001600160a01b03821660009081526021602052604090205460ff16155b15612735576006548111156126c15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610cc0565b6008546001600160a01b0383166000908152602081905260409020546126e79083613a0b565b11156127305760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610cc0565b612896565b6001600160a01b03821660009081526022602052604090205460ff16801561277657506001600160a01b03831660009081526021602052604090205460ff16155b156127e0576007548111156127305760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610cc0565b6001600160a01b03821660009081526021602052604090205460ff1615801561282257506001600160a01b03831660009081526021602052604090205460ff16155b15612896576008546001600160a01b03831660009081526020819052604090205461284d9083613a0b565b11156128965760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610cc0565b30600090815260208190526040902054600a54811080159081906128c25750600e5462010000900460ff165b80156128d1575060095460ff16155b80156128f657506001600160a01b03851660009081526022602052604090205460ff16155b801561291a57506001600160a01b038516600090815260208052604090205460ff16155b801561293e57506001600160a01b038416600090815260208052604090205460ff16155b15612963576009805460ff19166001179055612958612c8d565b6009805460ff191690555b6001600160a01b038516600090815260208052604090205460019060ff16806129a357506001600160a01b038516600090815260208052604090205460ff165b156129ac575060005b6000808215612c0e5743600d5460016129c59190613a0b565b101580156129eb57506001600160a01b03881660009081526022602052604090205460ff165b15612a275760646129fd8760636139b1565b612a0791906139e9565b600b54909150612a229089906001600160a01b0316836130f7565b612be6565b6001600160a01b03871660009081526022602052604090205460ff168015612a5157506000601554115b15612b0957606460155487612a6691906139b1565b612a7091906139e9565b915060155460175483612a8391906139b1565b612a8d91906139e9565b601a6000828254612a9e9190613a0b565b9091555050601554601654612ab390846139b1565b612abd91906139e9565b60196000828254612ace9190613a0b565b9091555050601554601854612ae390846139b1565b612aed91906139e9565b601b6000828254612afe9190613a0b565b90915550612be69050565b6001600160a01b03881660009081526022602052604090205460ff168015612b3357506000601154115b15612be657606460115487612b4891906139b1565b612b5291906139e9565b915060115460135483612b6591906139b1565b612b6f91906139e9565b601a6000828254612b809190613a0b565b9091555050601154601254612b9590846139b1565b612b9f91906139e9565b60196000828254612bb09190613a0b565b9091555050601154601454612bc590846139b1565b612bcf91906139e9565b601b6000828254612be09190613a0b565b90915550505b8115612bf757612bf78830846130f7565b612c018183613a0b565b612c0b9087613ae1565b95505b612c198888886130f7565b5050505050505050565b6001600160a01b0382166000908152602260205260409020805460ff1916821515179055612c51828261324c565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3060009081526020819052604081205490506000601b54601954601a54612cb49190613a0b565b612cbe9190613a0b565b9050811580612ccb575080155b15612cd4575050565b600a8054612ce1916139b1565b821115612cf857600a8054612cf5916139b1565b91505b6000600282601a5485612d0b91906139b1565b612d1591906139e9565b612d1f91906139e9565b9050612d33612d2e8285613ae1565b6132af565b6040516304fa881160e21b815273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860048201527f0000000000000000000000008ba2932cf5164b0483dc0a43d3e867a3b40a2a146001600160a01b0316906313ea204490602401600060405180830381600087803b158015612da857600080fd5b505af1158015612dbc573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201526000925073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4891506370a0823190602401602060405180830381865afa158015612e12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e369190613a23565b9050600081905060006002601a54612e4e91906139e9565b612e589086613ae1565b601954612e6590856139b1565b612e6f91906139e9565b905060006002601a54612e8291906139e9565b612e8c9087613ae1565b601b54612e9990866139b1565b612ea391906139e9565b9050612eaf8183613a0b565b612eb99084613ae1565b6000601a8190556019819055601b5592508415801590612ed95750600083115b15612ee857612ee88584613422565b8015612f7957600c5460405163a9059cbb60e01b81526001600160a01b0390911660048201526024810182905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489063a9059cbb906044016020604051808303816000875af1158015612f53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f779190613a3c565b505b6040516370a0823160e01b815230600482015260009073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa158015612fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fef9190613a23565b11156130ee57600b546040516370a0823160e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489163a9059cbb916001600160a01b039091169083906370a0823190602401602060405180830381865afa15801561305b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307f9190613a23565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156130ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c199190613a3c565b50505050505050565b6001600160a01b03831661311d5760405162461bcd60e51b8152600401610cc090613a59565b6001600160a01b0382166131435760405162461bcd60e51b8152600401610cc090613a9e565b6001600160a01b038316600090815260208190526040902054818110156131bb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cc0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906131f2908490613a0b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161323e91815260200190565b60405180910390a350505050565b6001600160a01b038216600081815260216020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132e4576132e4613985565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb488160018151811061332c5761332c613985565b60200260200101906001600160a01b031690816001600160a01b031681525050613377307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612202565b604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1690635c11d795906133ec90859060009086907f0000000000000000000000008ba2932cf5164b0483dc0a43d3e867a3b40a2a14904290600401613af8565b600060405180830381600087803b15801561340657600080fd5b505af115801561341a573d6000803e3d6000fd5b505050505050565b61344d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612202565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1660048201526024810182905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489063095ea7b3906044016020604051808303816000875af11580156134ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134f29190613a3c565b5060405162e8e33760e81b8152306004820181905273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486024830152604482018490526064820183905260006084830181905260a483015260c48201524260e48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063e8e3370090610104016060604051808303816000875af115801561359c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c09190613b69565b5050505050565b600060208083528351808285015260005b818110156135f4578581018301518582016040015282016135d8565b81811115613606576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461363357600080fd5b919050565b6000806040838503121561364b57600080fd5b6136548361361c565b946020939093013593505050565b60006020828403121561367457600080fd5b61367d8261361c565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136c3576136c3613684565b604052919050565b600067ffffffffffffffff8211156136e5576136e5613684565b5060051b60200190565b600082601f83011261370057600080fd5b81356020613715613710836136cb565b61369a565b82815260059290921b8401810191818101908684111561373457600080fd5b8286015b8481101561374f5780358352918301918301613738565b509695505050505050565b6000806040838503121561376d57600080fd5b823567ffffffffffffffff8082111561378557600080fd5b818501915085601f83011261379957600080fd5b813560206137a9613710836136cb565b82815260059290921b840181019181810190898411156137c857600080fd5b948201945b838610156137ed576137de8661361c565b825294820194908201906137cd565b9650508601359250508082111561380357600080fd5b50613810858286016136ef565b9150509250929050565b60008060006060848603121561382f57600080fd5b6138388461361c565b92506138466020850161361c565b9150604084013590509250925092565b60006020828403121561386857600080fd5b5035919050565b801515811461387d57600080fd5b50565b6000806040838503121561389357600080fd5b61389c8361361c565b915060208301356138ac8161386f565b809150509250929050565b6000806000606084860312156138cc57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156138f657600080fd5b6138ff8361361c565b915061390d6020840161361c565b90509250929050565b600181811c9082168061392a57607f821691505b60208210810361394a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156139cb576139cb61399b565b500290565b6000600182016139e2576139e261399b565b5060010190565b600082613a0657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613a1e57613a1e61399b565b500190565b600060208284031215613a3557600080fd5b5051919050565b600060208284031215613a4e57600080fd5b815161367d8161386f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015613af357613af361399b565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613b485784516001600160a01b031683529383019391830191600101613b23565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613b7e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122050e459ff7d0390f76492b6f38b7069b06cb9acea3460ba34113b914f44046a0264736f6c634300080d0033
Deployed Bytecode Sourcemap
10245:19362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11718:41;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;11718:41:0;;;;;;;;4115:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10398:37::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;980:32:1;;;962:51;;950:2;935:18;10398:37:0;798:221:1;5029:169:0;;;;;;;;;;-1:-1:-1;5029:169:0;;;;;:::i;:::-;;:::i;:::-;;;1626:14:1;;1619:22;1601:41;;1589:2;1574:18;5029:169:0;1461:187:1;12050:64:0;;;;;;;;;;-1:-1:-1;12050:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4436:108;;;;;;;;;;-1:-1:-1;4524:12:0;;4436:108;;11640:33;;;;;;;;;;;;;;;;10482:42;;;;;;;;;;;;;;;17054:617;;;;;;;;;;-1:-1:-1;17054:617:0;;;;;:::i;:::-;;:::i;:::-;;5206:492;;;;;;;;;;-1:-1:-1;5206:492:0;;;;;:::i;:::-;;:::i;15564:269::-;;;;;;;;;;-1:-1:-1;15564:269:0;;;;;:::i;:::-;;:::i;27993:257::-;;;;;;;;;;-1:-1:-1;27993:257:0;;;;;:::i;:::-;;:::i;4335:93::-;;;;;;;;;;-1:-1:-1;4335:93:0;;4418:2;5150:36:1;;5138:2;5123:18;4335:93:0;5008:184:1;5706:215:0;;;;;;;;;;-1:-1:-1;5706:215:0;;;;;:::i;:::-;;:::i;10442:31::-;;;;;;;;;;;;;;;27688:297;;;;;;;;;;-1:-1:-1;27688:297:0;;;;;:::i;:::-;;:::i;10757:33::-;;;;;;;;;;-1:-1:-1;10757:33:0;;;;;;;;11486:32;;;;;;;;;;;;;;;;11563:27;;;;;;;;;;;;;;;;10642;;;;;;;;;;-1:-1:-1;10642:27:0;;;;-1:-1:-1;;;;;10642:27:0;;;11341:31;;;;;;;;;;;;;;;;11416:26;;;;;;;;;;;;;;;;10324:28;;;;;;;;;;;;;;;;11451;;;;;;;;;;;;;;;;10837:31;;;;;;;;;;-1:-1:-1;10837:31:0;;;;;;;;;;;4552:127;;;;;;;;;;-1:-1:-1;4552:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;4653:18:0;4626:7;4653:18;;;;;;;;;;;;4552:127;28715:281;;;;;;;;;;;;;:::i;8196:150::-;;;;;;;;;;;;;:::i;15230:154::-;;;;;;;;;;;;;:::i;17683:260::-;;;;;;;;;;-1:-1:-1;17683:260:0;;;;;:::i;:::-;;:::i;29004:487::-;;;;;;;;;;;;;:::i;11865:31::-;;;;;;;;;;;;;;;;18454:381;;;;;;;;;;-1:-1:-1;18454:381:0;;;;;:::i;:::-;;:::i;26404:456::-;;;;;;;;;;-1:-1:-1;26404:456:0;;;;;:::i;:::-;;:::i;11680:29::-;;;;;;;;;;;;;;;;10290:27;;;;;;;;;;;;;;;;11108:80;;;;;;;;;;;;11145:42;11108:80;;14925:249;;;;;;;;;;;;;:::i;7982:79::-;;;;;;;;;;-1:-1:-1;8047:6:0;;-1:-1:-1;;;;;8047:6:0;7982:79;;4223:104;;;;;;;;;;;;;:::i;17951:239::-;;;;;;;;;;-1:-1:-1;17951:239:0;;;;;:::i;:::-;;:::i;5929:413::-;;;;;;;;;;-1:-1:-1;5929:413:0;;;;;:::i;:::-;;:::i;4687:175::-;;;;;;;;;;-1:-1:-1;4687:175:0;;;;;:::i;:::-;;:::i;10359:30::-;;;;;;;;;;;;;;;;12272:58;;;;;;;;;;-1:-1:-1;12272:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10797:33;;;;;;;;;;-1:-1:-1;10797:33:0;;;;;;;;;;;28258:449;;;;;;;;;;-1:-1:-1;28258:449:0;;;;;:::i;:::-;;:::i;19241:182::-;;;;;;;;;;-1:-1:-1;19241:182:0;;;;;:::i;:::-;;:::i;18843:390::-;;;;;;;;;;-1:-1:-1;18843:390:0;;;;;:::i;:::-;;:::i;16127:284::-;;;;;;;;;;-1:-1:-1;16127:284:0;;;;;:::i;:::-;;:::i;29499:105::-;;;;;;;;;;;;;:::i;11060:39::-;;;;;;;;;;-1:-1:-1;11060:39:0;;;;;;;;16481:346;;;;;;;;;;-1:-1:-1;16481:346:0;;;;;:::i;:::-;;:::i;11307:27::-;;;;;;;;;;;;;;;;15845:274;;;;;;;;;;-1:-1:-1;15845:274:0;;;;;:::i;:::-;;:::i;4870:151::-;;;;;;;;;;-1:-1:-1;4870:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;4986:18:0;;;4959:7;4986:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4870:151;10561:33;;;;;;;;;;;;;;;;15454:98;;;;;;;;;;;;;:::i;10603:32::-;;;;;;;;;;-1:-1:-1;10603:32:0;;;;-1:-1:-1;;;;;10603:32:0;;;10678:37;;;;;;;;;;;;;;;;11766:49;;;;;;;;;;;;;;;;11379:30;;;;;;;;;;;;;;;;8354:244;;;;;;;;;;-1:-1:-1;8354:244:0;;;;;:::i;:::-;;:::i;27520:160::-;;;;;;;;;;;;;:::i;11525:31::-;;;;;;;;;;;;;;;;11599:34;;;;;;;;;;;;;;;;11822:36;;;;;;;;;;-1:-1:-1;11822:36:0;;;;;;;;4115:100;4169:13;4202:5;4195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4115:100;:::o;5029:169::-;5112:4;5129:39;344:10;5152:7;5161:6;5129:8;:39::i;:::-;-1:-1:-1;5186:4:0;5029:169;;;;:::o;17054:617::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;;;;;;;;;17196:15:::1;:22;17178:7;:14;:40;17170:83;;;::::0;-1:-1:-1;;;17170:83:0;;7603:2:1;17170:83:0::1;::::0;::::1;7585:21:1::0;7642:2;7622:18;;;7615:30;7681:32;7661:18;;;7654:60;7731:18;;17170:83:0::1;7401:354:1::0;17170:83:0::1;17289:3;17272:7;:14;:20;17264:87;;;::::0;-1:-1:-1;;;17264:87:0;;7962:2:1;17264:87:0::1;::::0;::::1;7944:21:1::0;8001:2;7981:18;;;7974:30;8040:34;8020:18;;;8013:62;-1:-1:-1;;;8091:18:1;;;8084:52;8153:19;;17264:87:0::1;7760:418:1::0;17264:87:0::1;17464:9;17460:204;17483:7;:14;17479:1;:18;17460:204;;;17518:14;17535:7;17543:1;17535:10;;;;;;;;:::i;:::-;;;;;;;17518:27;;17560:14;17577:15;17593:1;17577:18;;;;;;;;:::i;:::-;;;;;;;17596:4;17577:23;;;;:::i;:::-;17560:40;;17615:37;17625:10;17637:6;17645;17615:9;:37::i;:::-;17503:161;;17499:3;;;;;:::i;:::-;;;;17460:204;;;;17054:617:::0;;:::o;5206:492::-;5346:4;5363:36;5373:6;5381:9;5392:6;5363:9;:36::i;:::-;-1:-1:-1;;;;;5439:19:0;;5412:24;5439:19;;;:11;:19;;;;;;;;344:10;5439:33;;;;;;;;5491:26;;;;5483:79;;;;-1:-1:-1;;;5483:79:0;;8962:2:1;5483:79:0;;;8944:21:1;9001:2;8981:18;;;8974:30;9040:34;9020:18;;;9013:62;-1:-1:-1;;;9091:18:1;;;9084:38;9139:19;;5483:79:0;8760:404:1;5483:79:0;5598:57;5607:6;344:10;5648:6;5629:16;:25;5598:8;:57::i;:::-;-1:-1:-1;5686:4:0;;5206:492;-1:-1:-1;;;;5206:492:0:o;15564:269::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;15683:4:::1;15677;15657:13;4524:12:::0;;;4436:108;15657:13:::1;:17;::::0;15673:1:::1;15657:17;:::i;:::-;:24;;;;:::i;:::-;15656:31;;;;:::i;:::-;15646:6;:41;;15638:95;;;::::0;-1:-1:-1;;;15638:95:0;;9593:2:1;15638:95:0::1;::::0;::::1;9575:21:1::0;9632:2;9612:18;;;9605:30;9671:34;9651:18;;;9644:62;-1:-1:-1;;;9722:18:1;;;9715:39;9771:19;;15638:95:0::1;9391:405:1::0;15638:95:0::1;15759:17;:6:::0;15769::::1;15759:17;:::i;:::-;15744:12;:32:::0;;;15792:33:::1;::::0;160:25:1;;;15792:33:0::1;::::0;148:2:1;133:18;15792:33:0::1;;;;;;;;15564:269:::0;:::o;27993:257::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28079:27:0;::::1;28071:73;;;::::0;-1:-1:-1;;;28071:73:0;;10003:2:1;28071:73:0::1;::::0;::::1;9985:21:1::0;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:31;10173:19;;28071:73:0::1;9801:397:1::0;28071:73:0::1;28155:12;:37:::0;;-1:-1:-1;;;;;;28155:37:0::1;-1:-1:-1::0;;;;;28155:37:0;::::1;::::0;;::::1;::::0;;;28208:34:::1;::::0;::::1;::::0;-1:-1:-1;;28208:34:0::1;27993:257:::0;:::o;5706:215::-;344:10;5794:4;5843:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5843:34:0;;;;;;;;;;5794:4;;5811:80;;5834:7;;5843:47;;5880:10;;5843:47;:::i;:::-;5811:8;:80::i;27688:297::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27784:32:0;::::1;27776:83;;;::::0;-1:-1:-1;;;27776:83:0;;10538:2:1;27776:83:0::1;::::0;::::1;10520:21:1::0;10577:2;10557:18;;;10550:30;10616:34;10596:18;;;10589:62;-1:-1:-1;;;10667:18:1;;;10660:36;10713:19;;27776:83:0::1;10336:402:1::0;27776:83:0::1;27870:17;:47:::0;;-1:-1:-1;;;;;;27870:47:0::1;-1:-1:-1::0;;;;;27870:47:0;::::1;::::0;;::::1;::::0;;;27933:44:::1;::::0;::::1;::::0;-1:-1:-1;;27933:44:0::1;27688:297:::0;:::o;28715:281::-;28797:24;;28775:7;;28797:24;;28794:195;;;28873:25;;28844:26;;:54;;;;:::i;:::-;28837:61;;28715:281;:::o;28794:195::-;-1:-1:-1;28947:1:0;;28715:281::o;8196:150::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;8289:6:::1;::::0;8268:40:::1;::::0;8305:1:::1;::::0;-1:-1:-1;;;;;8289:6:0::1;::::0;8268:40:::1;::::0;8305:1;;8268:40:::1;8319:6;:19:::0;;-1:-1:-1;;;;;;8319:19:0::1;::::0;;8196:150::o;15230:154::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;15284:14:::1;:22:::0;;-1:-1:-1;;15284:22:0;;::::1;::::0;;;15317:20:::1;:28:::0;;;;::::1;::::0;;15361:15:::1;::::0;::::1;::::0;15301:5:::1;::::0;15361:15:::1;15230:154::o:0;17683:260::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;17779:4:::1;17775:104;;17817:6;-1:-1:-1::0;;;;;17807:16:0::1;:6;-1:-1:-1::0;;;;;17807:16:0::1;::::0;17799:68:::1;;;::::0;-1:-1:-1;;;17799:68:0;;10945:2:1;17799:68:0::1;::::0;::::1;10927:21:1::0;10984:2;10964:18;;;10957:30;11023:34;11003:18;;;10996:62;-1:-1:-1;;;11074:18:1;;;11067:37;11121:19;;17799:68:0::1;10743:403:1::0;17799:68:0::1;-1:-1:-1::0;;;;;17889:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;17889:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17683:260::o;29004:487::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;29092:29:::1;:27;:29::i;:::-;29073:15;:48;;:85;;;;;29157:1;29125:29;:27;:29::i;:::-;:33;29073:85;29065:120;;;::::0;-1:-1:-1;;;29065:120:0;;11353:2:1;29065:120:0::1;::::0;::::1;11335:21:1::0;11392:2;11372:18;;;11365:30;-1:-1:-1;;;11411:18:1;;;11404:52;11473:18;;29065:120:0::1;11151:346:1::0;29065:120:0::1;29225:1;29196:26;:30:::0;;;29237:24:::1;:32:::0;;-1:-1:-1;;29237:32:0::1;::::0;;29357:16:::1;::::0;29306:48:::1;::::0;-1:-1:-1;;;29306:48:0;;29348:4:::1;29306:48;::::0;::::1;962:51:1::0;29376:3:0::1;::::0;29357:16;29321:6:::1;-1:-1:-1::0;;;;;29306:33:0::1;::::0;::::1;::::0;935:18:1;;29306:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;;;:::i;:::-;:73;;;;:::i;:::-;29419:1;29400:16;:20:::0;29433:50:::1;::::0;-1:-1:-1;;;29433:50:0;;29457:10:::1;29433:50;::::0;::::1;11865:51:1::0;11932:18;;;11925:34;;;29282:97:0;;-1:-1:-1;29440:6:0::1;-1:-1:-1::0;;;;;29433:23:0::1;::::0;::::1;::::0;11838:18:1;;29433:50:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29054:437;29004:487::o:0;18454:381::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;18573:16:::1;:33:::0;;;18617:15:::1;:31:::0;;;18659:11:::1;:23:::0;;;18673:9;18708:34:::1;18635:13:::0;18592:14;18708:34:::1;:::i;:::-;:48;;;;:::i;:::-;18693:12;:63:::0;;;18791:2:::1;-1:-1:-1::0;18775:18:0::1;18767:60;;;::::0;-1:-1:-1;;;18767:60:0;;12422:2:1;18767:60:0::1;::::0;::::1;12404:21:1::0;12461:2;12441:18;;;12434:30;12500:31;12480:18;;;12473:59;12549:18;;18767:60:0::1;12220:353:1::0;26404:456:0;8109:6;;26491:10;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26522:20:0;::::1;26514:59;;;::::0;-1:-1:-1;;;26514:59:0;;12780:2:1;26514:59:0::1;::::0;::::1;12762:21:1::0;12819:2;12799:18;;;12792:30;12858:28;12838:18;;;12831:56;12904:18;;26514:59:0::1;12578:350:1::0;26514:59:0::1;26610:4;-1:-1:-1::0;;;;;26592:23:0;::::1;::::0;26584:64:::1;;;::::0;-1:-1:-1;;;26584:64:0;;13135:2:1;26584:64:0::1;::::0;::::1;13117:21:1::0;13174:2;13154:18;;;13147:30;13213;13193:18;;;13186:58;13261:18;;26584:64:0::1;12933:352:1::0;26584:64:0::1;26686:39;::::0;-1:-1:-1;;;26686:39:0;;26719:4:::1;26686:39;::::0;::::1;962:51:1::0;26659:24:0::1;::::0;-1:-1:-1;;;;;26686:24:0;::::1;::::0;::::1;::::0;935:18:1;;26686:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26744:46;::::0;-1:-1:-1;;;26744:46:0;;-1:-1:-1;;;;;11883:32:1;;;26744:46:0::1;::::0;::::1;11865:51:1::0;11932:18;;;11925:34;;;26659:66:0;;-1:-1:-1;26744:23:0;;::::1;::::0;::::1;::::0;11838:18:1;;26744:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26806;::::0;;-1:-1:-1;;;;;11883:32:1;;11865:51;;11947:2;11932:18;;11925:34;;;26736:54:0;;-1:-1:-1;26806:46:0::1;::::0;11838:18:1;26806:46:0::1;;;;;;;26503:357;26404:456:::0;;;;:::o;14925:249::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;14989:13:::1;::::0;::::1;::::0;::::1;;;14988:14;14980:50;;;::::0;-1:-1:-1;;;14980:50:0;;13492:2:1;14980:50:0::1;::::0;::::1;13474:21:1::0;13531:2;13511:18;;;13504:30;13570:25;13550:18;;;13543:53;13613:18;;14980:50:0::1;13290:347:1::0;14980:50:0::1;15041:13;:20:::0;;-1:-1:-1;;15072:18:0;;;;;15122:12:::1;15101:18;:33:::0;15150:16:::1;::::0;::::1;::::0;-1:-1:-1;;15150:16:0::1;14925:249::o:0;4223:104::-;4279:13;4312:7;4305:14;;;;;:::i;17951:239::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;18060:6:::1;-1:-1:-1::0;;;;;18052:14:0::1;:4;-1:-1:-1::0;;;;;18052:14:0::1;::::0;18044:84:::1;;;::::0;-1:-1:-1;;;18044:84:0;;13844:2:1;18044:84:0::1;::::0;::::1;13826:21:1::0;13883:2;13863:18;;;13856:30;13922:34;13902:18;;;13895:62;13993:27;13973:18;;;13966:55;14038:19;;18044:84:0::1;13642:421:1::0;18044:84:0::1;18141:41;18170:4;18176:5;18141:28;:41::i;5929:413::-:0;344:10;6022:4;6066:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6066:34:0;;;;;;;;;;6119:35;;;;6111:85;;;;-1:-1:-1;;;6111:85:0;;14270:2:1;6111:85:0;;;14252:21:1;14309:2;14289:18;;;14282:30;14348:34;14328:18;;;14321:62;-1:-1:-1;;;14399:18:1;;;14392:35;14444:19;;6111:85:0;14068:401:1;6111:85:0;6232:67;344:10;6255:7;6283:15;6264:16;:34;6232:8;:67::i;:::-;-1:-1:-1;6330:4:0;;5929:413;-1:-1:-1;;;5929:413:0:o;4687:175::-;4773:4;4790:42;344:10;4814:9;4825:6;4790:9;:42::i;28258:449::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;28350:24:::1;::::0;::::1;;28349:25;28341:87;;;::::0;-1:-1:-1;;;28341:87:0;;14676:2:1;28341:87:0::1;::::0;::::1;14658:21:1::0;14715:2;14695:18;;;14688:30;14754:34;14734:18;;;14727:62;-1:-1:-1;;;14805:18:1;;;14798:47;14862:19;;28341:87:0::1;14474:413:1::0;28341:87:0::1;28465:3;28447:14;:21;;:43;;;;;28489:1;28472:14;:18;28447:43;28439:82;;;::::0;-1:-1:-1;;;28439:82:0;;15094:2:1;28439:82:0::1;::::0;::::1;15076:21:1::0;15133:2;15113:18;;;15106:30;15172:28;15152:18;;;15145:56;15218:18;;28439:82:0::1;14892:350:1::0;28439:82:0::1;28561:15;28532:26;:44:::0;28587:24:::1;:31:::0;;-1:-1:-1;;28587:31:0::1;28614:4;28587:31;::::0;;28629:16:::1;:33:::0;;;28678:21:::1;::::0;::::1;::::0;28587:24:::1;::::0;28678:21:::1;28258:449:::0;:::o;19241:182::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19326:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;19326:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;19381:34;;1601:41:1;;;19381:34:0::1;::::0;1574:18:1;19381:34:0::1;;;;;;;19241:182:::0;;:::o;18843:390::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;18963:17:::1;:34:::0;;;19008:16:::1;:32:::0;;;19051:12:::1;:24:::0;;;19066:9;19102:36:::1;19027:13:::0;18983:14;19102:36:::1;:::i;:::-;:51;;;;:::i;:::-;19086:13;:67:::0;;;19189:2:::1;-1:-1:-1::0;19172:19:0::1;19164:61;;;::::0;-1:-1:-1;;;19164:61:0;;15449:2:1;19164:61:0::1;::::0;::::1;15431:21:1::0;15488:2;15468:18;;;15461:30;15527:31;15507:18;;;15500:59;15576:18;;19164:61:0::1;15247:353:1::0;16127:284:0;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;16249:4:::1;16243;16223:13;4524:12:::0;;;4436:108;16223:13:::1;:17;::::0;16239:1:::1;16223:17;:::i;:::-;:24;;;;:::i;:::-;16222:31;;;;:::i;:::-;16212:6;:41;;16204:98;;;::::0;-1:-1:-1;;;16204:98:0;;15807:2:1;16204:98:0::1;::::0;::::1;15789:21:1::0;15846:2;15826:18;;;15819:30;15885:34;15865:18;;;15858:62;-1:-1:-1;;;15936:18:1;;;15929:42;15988:19;;16204:98:0::1;15605:408:1::0;16204:98:0::1;16331:17;:6:::0;16341::::1;16331:17;:::i;:::-;16313:15;:35:::0;;;16364:39:::1;::::0;160:25:1;;;16364:39:0::1;::::0;148:2:1;133:18;16364:39:0::1;14:177:1::0;29499:105:0;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;29564:24:::1;:32:::0;;-1:-1:-1;;29564:32:0::1;::::0;;29499:105::o;16481:346::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;16604:6:::1;16584:13;4524:12:::0;;;4436:108;16584:13:::1;:17;::::0;16600:1:::1;16584:17;:::i;:::-;:26;;;;:::i;:::-;16571:9;:39;;16563:105;;;::::0;-1:-1:-1;;;16563:105:0;;16220:2:1;16563:105:0::1;::::0;::::1;16202:21:1::0;16259:2;16239:18;;;16232:30;16298:34;16278:18;;;16271:62;-1:-1:-1;;;16349:18:1;;;16342:51;16410:19;;16563:105:0::1;16018:417:1::0;16563:105:0::1;16719:4;16699:13;4524:12:::0;;;4436:108;16699:13:::1;:17;::::0;16715:1:::1;16699:17;:::i;:::-;:24;;;;:::i;:::-;16686:9;:37;;16678:102;;;::::0;-1:-1:-1;;;16678:102:0;;16642:2:1;16678:102:0::1;::::0;::::1;16624:21:1::0;16681:2;16661:18;;;16654:30;16720:34;16700:18;;;16693:62;-1:-1:-1;;;16771:18:1;;;16764:50;16831:19;;16678:102:0::1;16440:416:1::0;16678:102:0::1;16790:18;:30:::0;16481:346::o;15845:274::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;15965:4:::1;15959;15939:13;4524:12:::0;;;4436:108;15939:13:::1;:17;::::0;15955:1:::1;15939:17;:::i;:::-;:24;;;;:::i;:::-;15938:31;;;;:::i;:::-;15928:6;:41;;15920:96;;;::::0;-1:-1:-1;;;15920:96:0;;17063:2:1;15920:96:0::1;::::0;::::1;17045:21:1::0;17102:2;17082:18;;;17075:30;17141:34;17121:18;;;17114:62;-1:-1:-1;;;17192:18:1;;;17185:40;17242:19;;15920:96:0::1;16861:406:1::0;15920:96:0::1;16043:17;:6:::0;16053::::1;16043:17;:::i;:::-;16027:13;:33:::0;;;16076:35:::1;::::0;160:25:1;;;16076:35:0::1;::::0;148:2:1;133:18;16076:35:0::1;14:177:1::0;15454:98:0;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;15516:20:::1;:28:::0;;-1:-1:-1;;15516:28:0::1;::::0;;15454:98::o;8354:244::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8443:22:0;::::1;8435:73;;;::::0;-1:-1:-1;;;8435:73:0;;17474:2:1;8435:73:0::1;::::0;::::1;17456:21:1::0;17513:2;17493:18;;;17486:30;17552:34;17532:18;;;17525:62;-1:-1:-1;;;17603:18:1;;;17596:36;17649:19;;8435:73:0::1;17272:402:1::0;8435:73:0::1;8545:6;::::0;8524:38:::1;::::0;-1:-1:-1;;;;;8524:38:0;;::::1;::::0;8545:6:::1;::::0;8524:38:::1;::::0;8545:6:::1;::::0;8524:38:::1;8573:6;:17:::0;;-1:-1:-1;;;;;;8573:17:0::1;-1:-1:-1::0;;;;;8573:17:0;;;::::1;::::0;;;::::1;::::0;;8354:244::o;27520:160::-;8109:6;;-1:-1:-1;;;;;8109:6:0;344:10;8109:22;8101:67;;;;-1:-1:-1;;;8101:67:0;;;;;;;:::i;:::-;27614:58:::1;::::0;27578:12:::1;::::0;27622:10:::1;::::0;27646:21:::1;::::0;27578:12;27614:58;27578:12;27614:58;27646:21;27622:10;27614:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;27520:160:0:o;7271:380::-;-1:-1:-1;;;;;7407:19:0;;7399:68;;;;-1:-1:-1;;;7399:68:0;;18091:2:1;7399:68:0;;;18073:21:1;18130:2;18110:18;;;18103:30;18169:34;18149:18;;;18142:62;-1:-1:-1;;;18220:18:1;;;18213:34;18264:19;;7399:68:0;17889:400:1;7399:68:0;-1:-1:-1;;;;;7486:21:0;;7478:68;;;;-1:-1:-1;;;7478:68:0;;18496:2:1;7478:68:0;;;18478:21:1;18535:2;18515:18;;;18508:30;18574:34;18554:18;;;18547:62;-1:-1:-1;;;18625:18:1;;;18618:32;18667:19;;7478:68:0;18294:398:1;7478:68:0;-1:-1:-1;;;;;7559:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7611:32;;160:25:1;;;7611:32:0;;133:18:1;7611:32:0;;;;;;;7271:380;;;:::o;19431:4346::-;-1:-1:-1;;;;;19531:18:0;;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19610:16:0;;19602:64;;;;-1:-1:-1;;;19602:64:0;;;;;;;:::i;:::-;19694:1;19685:6;:10;19677:52;;;;-1:-1:-1;;;19677:52:0;;19709:2:1;19677:52:0;;;19691:21:1;19748:2;19728:18;;;19721:30;19787:31;19767:18;;;19760:59;19836:18;;19677:52:0;19507:353:1;19677:52:0;19763:14;;;;19760:1860;;;8047:6;;-1:-1:-1;;;;;19797:15:0;;;8047:6;;19797:15;;;;:32;;-1:-1:-1;8047:6:0;;-1:-1:-1;;;;;19816:13:0;;;8047:6;;19816:13;;19797:32;:52;;;;-1:-1:-1;;;;;;19833:16:0;;;;19797:52;:77;;;;-1:-1:-1;;;;;;19853:21:0;;19867:6;19853:21;;19797:77;19793:1816;;;19898:13;;;;;;;19894:172;;-1:-1:-1;;;;;19943:37:0;;;;;;:31;:37;;;;;;;;;:76;;-1:-1:-1;;;;;;19984:35:0;;;;;;:31;:35;;;;;;;;19943:76;19935:111;;;;-1:-1:-1;;;19935:111:0;;20067:2:1;19935:111:0;;;20049:21:1;20106:2;20086:18;;;20079:30;-1:-1:-1;;;20125:18:1;;;20118:52;20187:18;;19935:111:0;19865:346:1;19935:111:0;20240:20;;;;20236:506;;;20302:9;-1:-1:-1;;;;;20288:24:0;:2;-1:-1:-1;;;;;20288:24:0;;;:49;;;;;20330:6;-1:-1:-1;;;;;20316:21:0;:2;-1:-1:-1;;;;;20316:21:0;;;20288:49;20284:439;;;20415:16;20430:1;20415:12;:16;:::i;:::-;20402:9;20373:39;;;;:28;:39;;;;;;:58;:113;;;;-1:-1:-1;20470:16:0;20485:1;20470:12;:16;:::i;:::-;-1:-1:-1;;;;;20435:32:0;;;;;;:28;:32;;;;;;:51;20373:113;20365:179;;;;-1:-1:-1;;;20365:179:0;;20548:2:1;20365:179:0;;;20530:21:1;20587:2;20567:18;;;20560:30;20626:34;20606:18;;;20599:62;-1:-1:-1;;;20677:18:1;;;20670:51;20738:19;;20365:179:0;20346:417:1;20365:179:0;20600:9;20571:39;;;;:28;:39;;;;;;20613:12;20571:54;;;;-1:-1:-1;;;;;20652:32:0;;;;;;:47;20284:439;-1:-1:-1;;;;;20811:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;20847:35:0;;;;;;:31;:35;;;;;;;;20846:36;20811:71;20807:787;;;20929:12;;20919:6;:22;;20911:75;;;;-1:-1:-1;;;20911:75:0;;20970:2:1;20911:75:0;;;20952:21:1;21009:2;20989:18;;;20982:30;21048:34;21028:18;;;21021:62;-1:-1:-1;;;21099:18:1;;;21092:38;21147:19;;20911:75:0;20768:404:1;20911:75:0;21047:15;;-1:-1:-1;;;;;4653:18:0;;4626:7;4653:18;;;;;;;;;;;21021:22;;:6;:22;:::i;:::-;:41;;21013:78;;;;-1:-1:-1;;;21013:78:0;;21379:2:1;21013:78:0;;;21361:21:1;21418:2;21398:18;;;21391:30;-1:-1:-1;;;21437:18:1;;;21430:54;21501:18;;21013:78:0;21177:348:1;21013:78:0;20807:787;;;-1:-1:-1;;;;;21168:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;21202:37:0;;;;;;:31;:37;;;;;;;;21201:38;21168:71;21164:430;;;21286:13;;21276:6;:23;;21268:78;;;;-1:-1:-1;;;21268:78:0;;21732:2:1;21268:78:0;;;21714:21:1;21771:2;21751:18;;;21744:30;21810:34;21790:18;;;21783:62;-1:-1:-1;;;21861:18:1;;;21854:40;21911:19;;21268:78:0;21530:406:1;21164:430:0;-1:-1:-1;;;;;21395:35:0;;;;;;:31;:35;;;;;;;;21394:36;:78;;;;-1:-1:-1;;;;;;21435:37:0;;;;;;:31;:37;;;;;;;;21434:38;21394:78;21390:204;;;21530:15;;-1:-1:-1;;;;;4653:18:0;;4626:7;4653:18;;;;;;;;;;;21504:22;;:6;:22;:::i;:::-;:41;;21496:78;;;;-1:-1:-1;;;21496:78:0;;21379:2:1;21496:78:0;;;21361:21:1;21418:2;21398:18;;;21391:30;-1:-1:-1;;;21437:18:1;;;21430:54;21501:18;;21496:78:0;21177:348:1;21496:78:0;21681:4;21632:28;4653:18;;;;;;;;;;;21747;;21723:42;;;;;;;21781:22;;-1:-1:-1;21792:11:0;;;;;;;21781:22;:35;;;;-1:-1:-1;21808:8:0;;;;21807:9;21781:35;:71;;;;-1:-1:-1;;;;;;21821:31:0;;;;;;:25;:31;;;;;;;;21820:32;21781:71;:101;;;;-1:-1:-1;;;;;;21857:25:0;;;;;;:19;:25;;;;;;;;21856:26;21781:101;:129;;;;-1:-1:-1;;;;;;21887:23:0;;;;;;:19;:23;;;;;;;;21886:24;21781:129;21778:236;;;21927:8;:15;;-1:-1:-1;;21927:15:0;21938:4;21927:15;;;21959:10;:8;:10::i;:::-;21986:8;:16;;-1:-1:-1;;21986:16:0;;;21778:236;-1:-1:-1;;;;;22144:25:0;;22026:12;22144:25;;;:19;:25;;;;;;22041:4;;22144:25;;;:52;;-1:-1:-1;;;;;;22173:23:0;;;;;;:19;:23;;;;;;;;22144:52;22141:99;;;-1:-1:-1;22223:5:0;22141:99;22260:12;22287:21;22400:7;22397:1327;;;22559:12;22533:18;;22554:1;22533:22;;;;:::i;:::-;:38;;:73;;;;-1:-1:-1;;;;;;22575:31:0;;;;;;:25;:31;;;;;;;;22533:73;22530:1009;;;22656:3;22642:11;:6;22651:2;22642:11;:::i;:::-;:17;;;;:::i;:::-;22700;;22626:33;;-1:-1:-1;22678:55:0;;22694:4;;-1:-1:-1;;;;;22700:17:0;22626:33;22678:15;:55::i;:::-;22530:1009;;;-1:-1:-1;;;;;22796:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;22845:1;22829:13;;:17;22796:50;22792:747;;;22897:3;22882:13;;22873:6;:22;;;;:::i;:::-;:27;;;;:::i;:::-;22866:34;;22967:13;;22948:16;;22941:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;22919:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;23049:13:0;;23029:17;;23022:24;;:4;:24;:::i;:::-;:40;;;;:::i;:::-;22999:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;23121:13:0;;23106:12;;23099:19;;:4;:19;:::i;:::-;:35;;;;:::i;:::-;23081:14;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;22792:747:0;;-1:-1:-1;22792:747:0;;-1:-1:-1;;;;;23195:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;23245:1;23230:12;;:16;23195:51;23192:347;;;23295:3;23280:12;;23271:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;23264:34;;23361:12;;23343:15;;23336:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;23314:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;23441:12:0;;23422:16;;23415:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;23392:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;23511:12:0;;23497:11;;23490:18;;:4;:18;:::i;:::-;:33;;;;:::i;:::-;23472:14;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;23192:347:0;23570:8;;23567:93;;23602:42;23618:4;23632;23639;23602:15;:42::i;:::-;23692:20;23699:13;23692:4;:20;:::i;:::-;23682:30;;;;:::i;:::-;;;22397:1327;23736:33;23752:4;23758:2;23762:6;23736:15;:33::i;:::-;19510:4267;;;;;19431:4346;;;:::o;18198:248::-;-1:-1:-1;;;;;18281:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;18281:39:0;;;;;;;18341;18281:31;:39;18341:26;:39::i;:::-;18398:40;;;;;;-1:-1:-1;;;;;18398:40:0;;;;;;;;18198:248;;:::o;24805:1591::-;24888:4;24844:23;4653:18;;;;;;;;;;;24844:50;;24905:25;24976:14;;24954:19;;24933:18;;:40;;;;:::i;:::-;:57;;;;:::i;:::-;24905:85;-1:-1:-1;25014:20:0;;;:46;;-1:-1:-1;25038:22:0;;25014:46;25011:60;;;25063:7;;24805:1591::o;25011:60::-;25104:18;;;:23;;;:::i;:::-;25086:15;:41;25083:113;;;25161:18;;;:23;;;:::i;:::-;25143:41;;25083:113;25265:23;25350:1;25330:17;25309:18;;25291:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;25265:86;-1:-1:-1;25372:52:0;25390:33;25265:86;25390:15;:33;:::i;:::-;25372:17;:52::i;:::-;25438:44;;-1:-1:-1;;;25438:44:0;;11145:42;25438:44;;;962:51:1;25438:12:0;-1:-1:-1;;;;;25438:29:0;;;;935:18:1;;25438:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25525:29:0;;-1:-1:-1;;;25525:29:0;;25548:4;25525:29;;;962:51:1;25503:19:0;;-1:-1:-1;11145:42:0;;-1:-1:-1;25525:14:0;;935:18:1;;25525:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25503:51;;25565:24;25592:11;25565:38;;25616:25;25721:1;25702:18;;:20;;;;:::i;:::-;25681:42;;:17;:42;:::i;:::-;25658:19;;25644:33;;:11;:33;:::i;:::-;:80;;;;:::i;:::-;25616:108;;25735:20;25830:1;25811:18;;:20;;;;:::i;:::-;25790:42;;:17;:42;:::i;:::-;25772:14;;25758:28;;:11;:28;:::i;:::-;:75;;;;:::i;:::-;25735:98;-1:-1:-1;25866:32:0;25735:98;25866:17;:32;:::i;:::-;25846:52;;;;:::i;:::-;25944:1;25923:18;:22;;;25956:19;:23;;;25990:14;:18;25846:52;-1:-1:-1;26032:19:0;;;;;:43;;;26074:1;26055:16;:20;26032:43;26029:121;;;26091:47;26104:15;26121:16;26091:12;:47::i;:::-;26165:16;;26162:88;;26211:12;;26197:41;;-1:-1:-1;;;26197:41:0;;-1:-1:-1;;;;;26211:12:0;;;26197:41;;;11865:51:1;11932:18;;;11925:34;;;11145:42:0;;26197:13;;11838:18:1;;26197:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26162:88;26265:29;;-1:-1:-1;;;26265:29:0;;26288:4;26265:29;;;962:51:1;26297:1:0;;11145:42;;26265:14;;935:18:1;;26265:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;26262:127;;;26328:17;;26347:29;;-1:-1:-1;;;26347:29:0;;26370:4;26347:29;;;962:51:1;11145:42:0;;26314:13;;-1:-1:-1;;;;;26328:17:0;;;;11145:42;;26347:14;;935:18:1;;26347:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26314:63;;-1:-1:-1;;;;;;26314:63:0;;;;;;;-1:-1:-1;;;;;11883:32:1;;;26314:63:0;;;11865:51:1;11932:18;;;11925:34;11838:18;;26314:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26262:127::-;24833:1563;;;;;;;24805:1591::o;6350:614::-;-1:-1:-1;;;;;6490:20:0;;6482:70;;;;-1:-1:-1;;;6482:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6571:23:0;;6563:71;;;;-1:-1:-1;;;6563:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6671:17:0;;6647:21;6671:17;;;;;;;;;;;6707:23;;;;6699:74;;;;-1:-1:-1;;;6699:74:0;;22143:2:1;6699:74:0;;;22125:21:1;22182:2;22162:18;;;22155:30;22221:34;22201:18;;;22194:62;-1:-1:-1;;;22272:18:1;;;22265:36;22318:19;;6699:74:0;21941:402:1;6699:74:0;-1:-1:-1;;;;;6809:17:0;;;:9;:17;;;;;;;;;;;6829:22;;;6809:42;;6873:20;;;;;;;;:30;;6845:6;;6809:9;6873:30;;6845:6;;6873:30;:::i;:::-;;;;;;;;6938:9;-1:-1:-1;;;;;6921:35:0;6930:6;-1:-1:-1;;;;;6921:35:0;;6949:6;6921:35;;;;160:25:1;;148:2;133:18;;14:177;6921:35:0;;;;;;;;6471:493;6350:614;;;:::o;16839:207::-;-1:-1:-1;;;;;16927:39:0;;;;;;:31;:39;;;;;;;;;:52;;-1:-1:-1;;16927:52:0;;;;;;;;;;16995:43;;22516:51:1;;;22583:18;;;22576:50;16995:43:0;;22489:18:1;16995:43:0;;;;;;;16839:207;;:::o;26868:582::-;27021:16;;;27035:1;27021:16;;;;;;;;26997:21;;27021:16;;;;;;;;;;-1:-1:-1;27021:16:0;26997:40;;27066:4;27048;27053:1;27048:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27048:23:0;;;-1:-1:-1;;;;;27048:23:0;;;;;11145:42;27082:4;27087:1;27082:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27082:23:0;;;-1:-1:-1;;;;;27082:23:0;;;;;27118:56;27135:4;27150:9;27162:11;27118:8;:56::i;:::-;27213:229;;-1:-1:-1;;;27213:229:0;;-1:-1:-1;;;;;27213:9:0;:63;;;;:229;;27291:11;;27317:1;;27361:4;;27388:12;;27416:15;;27213:229;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26924:526;26868:582;:::o;24369:428::-;24518:56;24535:4;24550:9;24562:11;24518:8;:56::i;:::-;24585:44;;-1:-1:-1;;;24585:44:0;;-1:-1:-1;;;;;24606:9:0;11883:32:1;24585:44:0;;;11865:51:1;11932:18;;;11925:34;;;11145:42:0;;24585:12;;11838:18:1;;24585:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;24672:117:0;;-1:-1:-1;;;24672:117:0;;24703:4;24672:117;;;24019:34:1;;;11145:42:0;24069:18:1;;;24062:43;24121:18;;;24114:34;;;24164:18;;;24157:34;;;24750:1:0;24207:19:1;;;24200:35;;;24251:19;;;24244:35;24295:19;;;24288:44;24773:15:0;24348:19:1;;;24341:35;24672:9:0;-1:-1:-1;;;;;24672:22:0;;;;23953:19:1;;24672:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;24369:428;;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;1024:173::-;1092:20;;-1:-1:-1;;;;;1141:31:1;;1131:42;;1121:70;;1187:1;1184;1177:12;1121:70;1024:173;;;:::o;1202:254::-;1270:6;1278;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;:::-;1360:39;1446:2;1431:18;;;;1418:32;;-1:-1:-1;;;1202:254:1:o;1653:186::-;1712:6;1765:2;1753:9;1744:7;1740:23;1736:32;1733:52;;;1781:1;1778;1771:12;1733:52;1804:29;1823:9;1804:29;:::i;:::-;1794:39;1653:186;-1:-1:-1;;;1653:186:1:o;2072:127::-;2133:10;2128:3;2124:20;2121:1;2114:31;2164:4;2161:1;2154:15;2188:4;2185:1;2178:15;2204:275;2275:2;2269:9;2340:2;2321:13;;-1:-1:-1;;2317:27:1;2305:40;;2375:18;2360:34;;2396:22;;;2357:62;2354:88;;;2422:18;;:::i;:::-;2458:2;2451:22;2204:275;;-1:-1:-1;2204:275:1:o;2484:183::-;2544:4;2577:18;2569:6;2566:30;2563:56;;;2599:18;;:::i;:::-;-1:-1:-1;2644:1:1;2640:14;2656:4;2636:25;;2484:183::o;2672:662::-;2726:5;2779:3;2772:4;2764:6;2760:17;2756:27;2746:55;;2797:1;2794;2787:12;2746:55;2833:6;2820:20;2859:4;2883:60;2899:43;2939:2;2899:43;:::i;:::-;2883:60;:::i;:::-;2977:15;;;3063:1;3059:10;;;;3047:23;;3043:32;;;3008:12;;;;3087:15;;;3084:35;;;3115:1;3112;3105:12;3084:35;3151:2;3143:6;3139:15;3163:142;3179:6;3174:3;3171:15;3163:142;;;3245:17;;3233:30;;3283:12;;;;3196;;3163:142;;;-1:-1:-1;3323:5:1;2672:662;-1:-1:-1;;;;;;2672:662:1:o;3339:1146::-;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3574:9;3561:23;3603:18;3644:2;3636:6;3633:14;3630:34;;;3660:1;3657;3650:12;3630:34;3698:6;3687:9;3683:22;3673:32;;3743:7;3736:4;3732:2;3728:13;3724:27;3714:55;;3765:1;3762;3755:12;3714:55;3801:2;3788:16;3823:4;3847:60;3863:43;3903:2;3863:43;:::i;3847:60::-;3941:15;;;4023:1;4019:10;;;;4011:19;;4007:28;;;3972:12;;;;4047:19;;;4044:39;;;4079:1;4076;4069:12;4044:39;4103:11;;;;4123:148;4139:6;4134:3;4131:15;4123:148;;;4205:23;4224:3;4205:23;:::i;:::-;4193:36;;4156:12;;;;4249;;;;4123:148;;;4290:5;-1:-1:-1;;4333:18:1;;4320:32;;-1:-1:-1;;4364:16:1;;;4361:36;;;4393:1;4390;4383:12;4361:36;;4416:63;4471:7;4460:8;4449:9;4445:24;4416:63;:::i;:::-;4406:73;;;3339:1146;;;;;:::o;4490:328::-;4567:6;4575;4583;4636:2;4624:9;4615:7;4611:23;4607:32;4604:52;;;4652:1;4649;4642:12;4604:52;4675:29;4694:9;4675:29;:::i;:::-;4665:39;;4723:38;4757:2;4746:9;4742:18;4723:38;:::i;:::-;4713:48;;4808:2;4797:9;4793:18;4780:32;4770:42;;4490:328;;;;;:::o;4823:180::-;4882:6;4935:2;4923:9;4914:7;4910:23;4906:32;4903:52;;;4951:1;4948;4941:12;4903:52;-1:-1:-1;4974:23:1;;4823:180;-1:-1:-1;4823:180:1:o;5405:118::-;5491:5;5484:13;5477:21;5470:5;5467:32;5457:60;;5513:1;5510;5503:12;5457:60;5405:118;:::o;5528:315::-;5593:6;5601;5654:2;5642:9;5633:7;5629:23;5625:32;5622:52;;;5670:1;5667;5660:12;5622:52;5693:29;5712:9;5693:29;:::i;:::-;5683:39;;5772:2;5761:9;5757:18;5744:32;5785:28;5807:5;5785:28;:::i;:::-;5832:5;5822:15;;;5528:315;;;;;:::o;5848:316::-;5925:6;5933;5941;5994:2;5982:9;5973:7;5969:23;5965:32;5962:52;;;6010:1;6007;6000:12;5962:52;-1:-1:-1;;6033:23:1;;;6103:2;6088:18;;6075:32;;-1:-1:-1;6154:2:1;6139:18;;;6126:32;;5848:316;-1:-1:-1;5848:316:1:o;6169:260::-;6237:6;6245;6298:2;6286:9;6277:7;6273:23;6269:32;6266:52;;;6314:1;6311;6304:12;6266:52;6337:29;6356:9;6337:29;:::i;:::-;6327:39;;6385:38;6419:2;6408:9;6404:18;6385:38;:::i;:::-;6375:48;;6169:260;;;;;:::o;6655:380::-;6734:1;6730:12;;;;6777;;;6798:61;;6852:4;6844:6;6840:17;6830:27;;6798:61;6905:2;6897:6;6894:14;6874:18;6871:38;6868:161;;6951:10;6946:3;6942:20;6939:1;6932:31;6986:4;6983:1;6976:15;7014:4;7011:1;7004:15;6868:161;;6655:380;;;:::o;7040:356::-;7242:2;7224:21;;;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;7387:2;7372:18;;7040:356::o;8183:127::-;8244:10;8239:3;8235:20;8232:1;8225:31;8275:4;8272:1;8265:15;8299:4;8296:1;8289:15;8315:127;8376:10;8371:3;8367:20;8364:1;8357:31;8407:4;8404:1;8397:15;8431:4;8428:1;8421:15;8447:168;8487:7;8553:1;8549;8545:6;8541:14;8538:1;8535:21;8530:1;8523:9;8516:17;8512:45;8509:71;;;8560:18;;:::i;:::-;-1:-1:-1;8600:9:1;;8447:168::o;8620:135::-;8659:3;8680:17;;;8677:43;;8700:18;;:::i;:::-;-1:-1:-1;8747:1:1;8736:13;;8620:135::o;9169:217::-;9209:1;9235;9225:132;;9279:10;9274:3;9270:20;9267:1;9260:31;9314:4;9311:1;9304:15;9342:4;9339:1;9332:15;9225:132;-1:-1:-1;9371:9:1;;9169:217::o;10203:128::-;10243:3;10274:1;10270:6;10267:1;10264:13;10261:39;;;10280:18;;:::i;:::-;-1:-1:-1;10316:9:1;;10203:128::o;11502:184::-;11572:6;11625:2;11613:9;11604:7;11600:23;11596:32;11593:52;;;11641:1;11638;11631:12;11593:52;-1:-1:-1;11664:16:1;;11502:184;-1:-1:-1;11502:184:1:o;11970:245::-;12037:6;12090:2;12078:9;12069:7;12065:23;12061:32;12058:52;;;12106:1;12103;12096:12;12058:52;12138:9;12132:16;12157:28;12179:5;12157:28;:::i;18697:401::-;18899:2;18881:21;;;18938:2;18918:18;;;18911:30;18977:34;18972:2;18957:18;;18950:62;-1:-1:-1;;;19043:2:1;19028:18;;19021:35;19088:3;19073:19;;18697:401::o;19103:399::-;19305:2;19287:21;;;19344:2;19324:18;;;19317:30;19383:34;19378:2;19363:18;;19356:62;-1:-1:-1;;;19449:2:1;19434:18;;19427:33;19492:3;19477:19;;19103:399::o;20216:125::-;20256:4;20284:1;20281;20278:8;20275:34;;;20289:18;;:::i;:::-;-1:-1:-1;20326:9:1;;20216:125::o;22637:980::-;22899:4;22947:3;22936:9;22932:19;22978:6;22967:9;22960:25;23004:2;23042:6;23037:2;23026:9;23022:18;23015:34;23085:3;23080:2;23069:9;23065:18;23058:31;23109:6;23144;23138:13;23175:6;23167;23160:22;23213:3;23202:9;23198:19;23191:26;;23252:2;23244:6;23240:15;23226:29;;23273:1;23283:195;23297:6;23294:1;23291:13;23283:195;;;23362:13;;-1:-1:-1;;;;;23358:39:1;23346:52;;23453:15;;;;23418:12;;;;23394:1;23312:9;23283:195;;;-1:-1:-1;;;;;;;23534:32:1;;;;23529:2;23514:18;;23507:60;-1:-1:-1;;;23598:3:1;23583:19;23576:35;23495:3;22637:980;-1:-1:-1;;;22637:980:1:o;24387:306::-;24475:6;24483;24491;24544:2;24532:9;24523:7;24519:23;24515:32;24512:52;;;24560:1;24557;24550:12;24512:52;24589:9;24583:16;24573:26;;24639:2;24628:9;24624:18;24618:25;24608:35;;24683:2;24672:9;24668:18;24662:25;24652:35;;24387:306;;;;;:::o
Swarm Source
ipfs://24d2c4d3c9a6078bd9e427df64ac231f8edee3c83d286d77c0aa7ca1a54277e3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.