ERC-20
Overview
Max Total Supply
1,322,239 EBULL
Holders
114
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
44.737899596 EBULLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EBULL
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-25 */ pragma solidity 0.5.0; // Using Uniswap interface for price feed of ETH interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } library UniswapV2Library { using SafeMath for uint; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } // calculates the CREATE2 address for a pair without making any external calls function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } // fetches and sorts the reserves for a pair function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) { (address token0,) = sortTokens(tokenA, tokenB); (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) { require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT'); require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(997); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) { require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint numerator = reserveIn.mul(amountOut).mul(1000); uint denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[0] = amountIn; for (uint i; i < path.length - 1; i++) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[amounts.length - 1] = amountOut; for (uint i = path.length - 1; i > 0; i--) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } } contract Initializable { bool private initialized; bool private initializing; modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool wasInitializing = initializing; initializing = true; initialized = true; _; initializing = wasInitializing; } function isConstructor() private view returns (bool) { uint256 cs; assembly { cs := extcodesize(address) } return cs == 0; } uint256[50] private ______gap; } contract Ownable is Initializable { address private _owner; uint256 private _ownershipLocked; event OwnershipLocked(address lockedOwner); event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); function initialize(address sender) internal initializer { _owner = sender; _ownershipLocked = 0; } function owner() public view returns(address) { return _owner; } modifier onlyOwner() { require(isOwner()); _; } function isOwner() public view returns(bool) { return msg.sender == _owner; } function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal { require(_ownershipLocked == 0); require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } // Set _ownershipLocked flag to lock contract owner forever function lockOwnership() public onlyOwner { require(_ownershipLocked == 0); emit OwnershipLocked(_owner); _ownershipLocked = 1; } uint256[50] private ______gap; } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; function initialize(string memory name, string memory symbol, uint8 decimals) internal initializer { _name = name; _symbol = symbol; _decimals = decimals; } function name() public view returns(string memory) { return _name; } function symbol() public view returns(string memory) { return _symbol; } function decimals() public view returns(uint8) { return _decimals; } uint256[50] private ______gap; } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* MIT License Copyright (c) 2018 requestnetwork Copyright (c) 2018 Fragments, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } } library UInt256Lib { uint256 private constant MAX_INT256 = ~(uint256(1) << 255); /** * @dev Safely converts a uint256 to an int256. */ function toInt256Safe(uint256 a) internal pure returns (int256) { require(a <= MAX_INT256); return int256(a); } } contract EBULL is Ownable, ERC20Detailed { using SafeMath for uint256; using SafeMathInt for int256; using UInt256Lib for uint256; struct Transaction { bool enabled; address destination; bytes data; } event TransactionFailed(address indexed destination, uint index, bytes data); // Stable ordering is not guaranteed. Transaction[] public transactions; modifier validRecipient(address to) { require(to != address(0x0)); require(to != address(this)); _; } IUniswapV2Pair private _pairUSD; uint256 private constant ETH_DECIMALS = 18; //Currently using USDC uint256 private constant USD_DECIMALS = 6; uint256 private constant PRICE_PRECISION = 10**9; uint256 public EthNow; uint256 public EthOld; uint256 public LevUp; uint256 public LevDown; uint256 public TokenBurn; uint256 public TokenAdd; uint256 public Change; uint256 public DLimit; uint256 public EnableReb; uint256 public EnableFee; address public UniAdd; address public Collector; address public UniLP; uint256 public Collect; uint256 public Rvalue; uint256 public Fee; uint256 public constant PrPrecision = 1000000; uint256 public constant DECIMALS = 9; uint256 public constant MAX_UINT256 = ~uint256(0); uint256 public constant INITIAL_SUPPLY = 200 * 10**4 * 10**DECIMALS; uint256 public _totalSupply; mapping(address => uint256) public _updatedBalance; mapping(address => uint256) public blacklist; mapping (address => mapping (address => uint256)) public _allowance; constructor() public { Ownable.initialize(msg.sender); ERC20Detailed.initialize("Ethereum Bull", "EBULL", uint8(DECIMALS)); _totalSupply = INITIAL_SUPPLY; _updatedBalance[msg.sender] = _totalSupply; emit Transfer(address(0x0), msg.sender, _totalSupply); } //Set value for address to 1 for blacklisting //Blacklisting is created for protection against front run bots on uniswap function Addblacklist(address _blackadd, uint256 _blackvalue) external onlyOwner { blacklist[_blackadd] = _blackvalue; } function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) public view returns (uint256) { return _updatedBalance[who]; } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint256 value) public validRecipient(to) returns (bool) { require(blacklist[msg.sender]!=1); _updatedBalance[msg.sender] = _updatedBalance[msg.sender].sub(value); if(EnableFee==1) { Rvalue=TransferFee(value); emit Transfer(msg.sender, Collector, Collect); } else { Rvalue=value; } _updatedBalance[to] = _updatedBalance[to].add(Rvalue); emit Transfer(msg.sender, to, value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) public view returns (uint256) { return _allowance[owner_][spender]; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint256 value) public validRecipient(to) returns (bool) { require(blacklist[from]!=1); _allowance[from][msg.sender] = _allowance[from][msg.sender].sub(value); _updatedBalance[from] = _updatedBalance[from].sub(value); if(EnableFee==1) { Rvalue=TransferFee(value); emit Transfer(from, Collector, Collect); } else { Rvalue=value; } _updatedBalance[to] = _updatedBalance[to].add(Rvalue); emit Transfer(from, to, Rvalue); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _allowance[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _allowance[msg.sender][spender] = _allowance[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowance[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { uint256 oldValue = _allowance[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowance[msg.sender][spender] = 0; } else { _allowance[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowance[msg.sender][spender]); return true; } // Transction fee collection function TransferFee(uint256 value) internal returns (uint256) { Collect = value.mul(Fee).div(100000); // fee is the percentage value * 1000 Rvalue=value.sub(Collect); _updatedBalance[Collector] = _updatedBalance[Collector].add(Collect); return Rvalue; } /// Set fee collector function setCollector(address _Collector) external onlyOwner { Collector = _Collector; } /// Set EnableFee==1 for enabling transaction fees function setEnablefee(uint256 _EnableFee) external onlyOwner { EnableFee = _EnableFee; } /// Set Transaction fee %, example, if 1% is the fee then set fee= 1000; function setTransfee(uint256 _TransFee) external onlyOwner { Fee = _TransFee; } /// Set EnableReb==1 for enabling rebalance function function setEnableReb(uint256 _EnableReb) external onlyOwner { EnableReb = _EnableReb; } /// Set Uniswap pair of ETH/USD for price input function setPairUSD(address factory, address token0, address token1) external onlyOwner { _pairUSD = IUniswapV2Pair(UniswapV2Library.pairFor(factory, token0, token1)); } // Get price of above set pair function getPriceETH_USD() public view returns (uint256) { require(address(_pairUSD) != address(0)); (uint256 reserves0, uint256 reserves1,) = _pairUSD.getReserves(); // reserves0 = USDC (8 decimals) ETH // reserves1 = ETH (18 decimals) USD uint256 price = reserves0.mul(10**(18-USD_DECIMALS)).mul(PRICE_PRECISION).div(reserves1); return price; } // Set the address of Ebull uniswap Liquidity contract to be used in rebalance function function InputUniLP(address _UniLP) onlyOwner external { UniLP= _UniLP; } function UniLPAddress() public view returns (address) { return UniLP; } /// Set the upside leverage function setLevUp(uint256 _LevUp) // set integer values like 1,2,3...etc. external onlyOwner { LevUp = _LevUp; } /// Set the Downside leverage function setLevDown(uint256 _LevDown) // set integer values like 1,2,3...etc. external onlyOwner { LevDown = _LevDown; } // Set Downside limit per rebalance call. This limit is needed as price cannot go down more than 100%, function setDLimit(uint256 _DLimit) // Example, for 50% down limit, set value to 0.5*e6 external onlyOwner { DLimit = _DLimit; } // Initialise the price of ETHOld for the first rebalance call function InitialETHPrice() external onlyOwner { EthOld = getPriceETH_USD(); } // Rebalance function changes the price of ebull in uniswap depending on the leveraged fluctuation in Eth Price function ReBalance() public returns (bool) { require(EnableReb==1,"Rebalance not enabled"); EthNow = getPriceETH_USD(); if(EthNow >= EthOld) { Change= PrPrecision.add(LevUp.mul(PrPrecision).mul(EthNow.sub(EthOld)).div(EthOld)); // LevUp is upside leverage = 3 TokenBurn = _updatedBalance[UniLP].sub(_updatedBalance[UniLP].mul(PrPrecision).div(Change)); TokenBurn=TokenBurn.div(10**DECIMALS); _updatedBalance[UniLP] = _updatedBalance[UniLP].sub(TokenBurn.mul(10**DECIMALS)); _totalSupply = _totalSupply.sub(TokenBurn.mul(10**DECIMALS)); } else { Change= LevDown.mul(PrPrecision).mul(EthOld.sub(EthNow)).div(EthOld); // LevDown is downside leverage = 2 if(Change>DLimit) // downside limit per transaction = 0.5*10**6 { Change = DLimit; } Change= PrPrecision.sub(Change); TokenAdd = _updatedBalance[UniLP].mul(PrPrecision).div(Change); TokenAdd = TokenAdd.sub(_updatedBalance[UniLP]); TokenAdd=TokenAdd.div(10**DECIMALS); _updatedBalance[UniLP] = _updatedBalance[UniLP].add(TokenAdd.mul(10**DECIMALS)); _totalSupply = _totalSupply.add(TokenAdd.mul(10**DECIMALS)); } IUniswapV2Pair(UniLP).sync(); EthOld = EthNow; return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"lockOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"UniLP","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_UniLP","type":"address"}],"name":"InputUniLP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"ReBalance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"Change","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_DLimit","type":"uint256"}],"name":"setDLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT256","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_LevUp","type":"uint256"}],"name":"setLevUp","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_updatedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EnableReb","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_EnableFee","type":"uint256"}],"name":"setEnablefee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"factory","type":"address"},{"name":"token0","type":"address"},{"name":"token1","type":"address"}],"name":"setPairUSD","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LevUp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"UniAdd","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Rvalue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"enabled","type":"bool"},{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PrPrecision","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Collector","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"InitialETHPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LevDown","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EthNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Fee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Collect","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"UniLPAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EthOld","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TokenAdd","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_LevDown","type":"uint256"}],"name":"setLevDown","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"_allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TokenBurn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getPriceETH_USD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EnableFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_blackadd","type":"address"},{"name":"_blackvalue","type":"uint256"}],"name":"Addblacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_TransFee","type":"uint256"}],"name":"setTransfee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_EnableReb","type":"uint256"}],"name":"setEnableReb","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_Collector","type":"address"}],"name":"setCollector","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"destination","type":"address"},{"indexed":false,"name":"index","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"TransactionFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"lockedOwner","type":"address"}],"name":"OwnershipLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200002b3364010000000062001f556200011382021704565b620000b76040805190810160405280600d81526020017f457468657265756d2042756c6c000000000000000000000000000000000000008152506040805190810160405280600581526020017f4542554c4c00000000000000000000000000000000000000000000000000000081525060096200021d6401000000000262002058176401000000009004565b66071afd498d000060ae81905533600081815260af60209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3620003fe565b600054610100900460ff16806200013857506200013864010000000062000355810204565b8062000147575060005460ff16155b1515620001ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201526000805160206200267083398151915260448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b6000805460338054600160a060020a031916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff16806200024257506200024264010000000062000355810204565b8062000251575060005460ff16155b1515620002d457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201526000805160206200267083398151915260448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff16906200030c9060679060208701906200035c565b508251620003229060689060208601906200035c565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b155b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200039f57805160ff1916838001178555620003cf565b82800160010185558215620003cf579182015b82811115620003cf578251825591602001919060010190620003b2565b50620003dd929150620003e1565b5090565b6200035991905b80821115620003dd5760008155600101620003e8565b612262806200040e6000396000f3fe60806040526004361061026e5763ffffffff60e060020a6000350416630577c02b811461027357806306fdde031461028a578063095ea7b3146103145780630ee574b01461036157806318160ddd1461039257806318838f8a146103b95780631fc9e340146103ec578063231f23bb1461040157806323b872dd146104165780632e0f2625146104595780632ff2e9dc1461046e578063313ce5671461048357806333322553146104ae57806333a581d2146104d857806335714057146104ed57806339509351146105175780633eaaf86b14610550578063424b6905146105655780635601c432146105985780635f7bf38a146105ad57806366529e8d146105c257806370a08231146105ec5780637c0421771461061f5780638a7ea7c7146106645780638abdf99e146106795780638da5cb5b1461068e5780638f32d59b146106a35780639536f495146106b857806395d89b41146106cd5780639ace38c2146106e25780639fb3903d146107a8578063a106da5e146107bd578063a3afbf71146107d2578063a457c2d7146107e7578063a9059cbb14610820578063b9a5ef2a14610859578063b9bd43881461086e578063bef7a2f014610883578063c1826d7814610898578063c6810f3e146108ad578063cc2084c0146108c2578063d69f5a8c146108d7578063dcf0c1a0146108ec578063dd336c1214610916578063dd62ed3e14610951578063df194ca51461098c578063e1d1f81b146109a1578063e70a2936146109b6578063e9ca633d146109cb578063f241c71414610a04578063f2fde38b14610a2e578063f6e4d63c14610a61578063f9f92be414610a8b578063fb5b82d014610abe575b600080fd5b34801561027f57600080fd5b50610288610af1565b005b34801561029657600080fd5b5061029f610b57565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d95781810151838201526020016102c1565b50505050905090810190601f1680156103065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032057600080fd5b5061034d6004803603604081101561033757600080fd5b50600160a060020a038135169060200135610bee565b604080519115158252519081900360200190f35b34801561036d57600080fd5b50610376610c55565b60408051600160a060020a039092168252519081900360200190f35b34801561039e57600080fd5b506103a7610c64565b60408051918252519081900360200190f35b3480156103c557600080fd5b50610288600480360360208110156103dc57600080fd5b5035600160a060020a0316610c6a565b3480156103f857600080fd5b5061034d610cac565b34801561040d57600080fd5b506103a761104c565b34801561042257600080fd5b5061034d6004803603606081101561043957600080fd5b50600160a060020a03813581169160208101359091169060400135611052565b34801561046557600080fd5b506103a761120a565b34801561047a57600080fd5b506103a761120f565b34801561048f57600080fd5b5061049861121a565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b50610288600480360360208110156104d157600080fd5b5035611223565b3480156104e457600080fd5b506103a761123b565b3480156104f957600080fd5b506102886004803603602081101561051057600080fd5b5035611241565b34801561052357600080fd5b5061034d6004803603604081101561053a57600080fd5b50600160a060020a038135169060200135611259565b34801561055c57600080fd5b506103a76112f2565b34801561057157600080fd5b506103a76004803603602081101561058857600080fd5b5035600160a060020a03166112f8565b3480156105a457600080fd5b506103a761130a565b3480156105b957600080fd5b506103a7611310565b3480156105ce57600080fd5b50610288600480360360208110156105e557600080fd5b5035611316565b3480156105f857600080fd5b506103a76004803603602081101561060f57600080fd5b5035600160a060020a031661132e565b34801561062b57600080fd5b506102886004803603606081101561064257600080fd5b50600160a060020a038135811691602081013582169160409091013516611349565b34801561067057600080fd5b506103a7611399565b34801561068557600080fd5b5061037661139f565b34801561069a57600080fd5b506103766113ae565b3480156106af57600080fd5b5061034d6113bd565b3480156106c457600080fd5b506103a76113ce565b3480156106d957600080fd5b5061029f6113d4565b3480156106ee57600080fd5b5061070c6004803603602081101561070557600080fd5b5035611435565b604051808415151515815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561076b578181015183820152602001610753565b50505050905090810190601f1680156107985780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b3480156107b457600080fd5b506103a76114fb565b3480156107c957600080fd5b50610376611502565b3480156107de57600080fd5b50610288611511565b3480156107f357600080fd5b5061034d6004803603604081101561080a57600080fd5b50600160a060020a038135169060200135611531565b34801561082c57600080fd5b5061034d6004803603604081101561084357600080fd5b50600160a060020a038135169060200135611620565b34801561086557600080fd5b506103a761176a565b34801561087a57600080fd5b506103a7611770565b34801561088f57600080fd5b506103a7611776565b3480156108a457600080fd5b506103a761177c565b3480156108b957600080fd5b50610376611782565b3480156108ce57600080fd5b506103a7611791565b3480156108e357600080fd5b506103a7611797565b3480156108f857600080fd5b506102886004803603602081101561090f57600080fd5b503561179d565b34801561092257600080fd5b506103a76004803603604081101561093957600080fd5b50600160a060020a03813581169160200135166117b5565b34801561095d57600080fd5b506103a76004803603604081101561097457600080fd5b50600160a060020a03813581169160200135166117d2565b34801561099857600080fd5b506103a76117fd565b3480156109ad57600080fd5b506103a7611803565b3480156109c257600080fd5b506103a76118e6565b3480156109d757600080fd5b50610288600480360360408110156109ee57600080fd5b50600160a060020a0381351690602001356118ec565b348015610a1057600080fd5b5061028860048036036020811015610a2757600080fd5b503561191b565b348015610a3a57600080fd5b5061028860048036036020811015610a5157600080fd5b5035600160a060020a0316611933565b348015610a6d57600080fd5b5061028860048036036020811015610a8457600080fd5b5035611952565b348015610a9757600080fd5b506103a760048036036020811015610aae57600080fd5b5035600160a060020a031661196a565b348015610aca57600080fd5b5061028860048036036020811015610ae157600080fd5b5035600160a060020a031661197c565b610af96113bd565b1515610b0457600080fd5b60345415610b1157600080fd5b60335460408051600160a060020a039092168252517f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f49181900360200190a16001603455565b60678054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b505050505090505b90565b33600081815260b160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60aa54600160a060020a031681565b60ae5490565b610c726113bd565b1515610c7d57600080fd5b60aa805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60a654600090600114610d09576040805160e560020a62461bcd02815260206004820152601560248201527f526562616c616e6365206e6f7420656e61626c65640000000000000000000000604482015290519081900360640190fd5b610d11611803565b609e819055609f5411610e6457610d7f610d6f609f54610d63610d41609f54609e546119be90919063ffffffff16565b60a054610d5790620f424063ffffffff611a0716565b9063ffffffff611a0716565b9063ffffffff611aa316565b620f42409063ffffffff611ae516565b60a481905560aa54600160a060020a0316600090815260af6020526040902054610de191610dba91610d6390620f424063ffffffff611a0716565b60aa54600160a060020a0316600090815260af60205260409020549063ffffffff6119be16565b60a2819055610dfa90633b9aca0063ffffffff611aa316565b60a2819055610e1790610dba90633b9aca0063ffffffff611a0716565b60aa54600160a060020a0316600090815260af602052604090205560a254610e5c90610e4d90633b9aca0063ffffffff611a0716565b60ae549063ffffffff6119be16565b60ae55610fd4565b610e9a609f54610d63610e84609e54609f546119be90919063ffffffff16565b60a154610d5790620f424063ffffffff611a0716565b60a481905560a5541015610eaf5760a55460a4555b60a454610ec690620f42409063ffffffff6119be16565b60a481905560aa54600160a060020a0316600090815260af6020526040902054610efe9190610d6390620f424063ffffffff611a0716565b60a381905560aa54600160a060020a0316600090815260af6020526040902054610f2e919063ffffffff6119be16565b60a3819055610f4790633b9aca0063ffffffff611aa316565b60a3819055610f8b90610f6490633b9aca0063ffffffff611a0716565b60aa54600160a060020a0316600090815260af60205260409020549063ffffffff611ae516565b60aa54600160a060020a0316600090815260af602052604090205560a354610fd090610fc190633b9aca0063ffffffff611a0716565b60ae549063ffffffff611ae516565b60ae555b60aa60009054906101000a9004600160a060020a0316600160a060020a031663fff6cae96040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561102757600080fd5b505af115801561103b573d6000803e3d6000fd5b5050609e54609f5550600191505090565b60a45481565b600082600160a060020a038116151561106a57600080fd5b600160a060020a03811630141561108057600080fd5b600160a060020a038516600090815260b06020526040902054600114156110a657600080fd5b600160a060020a038516600090815260b1602090815260408083203384529091529020546110da908463ffffffff6119be16565b600160a060020a038616600081815260b16020908152604080832033845282528083209490945591815260af909152205461111b908463ffffffff6119be16565b600160a060020a038616600090815260af602052604090205560a754600114156111865761114883611b42565b60ac5560a95460ab546040805191825251600160a060020a0392831692881691600080516020612217833981519152919081900360200190a361118c565b60ac8390555b60ac54600160a060020a038516600090815260af60205260409020546111b79163ffffffff611ae516565b600160a060020a03808616600081815260af60209081526040918290209490945560ac548151908152905191939289169260008051602061221783398151915292918290030190a3506001949350505050565b600981565b66071afd498d000081565b60695460ff1690565b61122b6113bd565b151561123657600080fd5b60a555565b60001981565b6112496113bd565b151561125457600080fd5b60a055565b33600090815260b160209081526040808320600160a060020a038616845290915281205461128d908363ffffffff611ae516565b33600081815260b160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60ae5481565b60af6020526000908152604090205481565b60a55481565b60a65481565b61131e6113bd565b151561132957600080fd5b60a755565b600160a060020a0316600090815260af602052604090205490565b6113516113bd565b151561135c57600080fd5b611367838383611bc9565b609d805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055505050565b60a05481565b60a854600160a060020a031681565b603354600160a060020a031690565b603354600160a060020a0316331490565b60ac5481565b60688054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be35780601f10610bb857610100808354040283529160200191610be3565b609c80548290811061144357fe5b6000918252602091829020600291820201805460018083018054604080516101009483161585026000190190921696909604601f810188900488028201880190965285815260ff8416975091909204600160a060020a031694929390928301828280156114f15780601f106114c6576101008083540402835291602001916114f1565b820191906000526020600020905b8154815290600101906020018083116114d457829003601f168201915b5050505050905083565b620f424081565b60a954600160a060020a031681565b6115196113bd565b151561152457600080fd5b61152c611803565b609f55565b33600090815260b160209081526040808320600160a060020a03861684529091528120548083106115855733600090815260b160209081526040808320600160a060020a03881684529091528120556115ba565b611595818463ffffffff6119be16565b33600090815260b160209081526040808320600160a060020a03891684529091529020555b33600081815260b160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600082600160a060020a038116151561163857600080fd5b600160a060020a03811630141561164e57600080fd5b33600090815260b060205260409020546001141561166b57600080fd5b33600090815260af602052604090205461168b908463ffffffff6119be16565b33600090815260af602052604090205560a754600114156116ec576116af83611b42565b60ac5560a95460ab546040805191825251600160a060020a03909216913391600080516020612217833981519152919081900360200190a36116f2565b60ac8390555b60ac54600160a060020a038516600090815260af602052604090205461171d9163ffffffff611ae516565b600160a060020a038516600081815260af60209081526040918290209390935580518681529051919233926000805160206122178339815191529281900390910190a35060019392505050565b60a15481565b609e5481565b60ad5481565b60ab5481565b60aa54600160a060020a031690565b609f5481565b60a35481565b6117a56113bd565b15156117b057600080fd5b60a155565b60b160209081526000928352604080842090915290825290205481565b600160a060020a03918216600090815260b16020908152604080832093909416825291909152205490565b60a25481565b609d54600090600160a060020a0316151561181d57600080fd5b600080609d60009054906101000a9004600160a060020a0316600160a060020a0316630902f1ac6040518163ffffffff1660e060020a02815260040160606040518083038186803b15801561187157600080fd5b505afa158015611885573d6000803e3d6000fd5b505050506040513d606081101561189b57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060006118de82610d63633b9aca00610d578764e8d4a5100063ffffffff611a0716565b935050505090565b60a75481565b6118f46113bd565b15156118ff57600080fd5b600160a060020a03909116600090815260b06020526040902055565b6119236113bd565b151561192e57600080fd5b60ad55565b61193b6113bd565b151561194657600080fd5b61194f81611ca7565b50565b61195a6113bd565b151561196557600080fd5b60a655565b60b06020526000908152604090205481565b6119846113bd565b151561198f57600080fd5b60a9805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000611a0083836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d32565b9392505050565b6000821515611a1857506000610c4f565b828202828482811515611a2757fe5b0414611a00576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000611a0083836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dcc565b600082820183811015611a00576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000611b60620186a0610d6360ad5485611a0790919063ffffffff16565b60ab819055611b7690839063ffffffff6119be16565b60ac5560ab5460a954600160a060020a0316600090815260af6020526040902054611ba69163ffffffff611ae516565b60a954600160a060020a0316600090815260af6020526040902055505060ac5490565b6000806000611bd88585611e39565b604080516c01000000000000000000000000600160a060020a03948516810260208084019190915293851681026034830152825160288184030181526048830184528051908501207fff00000000000000000000000000000000000000000000000000000000000000606884015294909a1690990260698a0152607d8901929092527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808a01919091528251808a03909101815260bd909801909152865196019590952095945050505050565b60345415611cb457600080fd5b600160a060020a0381161515611cc957600080fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008184841115611dc45760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d89578181015183820152602001611d71565b50505050905090810190601f168015611db65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081818411611e215760405160e560020a62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015611d89578181015183820152602001611d71565b5060008385811515611e2f57fe5b0495945050505050565b600080600160a060020a038481169084161415611ec6576040805160e560020a62461bcd02815260206004820152602560248201527f556e697377617056324c6962726172793a204944454e544943414c5f4144445260448201527f4553534553000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b82600160a060020a031684600160a060020a031610611ee6578284611ee9565b83835b9092509050600160a060020a0382161515611f4e576040805160e560020a62461bcd02815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b9250929050565b600054610100900460ff1680611f6e5750611f6e612178565b80611f7c575060005460ff16155b1515611ff8576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b600080546033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff16806120715750612071612178565b8061207f575060005460ff16155b15156120fb576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff169061213190606790602087019061217e565b50825161214590606890602086019061217e565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b1590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106121bf57805160ff19168380011785556121ec565b828001600101855582156121ec579182015b828111156121ec5782518255916020019190600101906121d1565b506121f89291506121fc565b5090565b610beb91905b808211156121f8576000815560010161220256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a3f00a61a0ba449b62c488e2686764a375d79ccfb331e45700dcf80d4f9e99e80029436f6e747261637420696e7374616e63652068617320616c7265616479206265
Deployed Bytecode
0x60806040526004361061026e5763ffffffff60e060020a6000350416630577c02b811461027357806306fdde031461028a578063095ea7b3146103145780630ee574b01461036157806318160ddd1461039257806318838f8a146103b95780631fc9e340146103ec578063231f23bb1461040157806323b872dd146104165780632e0f2625146104595780632ff2e9dc1461046e578063313ce5671461048357806333322553146104ae57806333a581d2146104d857806335714057146104ed57806339509351146105175780633eaaf86b14610550578063424b6905146105655780635601c432146105985780635f7bf38a146105ad57806366529e8d146105c257806370a08231146105ec5780637c0421771461061f5780638a7ea7c7146106645780638abdf99e146106795780638da5cb5b1461068e5780638f32d59b146106a35780639536f495146106b857806395d89b41146106cd5780639ace38c2146106e25780639fb3903d146107a8578063a106da5e146107bd578063a3afbf71146107d2578063a457c2d7146107e7578063a9059cbb14610820578063b9a5ef2a14610859578063b9bd43881461086e578063bef7a2f014610883578063c1826d7814610898578063c6810f3e146108ad578063cc2084c0146108c2578063d69f5a8c146108d7578063dcf0c1a0146108ec578063dd336c1214610916578063dd62ed3e14610951578063df194ca51461098c578063e1d1f81b146109a1578063e70a2936146109b6578063e9ca633d146109cb578063f241c71414610a04578063f2fde38b14610a2e578063f6e4d63c14610a61578063f9f92be414610a8b578063fb5b82d014610abe575b600080fd5b34801561027f57600080fd5b50610288610af1565b005b34801561029657600080fd5b5061029f610b57565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d95781810151838201526020016102c1565b50505050905090810190601f1680156103065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032057600080fd5b5061034d6004803603604081101561033757600080fd5b50600160a060020a038135169060200135610bee565b604080519115158252519081900360200190f35b34801561036d57600080fd5b50610376610c55565b60408051600160a060020a039092168252519081900360200190f35b34801561039e57600080fd5b506103a7610c64565b60408051918252519081900360200190f35b3480156103c557600080fd5b50610288600480360360208110156103dc57600080fd5b5035600160a060020a0316610c6a565b3480156103f857600080fd5b5061034d610cac565b34801561040d57600080fd5b506103a761104c565b34801561042257600080fd5b5061034d6004803603606081101561043957600080fd5b50600160a060020a03813581169160208101359091169060400135611052565b34801561046557600080fd5b506103a761120a565b34801561047a57600080fd5b506103a761120f565b34801561048f57600080fd5b5061049861121a565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b50610288600480360360208110156104d157600080fd5b5035611223565b3480156104e457600080fd5b506103a761123b565b3480156104f957600080fd5b506102886004803603602081101561051057600080fd5b5035611241565b34801561052357600080fd5b5061034d6004803603604081101561053a57600080fd5b50600160a060020a038135169060200135611259565b34801561055c57600080fd5b506103a76112f2565b34801561057157600080fd5b506103a76004803603602081101561058857600080fd5b5035600160a060020a03166112f8565b3480156105a457600080fd5b506103a761130a565b3480156105b957600080fd5b506103a7611310565b3480156105ce57600080fd5b50610288600480360360208110156105e557600080fd5b5035611316565b3480156105f857600080fd5b506103a76004803603602081101561060f57600080fd5b5035600160a060020a031661132e565b34801561062b57600080fd5b506102886004803603606081101561064257600080fd5b50600160a060020a038135811691602081013582169160409091013516611349565b34801561067057600080fd5b506103a7611399565b34801561068557600080fd5b5061037661139f565b34801561069a57600080fd5b506103766113ae565b3480156106af57600080fd5b5061034d6113bd565b3480156106c457600080fd5b506103a76113ce565b3480156106d957600080fd5b5061029f6113d4565b3480156106ee57600080fd5b5061070c6004803603602081101561070557600080fd5b5035611435565b604051808415151515815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561076b578181015183820152602001610753565b50505050905090810190601f1680156107985780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b3480156107b457600080fd5b506103a76114fb565b3480156107c957600080fd5b50610376611502565b3480156107de57600080fd5b50610288611511565b3480156107f357600080fd5b5061034d6004803603604081101561080a57600080fd5b50600160a060020a038135169060200135611531565b34801561082c57600080fd5b5061034d6004803603604081101561084357600080fd5b50600160a060020a038135169060200135611620565b34801561086557600080fd5b506103a761176a565b34801561087a57600080fd5b506103a7611770565b34801561088f57600080fd5b506103a7611776565b3480156108a457600080fd5b506103a761177c565b3480156108b957600080fd5b50610376611782565b3480156108ce57600080fd5b506103a7611791565b3480156108e357600080fd5b506103a7611797565b3480156108f857600080fd5b506102886004803603602081101561090f57600080fd5b503561179d565b34801561092257600080fd5b506103a76004803603604081101561093957600080fd5b50600160a060020a03813581169160200135166117b5565b34801561095d57600080fd5b506103a76004803603604081101561097457600080fd5b50600160a060020a03813581169160200135166117d2565b34801561099857600080fd5b506103a76117fd565b3480156109ad57600080fd5b506103a7611803565b3480156109c257600080fd5b506103a76118e6565b3480156109d757600080fd5b50610288600480360360408110156109ee57600080fd5b50600160a060020a0381351690602001356118ec565b348015610a1057600080fd5b5061028860048036036020811015610a2757600080fd5b503561191b565b348015610a3a57600080fd5b5061028860048036036020811015610a5157600080fd5b5035600160a060020a0316611933565b348015610a6d57600080fd5b5061028860048036036020811015610a8457600080fd5b5035611952565b348015610a9757600080fd5b506103a760048036036020811015610aae57600080fd5b5035600160a060020a031661196a565b348015610aca57600080fd5b5061028860048036036020811015610ae157600080fd5b5035600160a060020a031661197c565b610af96113bd565b1515610b0457600080fd5b60345415610b1157600080fd5b60335460408051600160a060020a039092168252517f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f49181900360200190a16001603455565b60678054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b505050505090505b90565b33600081815260b160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60aa54600160a060020a031681565b60ae5490565b610c726113bd565b1515610c7d57600080fd5b60aa805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60a654600090600114610d09576040805160e560020a62461bcd02815260206004820152601560248201527f526562616c616e6365206e6f7420656e61626c65640000000000000000000000604482015290519081900360640190fd5b610d11611803565b609e819055609f5411610e6457610d7f610d6f609f54610d63610d41609f54609e546119be90919063ffffffff16565b60a054610d5790620f424063ffffffff611a0716565b9063ffffffff611a0716565b9063ffffffff611aa316565b620f42409063ffffffff611ae516565b60a481905560aa54600160a060020a0316600090815260af6020526040902054610de191610dba91610d6390620f424063ffffffff611a0716565b60aa54600160a060020a0316600090815260af60205260409020549063ffffffff6119be16565b60a2819055610dfa90633b9aca0063ffffffff611aa316565b60a2819055610e1790610dba90633b9aca0063ffffffff611a0716565b60aa54600160a060020a0316600090815260af602052604090205560a254610e5c90610e4d90633b9aca0063ffffffff611a0716565b60ae549063ffffffff6119be16565b60ae55610fd4565b610e9a609f54610d63610e84609e54609f546119be90919063ffffffff16565b60a154610d5790620f424063ffffffff611a0716565b60a481905560a5541015610eaf5760a55460a4555b60a454610ec690620f42409063ffffffff6119be16565b60a481905560aa54600160a060020a0316600090815260af6020526040902054610efe9190610d6390620f424063ffffffff611a0716565b60a381905560aa54600160a060020a0316600090815260af6020526040902054610f2e919063ffffffff6119be16565b60a3819055610f4790633b9aca0063ffffffff611aa316565b60a3819055610f8b90610f6490633b9aca0063ffffffff611a0716565b60aa54600160a060020a0316600090815260af60205260409020549063ffffffff611ae516565b60aa54600160a060020a0316600090815260af602052604090205560a354610fd090610fc190633b9aca0063ffffffff611a0716565b60ae549063ffffffff611ae516565b60ae555b60aa60009054906101000a9004600160a060020a0316600160a060020a031663fff6cae96040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561102757600080fd5b505af115801561103b573d6000803e3d6000fd5b5050609e54609f5550600191505090565b60a45481565b600082600160a060020a038116151561106a57600080fd5b600160a060020a03811630141561108057600080fd5b600160a060020a038516600090815260b06020526040902054600114156110a657600080fd5b600160a060020a038516600090815260b1602090815260408083203384529091529020546110da908463ffffffff6119be16565b600160a060020a038616600081815260b16020908152604080832033845282528083209490945591815260af909152205461111b908463ffffffff6119be16565b600160a060020a038616600090815260af602052604090205560a754600114156111865761114883611b42565b60ac5560a95460ab546040805191825251600160a060020a0392831692881691600080516020612217833981519152919081900360200190a361118c565b60ac8390555b60ac54600160a060020a038516600090815260af60205260409020546111b79163ffffffff611ae516565b600160a060020a03808616600081815260af60209081526040918290209490945560ac548151908152905191939289169260008051602061221783398151915292918290030190a3506001949350505050565b600981565b66071afd498d000081565b60695460ff1690565b61122b6113bd565b151561123657600080fd5b60a555565b60001981565b6112496113bd565b151561125457600080fd5b60a055565b33600090815260b160209081526040808320600160a060020a038616845290915281205461128d908363ffffffff611ae516565b33600081815260b160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60ae5481565b60af6020526000908152604090205481565b60a55481565b60a65481565b61131e6113bd565b151561132957600080fd5b60a755565b600160a060020a0316600090815260af602052604090205490565b6113516113bd565b151561135c57600080fd5b611367838383611bc9565b609d805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055505050565b60a05481565b60a854600160a060020a031681565b603354600160a060020a031690565b603354600160a060020a0316331490565b60ac5481565b60688054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be35780601f10610bb857610100808354040283529160200191610be3565b609c80548290811061144357fe5b6000918252602091829020600291820201805460018083018054604080516101009483161585026000190190921696909604601f810188900488028201880190965285815260ff8416975091909204600160a060020a031694929390928301828280156114f15780601f106114c6576101008083540402835291602001916114f1565b820191906000526020600020905b8154815290600101906020018083116114d457829003601f168201915b5050505050905083565b620f424081565b60a954600160a060020a031681565b6115196113bd565b151561152457600080fd5b61152c611803565b609f55565b33600090815260b160209081526040808320600160a060020a03861684529091528120548083106115855733600090815260b160209081526040808320600160a060020a03881684529091528120556115ba565b611595818463ffffffff6119be16565b33600090815260b160209081526040808320600160a060020a03891684529091529020555b33600081815260b160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600082600160a060020a038116151561163857600080fd5b600160a060020a03811630141561164e57600080fd5b33600090815260b060205260409020546001141561166b57600080fd5b33600090815260af602052604090205461168b908463ffffffff6119be16565b33600090815260af602052604090205560a754600114156116ec576116af83611b42565b60ac5560a95460ab546040805191825251600160a060020a03909216913391600080516020612217833981519152919081900360200190a36116f2565b60ac8390555b60ac54600160a060020a038516600090815260af602052604090205461171d9163ffffffff611ae516565b600160a060020a038516600081815260af60209081526040918290209390935580518681529051919233926000805160206122178339815191529281900390910190a35060019392505050565b60a15481565b609e5481565b60ad5481565b60ab5481565b60aa54600160a060020a031690565b609f5481565b60a35481565b6117a56113bd565b15156117b057600080fd5b60a155565b60b160209081526000928352604080842090915290825290205481565b600160a060020a03918216600090815260b16020908152604080832093909416825291909152205490565b60a25481565b609d54600090600160a060020a0316151561181d57600080fd5b600080609d60009054906101000a9004600160a060020a0316600160a060020a0316630902f1ac6040518163ffffffff1660e060020a02815260040160606040518083038186803b15801561187157600080fd5b505afa158015611885573d6000803e3d6000fd5b505050506040513d606081101561189b57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060006118de82610d63633b9aca00610d578764e8d4a5100063ffffffff611a0716565b935050505090565b60a75481565b6118f46113bd565b15156118ff57600080fd5b600160a060020a03909116600090815260b06020526040902055565b6119236113bd565b151561192e57600080fd5b60ad55565b61193b6113bd565b151561194657600080fd5b61194f81611ca7565b50565b61195a6113bd565b151561196557600080fd5b60a655565b60b06020526000908152604090205481565b6119846113bd565b151561198f57600080fd5b60a9805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000611a0083836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d32565b9392505050565b6000821515611a1857506000610c4f565b828202828482811515611a2757fe5b0414611a00576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000611a0083836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dcc565b600082820183811015611a00576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000611b60620186a0610d6360ad5485611a0790919063ffffffff16565b60ab819055611b7690839063ffffffff6119be16565b60ac5560ab5460a954600160a060020a0316600090815260af6020526040902054611ba69163ffffffff611ae516565b60a954600160a060020a0316600090815260af6020526040902055505060ac5490565b6000806000611bd88585611e39565b604080516c01000000000000000000000000600160a060020a03948516810260208084019190915293851681026034830152825160288184030181526048830184528051908501207fff00000000000000000000000000000000000000000000000000000000000000606884015294909a1690990260698a0152607d8901929092527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808a01919091528251808a03909101815260bd909801909152865196019590952095945050505050565b60345415611cb457600080fd5b600160a060020a0381161515611cc957600080fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008184841115611dc45760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d89578181015183820152602001611d71565b50505050905090810190601f168015611db65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081818411611e215760405160e560020a62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015611d89578181015183820152602001611d71565b5060008385811515611e2f57fe5b0495945050505050565b600080600160a060020a038481169084161415611ec6576040805160e560020a62461bcd02815260206004820152602560248201527f556e697377617056324c6962726172793a204944454e544943414c5f4144445260448201527f4553534553000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b82600160a060020a031684600160a060020a031610611ee6578284611ee9565b83835b9092509050600160a060020a0382161515611f4e576040805160e560020a62461bcd02815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b9250929050565b600054610100900460ff1680611f6e5750611f6e612178565b80611f7c575060005460ff16155b1515611ff8576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b600080546033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff16806120715750612071612178565b8061207f575060005460ff16155b15156120fb576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff169061213190606790602087019061217e565b50825161214590606890602086019061217e565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b1590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106121bf57805160ff19168380011785556121ec565b828001600101855582156121ec579182015b828111156121ec5782518255916020019190600101906121d1565b506121f89291506121fc565b5090565b610beb91905b808211156121f8576000815560010161220256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a3f00a61a0ba449b62c488e2686764a375d79ccfb331e45700dcf80d4f9e99e80029
Deployed Bytecode Sourcemap
14400:11921:0:-;;;;;;;;;-1:-1:-1;;;14400:11921:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8573:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8573:141:0;;;;;;9779:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9779:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9779:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19945:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19945:226:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19945:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15527:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15527:20:0;;;;;;;;-1:-1:-1;;;;;15527:20:0;;;;;;;;;;;;;;16689:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16689:123:0;;;;;;;;;;;;;;;;;;;;23640:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23640:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23640:117:0;-1:-1:-1;;;;;23640:117:0;;;24901:1411;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24901:1411:0;;;;15362:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15362:21:0;;;;18634:668;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18634:668:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18634:668:0;;;;;;;;;;;;;;;;;;15684:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15684:36:0;;;;15783:67;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15783:67:0;;;;9947:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9947:76:0;;;;;;;;;;;;;;;;;;;;;;;24416:190;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24416:190:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24416:190:0;;;15727:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15727:49:0;;;;23935:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23935:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23935:156:0;;;20543:309;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20543:309:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20543:309:0;;;;;;;;;15863:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15863:27:0;;;;15903:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15903:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15903:50:0;-1:-1:-1;;;;;15903:50:0;;;15388:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15388:21:0;;;;15414:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15414:24:0;;;;22191:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22191:171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22191:171:0;;;16932:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16932:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16932:140:0;-1:-1:-1;;;;;16932:140:0;;;22863:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22863:212:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22863:212:0;;;;;;;;;;;;;;;;;;;;15253:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15253:20:0;;;;15472:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15472:21:0;;;;7950:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7950:72:0;;;;8094:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8094:85:0;;;;15579:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15579:21:0;;;;9861:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9861:80:0;;;;14793:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14793:33:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14793:33:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14793:33:0;-1:-1:-1;;;;;14793:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14793:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15628:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15628:45:0;;;;15498:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15498:24:0;;;;24676:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24676:98:0;;;;21113:484;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21113:484:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21113:484:0;;;;;;;;;17297:597;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17297:597:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17297:597:0;;;;;;;;;15278:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15278:22:0;;;;15201:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15201:21:0;;;;15605:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15605:18:0;;;;15552:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15552:22:0;;;;23767:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23767:129:0;;;;15227:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15227:21:0;;;;15334:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15334:23:0;;;;24132:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24132:172:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24132:172:0;;;16017:67;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16017:67:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16017:67:0;;;;;;;;;;;18206:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18206:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18206:167:0;;;;;;;;;;;15305:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15305:24:0;;;;23117:420;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23117:420:0;;;;15443:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15443:24:0;;;;16530:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16530:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16530:149:0;;;;;;;;;22449:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22449:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22449:136:0;;;8185:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8185:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8185:103:0;-1:-1:-1;;;;;8185:103:0;;;22653:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22653:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22653:151:0;;;15960:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15960:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15960:44:0;-1:-1:-1;;;;;15960:44:0;;;21971:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21971:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21971:155:0;-1:-1:-1;;;;;21971:155:0;;;8573:141;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;8627:16;;:21;8619:30;;;;;;8674:6;;8658:23;;;-1:-1:-1;;;;;8674:6:0;;;8658:23;;;;;;;;;;;;8707:1;8688:16;:20;8573:141::o;9779:76::-;9844:5;9837:12;;;;;;;;-1:-1:-1;;9837:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9815:13;;9837:12;;9844:5;;9837:12;;9844:5;9837:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9779:76;;:::o;19945:226::-;20061:10;20028:4;20050:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;20050:31:0;;;;;;;;;;;:39;;;20105:36;;;;;;;20028:4;;20050:31;;20061:10;;20105:36;;;;;;;;-1:-1:-1;20159:4:0;19945:226;;;;;:::o;15527:20::-;;;-1:-1:-1;;;;;15527:20:0;;:::o;16689:123::-;16792:12;;16689:123;:::o;23640:117::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;23734:5;:13;;-1:-1:-1;;23734:13:0;-1:-1:-1;;;;;23734:13:0;;;;;;;;;;23640:117::o;24901:1411::-;24971:9;;24950:4;;24982:1;24971:12;24963:45;;;;;-1:-1:-1;;;;;24963:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25030:17;:15;:17::i;:::-;25021:6;:26;;;25073:6;;-1:-1:-1;25060:1168:0;;25110:75;25126:58;25177:6;;25126:46;25153:18;25164:6;;25153;;:10;;:18;;;;:::i;:::-;25126:5;;:22;;15666:7;25126:22;:9;:22;:::i;:::-;:26;:46;:26;:46;:::i;:::-;:50;:58;:50;:58;:::i;:::-;15666:7;;25110:75;:15;:75;:::i;:::-;25102:6;:83;;;25286:5;;-1:-1:-1;;;;;25286:5:0;25270:22;;;;:15;:22;;;;;;25243:79;;25270:51;;:39;;15666:7;25270:39;:26;:39;:::i;:51::-;25259:5;;-1:-1:-1;;;;;25259:5:0;25243:22;;;;:15;:22;;;;;;;:79;:26;:79;:::i;:::-;25231:9;:91;;;25345:27;;25359:12;25345:27;:13;:27;:::i;:::-;25335:9;:37;;;25410:55;;25437:27;;25451:12;25437:27;:13;:27;:::i;25410:55::-;25401:5;;-1:-1:-1;;;;;25401:5:0;25385:22;;;;:15;:22;;;;;:80;25510:9;;25493:45;;25510:27;;25524:12;25510:27;:13;:27;:::i;:::-;25493:12;;;:45;:16;:45;:::i;:::-;25478:12;:60;25060:1168;;;25595:60;25648:6;;25595:48;25624:18;25635:6;;25624;;:10;;:18;;;;:::i;:::-;25595:7;;:24;;15666:7;25595:24;:11;:24;:::i;:60::-;25587:6;:68;;;25717:6;;-1:-1:-1;25707:117:0;;;25804:6;;25795;:15;25707:117;25862:6;;25846:23;;15666:7;;25846:23;:15;:23;:::i;:::-;25838:6;:31;;;25909:5;;-1:-1:-1;;;;;25909:5:0;25893:22;;;;:15;:22;;;;;;:51;;25838:31;25893:39;;15666:7;25893:39;:26;:39;:::i;:51::-;25882:8;:62;;;25997:5;;-1:-1:-1;;;;;25997:5:0;25981:22;;;;:15;:22;;;;;;25968:36;;25882:62;25968:36;:12;:36;:::i;:::-;25957:8;:47;;;26026:26;;26039:12;26026:26;:12;:26;:::i;:::-;26017:8;:35;;;26090:54;;26117:26;;26130:12;26117:26;:12;:26;:::i;:::-;26106:5;;-1:-1:-1;;;;;26106:5:0;26090:22;;;;:15;:22;;;;;;;:54;:26;:54;:::i;:::-;26081:5;;-1:-1:-1;;;;;26081:5:0;26065:22;;;;:15;:22;;;;;:79;26189:8;;26172:44;;26189:26;;26202:12;26189:26;:12;:26;:::i;:::-;26172:12;;;:44;:16;:44;:::i;:::-;26157:12;:59;25060:1168;26255:5;;;;;;;;;-1:-1:-1;;;;;26255:5:0;-1:-1:-1;;;;;26240:26:0;;:28;;;;;-1:-1:-1;;;26240:28:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26240:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26284:6:0;;26275;:15;-1:-1:-1;26304:4:0;;-1:-1:-1;;24901:1411:0;:::o;15362:21::-;;;;:::o;18634:668::-;18759:4;18737:2;-1:-1:-1;;;;;14892:18:0;;;;14884:27;;;;;;-1:-1:-1;;;;;14930:19:0;;14944:4;14930:19;;14922:28;;;;;;-1:-1:-1;;;;;18788:15:0;;;;;;:9;:15;;;;;;18805:1;18788:18;;18780:27;;;;;;-1:-1:-1;;;;;18851:16:0;;;;;;:10;:16;;;;;;;;18868:10;18851:28;;;;;;;;:39;;18884:5;18851:39;:32;:39;:::i;:::-;-1:-1:-1;;;;;18820:16:0;;;;;;:10;:16;;;;;;;;18837:10;18820:28;;;;;;;:70;;;;18927:21;;;:15;:21;;;;;:32;;18953:5;18927:32;:25;:32;:::i;:::-;-1:-1:-1;;;;;18903:21:0;;;;;;:15;:21;;;;;:56;18975:9;;18986:1;18975:12;18972:187;;;19018:18;19030:5;19018:11;:18::i;:::-;19011:6;:25;19069:9;;19080:7;;19054:34;;;;;;;-1:-1:-1;;;;;19069:9:0;;;;19054:34;;;-1:-1:-1;;;;;;;;;;;19054:34:0;;;;;;;;;18972:187;;;19135:6;:12;;;18972:187;19215:6;;-1:-1:-1;;;;;19191:19:0;;;;;;:15;:19;;;;;;:31;;;:23;:31;:::i;:::-;-1:-1:-1;;;;;19169:19:0;;;;;;;:15;:19;;;;;;;;;:53;;;;19261:6;;19242:26;;;;;;;19169:19;;19242:26;;;;-1:-1:-1;;;;;;;;;;;19242:26:0;;;;;;;;-1:-1:-1;19290:4:0;;18634:668;-1:-1:-1;;;;18634:668:0:o;15684:36::-;15719:1;15684:36;:::o;15783:67::-;15824:26;15783:67;:::o;9947:76::-;10008:9;;;;9947:76;:::o;24416:190::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;24576:6;:16;24416:190::o;15727:49::-;-1:-1:-1;;15727:49:0;:::o;23935:156::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;24067:5;:14;23935:156::o;20543:309::-;20708:10;20641:4;20697:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;20697:31:0;;;;;;;;;;:47;;20733:10;20697:47;:35;:47;:::i;:::-;20674:10;20663:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;20663:31:0;;;;;;;;;;;;:81;;;20760:62;;;;;;20663:31;;20760:62;;;;;;;;;;;-1:-1:-1;20840:4:0;20543:309;;;;:::o;15863:27::-;;;;:::o;15903:50::-;;;;;;;;;;;;;:::o;15388:21::-;;;;:::o;15414:24::-;;;;:::o;22191:171::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;22322:9;:22;22191:171::o;16932:140::-;-1:-1:-1;;;;;17044:20:0;17012:7;17044:20;;;:15;:20;;;;;;;16932:140::o;22863:212::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;23015:49;23040:7;23049:6;23057;23015:24;:49::i;:::-;22989:8;:76;;-1:-1:-1;;22989:76:0;-1:-1:-1;;;;;22989:76:0;;;;;;;;;;-1:-1:-1;;;22863:212:0:o;15253:20::-;;;;:::o;15472:21::-;;;-1:-1:-1;;;;;15472:21:0;;:::o;7950:72::-;8010:6;;-1:-1:-1;;;;;8010:6:0;7950:72;:::o;8094:85::-;8167:6;;-1:-1:-1;;;;;8167:6:0;8153:10;:20;;8094:85::o;15579:21::-;;;;:::o;9861:80::-;9928:7;9921:14;;;;;;;;-1:-1:-1;;9921:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9899:13;;9921:14;;9928:7;;9921:14;;9928:7;9921:14;;;;;;;;;;;;;;;;;;;;;;;;14793:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14793:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14793:33:0;;;;-1:-1:-1;;;;;14793:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15628:45::-;15666:7;15628:45;:::o;15498:24::-;;;-1:-1:-1;;;;;15498:24:0;;:::o;24676:98::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;24751:17;:15;:17::i;:::-;24742:6;:26;24676:98::o;21113:484::-;21268:10;21216:4;21257:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;21257:31:0;;;;;;;;;;21303:27;;;21299:191;;21358:10;21381:1;21347:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;21347:31:0;;;;;;;;;:35;21299:191;;;21449:29;:8;21462:15;21449:29;:12;:29;:::i;:::-;21426:10;21415:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;21415:31:0;;;;;;;;;:63;21299:191;21514:10;21535:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;21505:62:0;;21535:31;;;;;;;;;;;21505:62;;;;;;;;;21514:10;21505:62;;;;;;;;;;;-1:-1:-1;21585:4:0;;21113:484;-1:-1:-1;;;21113:484:0:o;17297:597::-;17404:4;17382:2;-1:-1:-1;;;;;14892:18:0;;;;14884:27;;;;;;-1:-1:-1;;;;;14930:19:0;;14944:4;14930:19;;14922:28;;;;;;17442:10;17432:21;;;;:9;:21;;;;;;17455:1;17432:24;;17424:33;;;;;;17516:10;17500:27;;;;:15;:27;;;;;;:38;;17532:5;17500:38;:31;:38;:::i;:::-;17486:10;17470:27;;;;:15;:27;;;;;:68;17554:9;;17565:1;17554:12;17551:195;;;17597:18;17609:5;17597:11;:18::i;:::-;17590:6;:25;17654:9;;17665:7;;17633:40;;;;;;;-1:-1:-1;;;;;17654:9:0;;;;17642:10;;-1:-1:-1;;;;;;;;;;;17633:40:0;;;;;;;;;17551:195;;;17720:6;:12;;;17551:195;17802:6;;-1:-1:-1;;;;;17778:19:0;;;;;;:15;:19;;;;;;:31;;;:23;:31;:::i;:::-;-1:-1:-1;;;;;17756:19:0;;;;;;:15;:19;;;;;;;;;:53;;;;17829:31;;;;;;;17756:19;;17838:10;;-1:-1:-1;;;;;;;;;;;17829:31:0;;;;;;;;;-1:-1:-1;17882:4:0;;17297:597;-1:-1:-1;;;17297:597:0:o;15278:22::-;;;;:::o;15201:21::-;;;;:::o;15605:18::-;;;;:::o;15552:22::-;;;;:::o;23767:129::-;23881:5;;-1:-1:-1;;;;;23881:5:0;23767:129;:::o;15227:21::-;;;;:::o;15334:23::-;;;;:::o;24132:172::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;24274:7;:18;24132:172::o;16017:67::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;18206:167::-;-1:-1:-1;;;;;18338:18:0;;;18306:7;18338:18;;;:10;:18;;;;;;;;:27;;;;;;;;;;;;;18206:167::o;15305:24::-;;;;:::o;23117:420::-;23205:8;;23165:7;;-1:-1:-1;;;;;23205:8:0;23197:31;;23189:40;;;;;;23242:17;23261;23283:8;;;;;;;;;-1:-1:-1;;;;;23283:8:0;-1:-1:-1;;;;;23283:20:0;;:22;;;;;-1:-1:-1;;;23283:22:0;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23283:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23283:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23283:22:0;;;;;;;23241:64;;;;;-1:-1:-1;23241:64:0;;-1:-1:-1;23412:13:0;23428:72;23241:64;23428:57;15187:5;23428:36;23241:64;23442:21;23428:36;:13;:36;:::i;:72::-;23412:88;-1:-1:-1;;;;23117:420:0;:::o;15443:24::-;;;;:::o;16530:149::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;-1:-1:-1;;;;;16637:20:0;;;;;;;:9;:20;;;;;:34;16530:149::o;22449:136::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;22556:3;:15;22449:136::o;8185:103::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;8254:28;8273:8;8254:18;:28::i;:::-;8185:103;:::o;22653:151::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;22768:9;:22;22653:151::o;15960:44::-;;;;;;;;;;;;;:::o;21971:155::-;8064:9;:7;:9::i;:::-;8056:18;;;;;;;;22088:9;:22;;-1:-1:-1;;22088:22:0;-1:-1:-1;;;;;22088:22:0;;;;;;;;;;21971:155::o;10281:136::-;10339:7;10366:43;10370:1;10373;10366:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;10359:50;10281:136;-1:-1:-1;;;10281:136:0:o;10625:250::-;10683:7;10707:6;;10703:47;;;-1:-1:-1;10737:1:0;10730:8;;10703:47;10774:5;;;10778:1;10774;:5;10798;;;;;;;;:10;10790:56;;;;;-1:-1:-1;;;;;10790:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10883:132;10941:7;10968:39;10972:1;10975;10968:39;;;;;;;;;;;;;;;;;;:3;:39::i;10092:181::-;10150:7;10182:5;;;10206:6;;;;10198:46;;;;;-1:-1:-1;;;;;10198:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21635:301;21689:7;21724:26;21743:6;21724:14;21734:3;;21724:5;:9;;:14;;;;:::i;:26::-;21714:7;:36;;;21805:18;;:5;;:18;:9;:18;:::i;:::-;21798:6;:25;21892:7;;21877:9;;-1:-1:-1;;;;;21877:9:0;21861:26;;;;:15;:26;;;;;;:39;;;:30;:39;:::i;:::-;21848:9;;-1:-1:-1;;;;;21848:9:0;21832:26;;;;:15;:26;;;;;:68;-1:-1:-1;;21922:6:0;;;21635:301::o;3138:478::-;3227:12;3253:14;3269;3287:26;3298:6;3306;3287:10;:26::i;:::-;3451:32;;;;-1:-1:-1;;;;;3451:32:0;;;;;;;;;;;;;;;;;;;;;;;;22::-1;26:21;;;22:32;6:49;;3451:32:0;;;;;3441:43;;;;;;3354:251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;3354:251:0;;;;;;;3344:262;;;;;;;;;3138:478;-1:-1:-1;;;;;3138:478:0:o;8294:210::-;8364:16;;:21;8356:30;;;;;;-1:-1:-1;;;;;8401:22:0;;;;8393:31;;;;;;8457:6;;8436:38;;-1:-1:-1;;;;;8436:38:0;;;;8457:6;;8436:38;;8457:6;;8436:38;8481:6;:17;;-1:-1:-1;;8481:17:0;-1:-1:-1;;;;;8481:17:0;;;;;;;;;;8294:210::o;10425:192::-;10511:7;10547:12;10539:6;;;;10531:29;;;;-1:-1:-1;;;;;10531:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10531:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10583:5:0;;;10425:192::o;11023:191::-;11109:7;11144:12;11137:5;;;11129:28;;;;-1:-1:-1;;;;;11129:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;11129:28:0;;11168:9;11184:1;11180;:5;;;;;;;;;11023:191;-1:-1:-1;;;;;11023:191:0:o;2697:349::-;2772:14;;-1:-1:-1;;;;;2823:16:0;;;;;;;;2815:66;;;;;-1:-1:-1;;;;;2815:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2920:6;-1:-1:-1;;;;;2911:15:0;:6;-1:-1:-1;;;;;2911:15:0;;:53;;2949:6;2957;2911:53;;;2930:6;2938;2911:53;2892:72;;-1:-1:-1;2892:72:0;-1:-1:-1;;;;;;2983:20:0;;;;2975:63;;;;;-1:-1:-1;;;;;2975:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2697:349;;;;;:::o;7835:109::-;7075:12;;;;;;;;:31;;;7091:15;:13;:15::i;:::-;7075:47;;;-1:-1:-1;7111:11:0;;;;7110:12;7075:47;7067:106;;;;;;;-1:-1:-1;;;;;7067:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:20;7205:12;;7899:6;:15;;-1:-1:-1;;7899:15:0;-1:-1:-1;;;;;7899:15:0;;;;;;;;;;;7918:16;:20;;;-1:-1:-1;;7224:19:0;;;7205:12;7224:19;;;-1:-1:-1;;7250:18:0;-1:-1:-1;7250:18:0;7287:30;;;7205:12;;;;;;7287:30;;;;;;;;;7835:109::o;9599:174::-;7075:12;;;;;;;;:31;;;7091:15;:13;:15::i;:::-;7075:47;;;-1:-1:-1;7111:11:0;;;;7110:12;7075:47;7067:106;;;;;;;-1:-1:-1;;;;;7067:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:20;7205:12;;;;-1:-1:-1;;7224:19:0;;;;-1:-1:-1;;7250:18:0;;;;;;;;9705:12;;7205;;;;;;9705;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;9724:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;9747:9:0;:20;;;;;;-1:-1:-1;;9747:20:0;;;;;;;;;;:9;7287:30;;;;;9747:20;7287:30;-1:-1:-1;;7287:30:0;;;;;;;;;-1:-1:-1;;9599:174:0:o;7329:142::-;7435:7;7423:20;7458:7;7329:142;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://a3f00a61a0ba449b62c488e2686764a375d79ccfb331e45700dcf80d4f9e99e8
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.