More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 52949 | 499 days ago | IN | 0 ETH | 0.00028537 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
55955 | 498 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53485 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH | ||||
53467 | 499 days ago | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x7c3892BE...341f61dBd The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
EchodexPair
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at lineascan.build/ on 2023-07-19 */ pragma solidity =0.6.6; // SPDX-License-Identifier: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // SPDX-License-Identifier: GPL-3.0 contract EchodexERC20 { using SafeMath for uint256; string public constant name = "Echodex LPs"; string public constant symbol = "Echodex-LP"; uint8 public constant decimals = 18; uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint256) public nonces; event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); constructor() public { uint chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256(bytes("1")), chainId, address(this) ) ); } function _mint(address to, uint256 value) internal { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint256 value) internal { balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve(address owner, address spender, uint256 value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint256 value) private { balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint256 value) external returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint256 value) external returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom( address from, address to, uint256 value ) external returns (bool) { if (allowance[from][msg.sender] != uint256(-1)) { allowance[from][msg.sender] = allowance[from][msg.sender].sub( value ); } _transfer(from, to, value); return true; } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external { require(deadline >= block.timestamp, "Echodex: EXPIRED"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline ) ) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require( recoveredAddress != address(0) && recoveredAddress == owner, "Echodex: INVALID_SIGNATURE" ); _approve(owner, spender, value); } } // SPDX-License-Identifier: GPL-3.0 // a library for performing various math operations library Math { function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // SPDX-License-Identifier: GPL-3.0 // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } } // SPDX-License-Identifier: GPL-3.0 interface IERC20 { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); } // SPDX-License-Identifier: GPL-3.0 interface IEchodexFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint256); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function INIT_CODE_PAIR_HASH() external view returns (bytes32); function calcFeeOrReward(address tokenOut, uint amountOut, uint percent) external view returns(uint amount); function tokenFee() external view returns (address); function tokenReward() external view returns (address); function owner() external view returns (address); function receiveFeeAddress() external view returns (address); function setTokenFee(address) external; function setReceiveFeeAddress(address) external; function rewardPercent(address pair) external view returns (uint percent); function setRefundPercentPair(address, uint) external; function setFeePath(address, address[] calldata) external; function feePathLength(address) external view returns(uint); } // SPDX-License-Identifier: GPL-3.0 interface IEchodexCallee { function echodexCall( address sender, uint256 amount0, uint256 amount1, bytes calldata data ) external; } // SPDX-License-Identifier: GPL-3.0 interface IxECP { function mintReward(address _user, uint256 _amount) external; function setMinter(address _minter) external; } // SPDX-License-Identifier: GPL-3.0 contract EchodexPair is EchodexERC20 { using SafeMath for uint; using UQ112x112 for uint224; uint public constant MINIMUM_LIQUIDITY = 10**3; bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)'))); uint private constant FEE_DENOMINATOR = 10000; uint private constant MAX_PAY_DEFAULT_PERCENT = 30; // 0.3% uint private constant MAX_PAY_WITH_TOKEN_FEE_PERCENT = 10; // 0.1% address public immutable factory; address public token0; address public token1; uint112 private reserve0; // uses single storage slot, accessible via getReserves uint112 private reserve1; // uses single storage slot, accessible via getReserves uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves uint public price0CumulativeLast; uint public price1CumulativeLast; uint public totalFee; uint public currentFee; struct SwapState { uint balance0; uint balance1; uint amount0In; uint amount1In; uint112 _reserve0; uint112 _reserve1; } uint private unlocked = 1; modifier lock() { require(unlocked == 1, 'Echodex: LOCKED'); unlocked = 0; _; unlocked = 1; } function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } function _safeTransfer(address token, address to, uint value) private { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'Echodex: TRANSFER_FAILED'); } 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, uint amountTokenFee, uint amountTokenReward ); event Sync(uint112 reserve0, uint112 reserve1); event AddFee(uint amount); constructor() public { factory = msg.sender; } // called once by the factory at time of deployment function initialize(address _token0, address _token1) external { require(msg.sender == factory, 'Echodex: FORBIDDEN'); // sufficient check token0 = _token0; token1 = _token1; } // update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private { require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'Echodex: OVERFLOW'); uint32 blockTimestamp = uint32(block.timestamp % 2**32); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { // * never overflows, and + overflow is desired price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed; price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed; } reserve0 = uint112(balance0); reserve1 = uint112(balance1); blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } // pay fee function _payFee(uint fee) private { //payWithTokenFee = true address tokenFee = IEchodexFactory(factory).tokenFee(); address receiveFeeAddress = IEchodexFactory(factory).receiveFeeAddress(); require(currentFee >= fee, 'Echodex: INSUFFICIENT_FEE_TOKEN'); currentFee = currentFee - fee; _safeTransfer(tokenFee, receiveFeeAddress, fee); } // this low-level function should be called from a contract which performs important safety checks function mint(address to) external lock returns (uint liquidity) { (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings uint balance0 = IERC20(token0).balanceOf(address(this)); uint balance1 = IERC20(token1).balanceOf(address(this)); address tokenFee = IEchodexFactory(factory).tokenFee(); if (token0 == tokenFee) { balance0 = balance0.sub(currentFee); } if (token1 == tokenFee) { balance1 = balance1.sub(currentFee); } uint amount0 = balance0.sub(_reserve0); uint amount1 = balance1.sub(_reserve1); uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens } else { liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1); } require(liquidity > 0, 'Echodex: INSUFFICIENT_LIQUIDITY_MINTED'); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); emit Mint(msg.sender, amount0, amount1); } // this low-level function should be called from a contract which performs important safety checks function burn(address to) external lock returns (uint amount0, uint amount1) { (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint balance0 = IERC20(_token0).balanceOf(address(this)); uint balance1 = IERC20(_token1).balanceOf(address(this)); address tokenFee = IEchodexFactory(factory).tokenFee(); if (token0 == tokenFee) { balance0 = balance0.sub(currentFee); } if (token1 == tokenFee) { balance1 = balance1.sub(currentFee); } uint liquidity = balanceOf[address(this)]; uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution require(amount0 > 0 && amount1 > 0, 'Echodex: INSUFFICIENT_LIQUIDITY_BURNED'); _burn(address(this), liquidity); _safeTransfer(_token0, to, amount0); _safeTransfer(_token1, to, amount1); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); if (token0 == tokenFee) { balance0 = balance0.sub(currentFee); } if (token1 == tokenFee) { balance1 = balance1.sub(currentFee); } _update(balance0, balance1, _reserve0, _reserve1); emit Burn(msg.sender, amount0, amount1, to); } function _preSwap(uint amount0Out, uint amount1Out, address to) private view returns(SwapState memory state){ require(amount0Out > 0 || amount1Out > 0, 'Echodex: INSUFFICIENT_OUTPUT_AMOUNT'); (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Echodex: INSUFFICIENT_LIQUIDITY'); state = SwapState({ balance0: 0, balance1: 0, amount0In: 0, amount1In: 0, _reserve0: _reserve0, _reserve1: _reserve1 }); require(to != token0 && to != token1, 'Echodex: INVALID_TO'); } // this low-level function should be called from a contract which performs important safety checks function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock { // payWithTokenFee = false SwapState memory state = _preSwap(amount0Out, amount1Out, to); uint amountOut = amount0Out > 0 ? amount0Out : amount1Out; address tokenOut = amount0Out > 0 ? token0 : token1; uint fee = amountOut.mul(MAX_PAY_DEFAULT_PERCENT) / FEE_DENOMINATOR; // calc reward uint rewardPercent = IEchodexFactory(factory).rewardPercent(address(this)); uint amountTokenReward = 0; if(rewardPercent > 0 && IEchodexFactory(factory).feePathLength(tokenOut) > 0) { amountTokenReward = IEchodexFactory(factory).calcFeeOrReward(tokenOut, amountOut, rewardPercent); IxECP(IEchodexFactory(factory).tokenReward()).mintReward(to, amountTokenReward); } _safeTransfer(tokenOut, to, amountOut.sub(fee)); _safeTransfer(tokenOut, IEchodexFactory(factory).receiveFeeAddress(), fee); if (data.length > 0){ if(amount0Out>0){ IEchodexCallee(to).echodexCall(msg.sender, amountOut.sub(fee), amount1Out, data); }else if(amount1Out>0){ IEchodexCallee(to).echodexCall(msg.sender, amount0Out, amountOut.sub(fee), data); } } state.balance0 = IERC20(token0).balanceOf(address(this)); state.balance1 = IERC20(token1).balanceOf(address(this)); { // avoids stack too deep errors address tokenFee = IEchodexFactory(factory).tokenFee(); if (token0 == tokenFee) { state.balance0 = state.balance0.sub(currentFee); } if (token1 == tokenFee) { state.balance1 = state.balance1.sub(currentFee); } } state.amount0In = state.balance0 > state._reserve0 - amount0Out ? state.balance0 - (state._reserve0 - amount0Out) : 0; state.amount1In = state.balance1 > state._reserve1 - amount1Out ? state.balance1 - (state._reserve1 - amount1Out) : 0; require(state.amount0In > 0 || state.amount1In > 0, 'Echodex: INSUFFICIENT_INPUT_AMOUNT'); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors require(state.balance0.mul(state.balance1) >= uint(state._reserve0).mul(state._reserve1), 'Echodex: K'); } _update(state.balance0, state.balance1, state._reserve0, state._reserve1); emit Swap(msg.sender, state.amount0In, state.amount1In, amount0Out, amount1Out, to, 0, amountTokenReward); } function swapPayWithTokenFee(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock { // payWithTokenFee = true SwapState memory state = _preSwap(amount0Out, amount1Out, to); uint amountOut = amount0Out > 0 ? amount0Out : amount1Out; address tokenOut = amount0Out > 0 ? token0 : token1; //fee uint fee = IEchodexFactory(factory).calcFeeOrReward(tokenOut, amountOut, MAX_PAY_WITH_TOKEN_FEE_PERCENT); // 0.1% _payFee(fee); _safeTransfer(tokenOut, to, amountOut); if (data.length > 0) IEchodexCallee(to).echodexCall(msg.sender, amount0Out, amount1Out, data); state.balance0 = IERC20(token0).balanceOf(address(this)); state.balance1 = IERC20(token1).balanceOf(address(this)); address tokenFee = IEchodexFactory(factory).tokenFee(); if (token0 == tokenFee) { state.balance0 = state.balance0.sub(currentFee); } if (token1 == tokenFee) { state.balance1 = state.balance1.sub(currentFee); } state.amount0In = state.balance0 > state._reserve0 - amount0Out ? state.balance0 - (state._reserve0 - amount0Out) : 0; state.amount1In = state.balance1 > state._reserve1 - amount1Out ? state.balance1 - (state._reserve1 - amount1Out) : 0; require(state.amount0In > 0 || state.amount1In > 0, 'Echodex: INSUFFICIENT_INPUT_AMOUNT'); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors require(state.balance0.mul(state.balance1) >= uint(state._reserve0).mul(state._reserve1), 'Echodex: K'); } _update(state.balance0, state.balance1, state._reserve0, state._reserve1); emit Swap(msg.sender, state.amount0In, state.amount1In, amount0Out, amount1Out, to, fee, 0); } function addFee(uint amount) external lock { address tokenFee = IEchodexFactory(factory).tokenFee(); IERC20(tokenFee).transferFrom(msg.sender, address(this), amount); totalFee = totalFee + amount; currentFee = currentFee + amount; emit AddFee(amount); } function withdrawFee(uint amount) external lock { address owner = IEchodexFactory(factory).owner(); require(owner == msg.sender, "Echodex: FORBIDDEN"); require(amount <= currentFee, "Echodex: INSUFFICIENT_INPUT_AMOUNT"); address tokenFee = IEchodexFactory(factory).tokenFee(); address receiveFeeAddress = IEchodexFactory(factory).receiveFeeAddress(); totalFee = totalFee - amount; currentFee = currentFee - amount; _safeTransfer(tokenFee, receiveFeeAddress, amount); } // force balances to match reserves function skim(address to) external lock { address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint balance0 = IERC20(_token0).balanceOf(address(this)); uint balance1 = IERC20(_token1).balanceOf(address(this)); address tokenFee = IEchodexFactory(factory).tokenFee(); if (_token0 == tokenFee) { balance0 = balance0.sub(currentFee); } if (_token1 == tokenFee) { balance1 = balance1.sub(currentFee); } _safeTransfer(_token0, to, balance0.sub(reserve0)); _safeTransfer(_token1, to, balance1.sub(reserve1)); } // force reserves to match balances function sync() external lock { uint balance0 = IERC20(token0).balanceOf(address(this)); uint balance1 = IERC20(token1).balanceOf(address(this)); address tokenFee = IEchodexFactory(factory).tokenFee(); if (token0 == tokenFee) { balance0 = balance0.sub(currentFee); } if (token1 == tokenFee) { balance1 = balance1.sub(currentFee); } _update(balance0, balance1, reserve0, reserve1); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokenFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenReward","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swapPayWithTokenFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806365306a011161010f578063bc25cf77116100a2578063d505accf11610071578063d505accf1461063e578063da3c300d1461068f578063dd62ed3e14610697578063fff6cae9146106c5576101e5565b8063bc25cf77146105eb578063be35761614610611578063c45a01551461062e578063d21220a714610636576101e5565b806389afcb44116100de57806389afcb441461057057806395d89b41146105af578063a9059cbb146105b7578063ba9a7a56146105e3576101e5565b806365306a01146104725780636a627842146104fe57806370a08231146105245780637ecebe001461054a576101e5565b806321307bac116101875780633644e515116101565780633644e5151461042c578063485cc955146104345780635909c0d5146104625780635a3d54931461046a576101e5565b806321307bac146103b357806323b872dd146103d057806330adf81f14610406578063313ce5671461040e576101e5565b8063095ea7b3116101c3578063095ea7b31461032d5780630dfe16811461036d57806318160ddd146103915780631df4ccfc146103ab576101e5565b8063022c0d9f146101ea57806306fdde03146102785780630902f1ac146102f5575b600080fd5b6102766004803603608081101561020057600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561023757600080fd5b82018360208201111561024957600080fd5b8035906020019184600183028401116401000000008311171561026b57600080fd5b5090925090506106cd565b005b6102806110ad565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ba5781810151838201526020016102a2565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fd6110d4565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103596004803603604081101561034357600080fd5b506001600160a01b0381351690602001356110fe565b604080519115158252519081900360200190f35b610375611115565b604080516001600160a01b039092168252519081900360200190f35b610399611124565b60408051918252519081900360200190f35b61039961112a565b610276600480360360208110156103c957600080fd5b5035611130565b610359600480360360608110156103e657600080fd5b506001600160a01b038135811691602081013590911690604001356112d9565b610399611373565b610416611397565b6040805160ff9092168252519081900360200190f35b61039961139c565b6102766004803603604081101561044a57600080fd5b506001600160a01b03813581169160200135166113a2565b610399611442565b610399611448565b6102766004803603608081101561048857600080fd5b8135916020810135916001600160a01b0360408301351691908101906080810160608201356401000000008111156104bf57600080fd5b8201836020820111156104d157600080fd5b803590602001918460018302840111640100000000831117156104f357600080fd5b50909250905061144e565b6103996004803603602081101561051457600080fd5b50356001600160a01b0316611a41565b6103996004803603602081101561053a57600080fd5b50356001600160a01b0316611dfa565b6103996004803603602081101561056057600080fd5b50356001600160a01b0316611e0c565b6105966004803603602081101561058657600080fd5b50356001600160a01b0316611e1e565b6040805192835260208301919091528051918290030190f35b6102806122cb565b610359600480360360408110156105cd57600080fd5b506001600160a01b0381351690602001356122f1565b6103996122fe565b6102766004803603602081101561060157600080fd5b50356001600160a01b0316612304565b6102766004803603602081101561062757600080fd5b5035612594565b610375612844565b610375612868565b610276600480360360e081101561065457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612877565b610399612a77565b610399600480360360408110156106ad57600080fd5b506001600160a01b0381358116916020013516612a7d565b610276612a9a565b600c54600114610716576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c55610723613777565b61072e868686612cfb565b9050600080871161073f5785610741565b865b9050600080881161075d576006546001600160a01b031661076a565b6005546001600160a01b03165b9050600061271061078284601e63ffffffff612e8816565b8161078957fe5b04905060007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663ec07d602306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561080457600080fd5b505afa158015610818573d6000803e3d6000fd5b505050506040513d602081101561082e57600080fd5b50519050600081158015906108e4575060007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b03166306afed34866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156108b657600080fd5b505afa1580156108ca573d6000803e3d6000fd5b505050506040513d60208110156108e057600080fd5b5051115b15610a96577f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663865cae1d8587856040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001838152602001828152602001935050505060206040518083038186803b15801561096f57600080fd5b505afa158015610983573d6000803e3d6000fd5b505050506040513d602081101561099957600080fd5b505160408051636e66f6e960e01b815290519192506001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3991691636e66f6e991600480820192602092909190829003018186803b1580156109ff57600080fd5b505afa158015610a13573d6000803e3d6000fd5b505050506040513d6020811015610a2957600080fd5b505160408051634d24848760e11b81526001600160a01b038c811660048301526024820185905291519190921691639a49090e91604480830192600092919082900301818387803b158015610a7d57600080fd5b505af1158015610a91573d6000803e3d6000fd5b505050505b610ab0848a610aab888763ffffffff612ee816565b612f45565b610b3f847f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663769ac6b36040518163ffffffff1660e01b815260040160206040518083038186803b158015610b0d57600080fd5b505afa158015610b21573d6000803e3d6000fd5b505050506040513d6020811015610b3757600080fd5b505185612f45565b8615610cdd578a15610c13576001600160a01b038916630c6f72bc33610b6b888763ffffffff612ee816565b8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610bf657600080fd5b505af1158015610c0a573d6000803e3d6000fd5b50505050610cdd565b8915610cdd576001600160a01b038916630c6f72bc338d610c3a898863ffffffff612ee816565b8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610cc457600080fd5b505af1158015610cd8573d6000803e3d6000fd5b505050505b600554604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610d2857600080fd5b505afa158015610d3c573d6000803e3d6000fd5b505050506040513d6020811015610d5257600080fd5b50518652600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610da157600080fd5b505afa158015610db5573d6000803e3d6000fd5b505050506040513d6020811015610dcb57600080fd5b5051602087810191909152604080516322acc89b60e11b815290516000926001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb399169263455991369260048083019392829003018186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d6020811015610e5f57600080fd5b50516005549091506001600160a01b0380831691161415610e9157600b548751610e8e9163ffffffff612ee816565b87525b6006546001600160a01b0382811691161415610ec457600b546020880151610ebe9163ffffffff612ee816565b60208801525b508a86608001516001600160701b031603866000015111610ee6576000610efd565b8a86608001516001600160701b0316038660000151035b866040018181525050898660a001516001600160701b031603866020015111610f27576000610f3e565b898660a001516001600160701b0316038660200151035b60608701526040860151151580610f59575060008660600151115b610f945760405162461bcd60e51b815260040180806020018281038252602281526020018061380c6022913960400191505060405180910390fd5b610fc18660a001516001600160701b031687608001516001600160701b0316612e8890919063ffffffff16565b60208701518751610fd79163ffffffff612e8816565b1015611017576040805162461bcd60e51b815260206004820152600a6024820152694563686f6465783a204b60b01b604482015290519081900360640190fd5b6110338660000151876020015188608001518960a001516130df565b604080870151606080890151835192835260208301528183018e905281018c90526000608082015260a0810183905290516001600160a01b038b169133917f86704a214f4a8dc5b63516fb3282dfac8cc9aec7417cfa5a1444feafffcdd31e9181900360c00190a350506001600c55505050505050505050565b6040518060400160405280600b81526020016a4563686f646578204c507360a81b81525081565b6007546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b600061110b3384846132a2565b5060015b92915050565b6005546001600160a01b031681565b60005481565b600a5481565b600c54600114611179576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c8190555060007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663455991366040518163ffffffff1660e01b815260040160206040518083038186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d602081101561120657600080fd5b5051604080516323b872dd60e01b81523360048201523060248201526044810185905290519192506001600160a01b038316916323b872dd916064808201926020929091908290030181600087803b15801561126157600080fd5b505af1158015611275573d6000803e3d6000fd5b505050506040513d602081101561128b57600080fd5b5050600a805483019055600b8054830190556040805183815290517f110df32990877cf4a7e3ada351560c9783fb2dc05ab27e94e3118df37b23de7f9181900360200190a150506001600c55565b6001600160a01b03831660009081526002602090815260408083203384529091528120546000191461135e576001600160a01b0384166000908152600260209081526040808320338452909152902054611339908363ffffffff612ee816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b611369848484613304565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b336001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3991614611414576040805162461bcd60e51b815260206004820152601260248201527122b1b437b232bc1d102327a92124a22222a760711b604482015290519081900360640190fd5b600580546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055565b60085481565b60095481565b600c54600114611497576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c556114a4613777565b6114af868686612cfb565b905060008087116114c057856114c2565b865b905060008088116114de576006546001600160a01b03166114eb565b6005546001600160a01b03165b905060007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663865cae1d8385600a6040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001838152602001828152602001935050505060206040518083038186803b15801561157657600080fd5b505afa15801561158a573d6000803e3d6000fd5b505050506040513d60208110156115a057600080fd5b505190506115ad816133be565b6115b8828885612f45565b841561167357866001600160a01b0316630c6f72bc338b8b8a8a6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561165a57600080fd5b505af115801561166e573d6000803e3d6000fd5b505050505b600554604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156116be57600080fd5b505afa1580156116d2573d6000803e3d6000fd5b505050506040513d60208110156116e857600080fd5b50518452600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561173757600080fd5b505afa15801561174b573d6000803e3d6000fd5b505050506040513d602081101561176157600080fd5b5051602085810191909152604080516322acc89b60e11b815290516000926001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb399169263455991369260048083019392829003018186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d60208110156117f557600080fd5b50516005549091506001600160a01b038083169116141561182757600b5485516118249163ffffffff612ee816565b85525b6006546001600160a01b038281169116141561185a57600b5460208601516118549163ffffffff612ee816565b60208601525b8985608001516001600160701b03160385600001511161187b576000611892565b8985608001516001600160701b0316038560000151035b856040018181525050888560a001516001600160701b0316038560200151116118bc5760006118d3565b888560a001516001600160701b0316038560200151035b606086015260408501511515806118ee575060008560600151115b6119295760405162461bcd60e51b815260040180806020018281038252602281526020018061380c6022913960400191505060405180910390fd5b6119568560a001516001600160701b031686608001516001600160701b0316612e8890919063ffffffff16565b6020860151865161196c9163ffffffff612e8816565b10156119ac576040805162461bcd60e51b815260206004820152600a6024820152694563686f6465783a204b60b01b604482015290519081900360640190fd5b6119c88560000151866020015187608001518860a001516130df565b604080860151606080880151835192835260208301528183018d905281018b905260808101849052600060a082015290516001600160a01b038a169133917f86704a214f4a8dc5b63516fb3282dfac8cc9aec7417cfa5a1444feafffcdd31e9181900360c00190a350506001600c555050505050505050565b6000600c54600114611a8c576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c81905580611a9c6110d4565b50600554604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015611af057600080fd5b505afa158015611b04573d6000803e3d6000fd5b505050506040513d6020811015611b1a57600080fd5b5051600654604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611b6d57600080fd5b505afa158015611b81573d6000803e3d6000fd5b505050506040513d6020811015611b9757600080fd5b5051604080516322acc89b60e11b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb39916916345599136916004808301926020929190829003018186803b158015611bff57600080fd5b505afa158015611c13573d6000803e3d6000fd5b505050506040513d6020811015611c2957600080fd5b50516005549091506001600160a01b0380831691161415611c5b57600b54611c5890849063ffffffff612ee816565b92505b6006546001600160a01b0382811691161415611c8857600b54611c8590839063ffffffff612ee816565b91505b6000611ca3846001600160701b03881663ffffffff612ee816565b90506000611cc0846001600160701b03881663ffffffff612ee816565b60005490915080611d0957611cf56103e8611ce9611ce4868663ffffffff612e8816565b61354a565b9063ffffffff612ee816565b9850611d0460006103e861359c565b611d58565b611d556001600160701b038916611d26858463ffffffff612e8816565b81611d2d57fe5b046001600160701b038916611d48858563ffffffff612e8816565b81611d4f57fe5b04613632565b98505b60008911611d975760405162461bcd60e51b81526004018080602001828103825260268152602001806137e66026913960400191505060405180910390fd5b611da18a8a61359c565b611dad86868a8a6130df565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b60046020526000908152604090205481565b600080600c54600114611e6a576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c81905580611e7a6110d4565b50600554600654604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b158015611ed657600080fd5b505afa158015611eea573d6000803e3d6000fd5b505050506040513d6020811015611f0057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015611f4e57600080fd5b505afa158015611f62573d6000803e3d6000fd5b505050506040513d6020811015611f7857600080fd5b5051604080516322acc89b60e11b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb39916916345599136916004808301926020929190829003018186803b158015611fe057600080fd5b505afa158015611ff4573d6000803e3d6000fd5b505050506040513d602081101561200a57600080fd5b50516005549091506001600160a01b038083169116141561203c57600b5461203990849063ffffffff612ee816565b92505b6006546001600160a01b038281169116141561206957600b5461206690839063ffffffff612ee816565b91505b3060009081526001602052604081205490548061208c838763ffffffff612e8816565b8161209357fe5b049a50806120a7838663ffffffff612e8816565b816120ae57fe5b04995060008b1180156120c1575060008a115b6120fc5760405162461bcd60e51b81526004018080602001828103825260268152602001806137c06026913960400191505060405180910390fd5b6121063083613648565b612111878d8d612f45565b61211c868d8c612f45565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561216257600080fd5b505afa158015612176573d6000803e3d6000fd5b505050506040513d602081101561218c57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156121d857600080fd5b505afa1580156121ec573d6000803e3d6000fd5b505050506040513d602081101561220257600080fd5b50516005549094506001600160a01b038481169116141561223457600b5461223190869063ffffffff612ee816565b94505b6006546001600160a01b038481169116141561226157600b5461225e90859063ffffffff612ee816565b93505b61226d85858b8b6130df565b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600a81526020016904563686f6465782d4c560b41b81525081565b600061110b338484613304565b6103e881565b600c5460011461234d576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c819055600554600654604080516370a0823160e01b815230600482015290516001600160a01b0393841694929093169284916370a08231916024808301926020929190829003018186803b1580156123a857600080fd5b505afa1580156123bc573d6000803e3d6000fd5b505050506040513d60208110156123d257600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d602081101561244a57600080fd5b5051604080516322acc89b60e11b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb39916916345599136916004808301926020929190829003018186803b1580156124b257600080fd5b505afa1580156124c6573d6000803e3d6000fd5b505050506040513d60208110156124dc57600080fd5b505190506001600160a01b03858116908216141561250b57600b5461250890849063ffffffff612ee816565b92505b806001600160a01b0316846001600160a01b0316141561253c57600b5461253990839063ffffffff612ee816565b91505b6007546125619086908890610aab9087906001600160701b031663ffffffff612ee816565b6007546125879085908890610aab908690600160701b90046001600160701b0316612ee8565b50506001600c5550505050565b600c546001146125dd576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c8190555060007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561264057600080fd5b505afa158015612654573d6000803e3d6000fd5b505050506040513d602081101561266a57600080fd5b505190506001600160a01b03811633146126c0576040805162461bcd60e51b815260206004820152601260248201527122b1b437b232bc1d102327a92124a22222a760711b604482015290519081900360640190fd5b600b548211156127015760405162461bcd60e51b815260040180806020018281038252602281526020018061380c6022913960400191505060405180910390fd5b60007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663455991366040518163ffffffff1660e01b815260040160206040518083038186803b15801561275c57600080fd5b505afa158015612770573d6000803e3d6000fd5b505050506040513d602081101561278657600080fd5b50516040805163769ac6b360e01b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb399169163769ac6b3916004808301926020929190829003018186803b1580156127ee57600080fd5b505afa158015612802573d6000803e3d6000fd5b505050506040513d602081101561281857600080fd5b5051600a80548690039055600b805486900390559050612839828286612f45565b50506001600c555050565b7f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb39981565b6006546001600160a01b031681565b428410156128bf576040805162461bcd60e51b815260206004820152601060248201526f1158da1bd9195e0e881156141254915160821b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156129da573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590612a105750886001600160a01b0316816001600160a01b0316145b612a61576040805162461bcd60e51b815260206004820152601a60248201527f4563686f6465783a20494e56414c49445f5349474e4154555245000000000000604482015290519081900360640190fd5b612a6c8989896132a2565b505050505050505050565b600b5481565b600260209081526000928352604080842090915290825290205481565b600c54600114612ae3576040805162461bcd60e51b815260206004820152600f60248201526e1158da1bd9195e0e881313d0d2d151608a1b604482015290519081900360640190fd5b6000600c819055600554604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612b3557600080fd5b505afa158015612b49573d6000803e3d6000fd5b505050506040513d6020811015612b5f57600080fd5b5051600654604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612bb257600080fd5b505afa158015612bc6573d6000803e3d6000fd5b505050506040513d6020811015612bdc57600080fd5b5051604080516322acc89b60e11b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb39916916345599136916004808301926020929190829003018186803b158015612c4457600080fd5b505afa158015612c58573d6000803e3d6000fd5b505050506040513d6020811015612c6e57600080fd5b50516005549091506001600160a01b0380831691161415612ca057600b54612c9d90849063ffffffff612ee816565b92505b6006546001600160a01b0382811691161415612ccd57600b54612cca90839063ffffffff612ee816565b91505b600754612cf190849084906001600160701b0380821691600160701b9004166130df565b50506001600c5550565b612d03613777565b6000841180612d125750600083115b612d4d5760405162461bcd60e51b815260040180806020018281038252602381526020018061384f6023913960400191505060405180910390fd5b600080612d586110d4565b5091509150816001600160701b031686108015612d7d5750806001600160701b031685105b612dce576040805162461bcd60e51b815260206004820152601f60248201527f4563686f6465783a20494e53554646494349454e545f4c495155494449545900604482015290519081900360640190fd5b6040805160c08101825260008082526020820181905291810182905260608101919091526001600160701b038084166080830152821660a08201526005549093506001600160a01b03858116911614801590612e3857506006546001600160a01b03858116911614155b612e7f576040805162461bcd60e51b81526020600482015260136024820152724563686f6465783a20494e56414c49445f544f60681b604482015290519081900360640190fd5b50509392505050565b600082612e975750600061110f565b82820282848281612ea457fe5b0414612ee15760405162461bcd60e51b815260040180806020018281038252602181526020018061382e6021913960400191505060405180910390fd5b9392505050565b600082821115612f3f576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310612ff25780518252601f199092019160209182019101612fd3565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613054576040519150601f19603f3d011682016040523d82523d6000602084013e613059565b606091505b5091509150818015613087575080511580613087575080806020019051602081101561308457600080fd5b50515b6130d8576040805162461bcd60e51b815260206004820152601860248201527f4563686f6465783a205452414e534645525f4641494c45440000000000000000604482015290519081900360640190fd5b5050505050565b6001600160701b0384118015906130fd57506001600160701b038311155b613142576040805162461bcd60e51b81526020600482015260116024820152704563686f6465783a204f564552464c4f5760781b604482015290519081900360640190fd5b60075463ffffffff42811691600160e01b9004811682039081161580159061317257506001600160701b03841615155b801561318657506001600160701b03831615155b156131f7578063ffffffff166131b48561319f866136e6565b6001600160e01b03169063ffffffff6136f816565b600880546001600160e01b03929092169290920201905563ffffffff81166131df8461319f876136e6565b600980546001600160e01b0392909216929092020190555b600780546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526001602052604090205461332d908263ffffffff612ee816565b6001600160a01b038085166000908152600160205260408082209390935590841681522054613362908263ffffffff61371d16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60007f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb3996001600160a01b031663455991366040518163ffffffff1660e01b815260040160206040518083038186803b15801561341957600080fd5b505afa15801561342d573d6000803e3d6000fd5b505050506040513d602081101561344357600080fd5b50516040805163769ac6b360e01b815290519192506000916001600160a01b037f0000000000000000000000006d1063f2187442cc9adbfad2f55a96b846fcb399169163769ac6b3916004808301926020929190829003018186803b1580156134ab57600080fd5b505afa1580156134bf573d6000803e3d6000fd5b505050506040513d60208110156134d557600080fd5b5051600b54909150831115613531576040805162461bcd60e51b815260206004820152601f60248201527f4563686f6465783a20494e53554646494349454e545f4645455f544f4b454e00604482015290519081900360640190fd5b600b80548490039055613545828285612f45565b505050565b6000600382111561358d575080600160028204015b818110156135875780915060028182858161357657fe5b04018161357f57fe5b04905061355f565b50613597565b8115613597575060015b919050565b6000546135af908263ffffffff61371d16565b60009081556001600160a01b0383168152600160205260409020546135da908263ffffffff61371d16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106136415781612ee1565b5090919050565b6001600160a01b038216600090815260016020526040902054613671908263ffffffff612ee816565b6001600160a01b0383166000908152600160205260408120919091555461369e908263ffffffff612ee816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161371557fe5b049392505050565b600082820183811015612ee1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6040518060c001604052806000815260200160008152602001600081526020016000815260200160006001600160701b0316815260200160006001600160701b03168152509056fe4563686f6465783a20494e53554646494349454e545f4c49515549444954595f4255524e45444563686f6465783a20494e53554646494349454e545f4c49515549444954595f4d494e5445444563686f6465783a20494e53554646494349454e545f494e5055545f414d4f554e54536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774563686f6465783a20494e53554646494349454e545f4f55545055545f414d4f554e54a26469706673582212205b31707c1cdfb7881ad12b759d25caf4014a1a78f864020c50633d19ebdb6f9f64736f6c63430006060033
Deployed Bytecode Sourcemap
15313:14759:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15313:14759:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;23510:2598:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;23510:2598:0;;;;;;;;-1:-1:-1;;;;;23510:2598:0;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;23510:2598:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;23510:2598:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;23510:2598:0;;-1:-1:-1;23510:2598:0;-1:-1:-1;23510:2598:0;:::i;:::-;;7534:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7534:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16653:231;;;:::i;:::-;;;;-1:-1:-1;;;;;16653:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9700:150;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;9700:150:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15803:21;;;:::i;:::-;;;;-1:-1:-1;;;;;15803:21:0;;;;;;;;;;;;;;7677:26;;;:::i;:::-;;;;;;;;;;;;;;;;16234:20;;;:::i;27953:305::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27953:305:0;;:::i;10008:373::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;10008:373:0;;;;;;;;;;;;;;;;;:::i;7977:117::-;;;:::i;7635:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7834:31;;;:::i;17806:208::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17806:208:0;;;;;;;;;;:::i;16154:32::-;;;:::i;16193:::-;;;:::i;26116:1829::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;26116:1829:0;;;;;;;;-1:-1:-1;;;;;26116:1829:0;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;26116:1829:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;26116:1829:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;26116:1829:0;;-1:-1:-1;26116:1829:0;-1:-1:-1;26116:1829:0;:::i;19481:1349::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19481:1349:0;-1:-1:-1;;;;;19481:1349:0;;:::i;7710:44::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;7710:44:0;-1:-1:-1;;;;;7710:44:0;;:::i;8101:41::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8101:41:0;-1:-1:-1;;;;;8101:41:0;;:::i;20942:1767::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20942:1767:0;-1:-1:-1;;;;;20942:1767:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7584:44;;;:::i;9858:142::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;9858:142:0;;;;;;;;:::i;15424:46::-;;;:::i;28864:667::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28864:667:0;-1:-1:-1;;;;;28864:667:0;;:::i;28266:549::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28266:549:0;;:::i;15764:32::-;;;:::i;15831:21::-;;;:::i;10389:996::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;10389:996:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16261:22::-;;;:::i;7761:64::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7761:64:0;;;;;;;;;;:::i;29580:489::-;;;:::i;23510:2598::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;23643:22:::1;;:::i;:::-;23668:36;23677:10;23689;23701:2;23668:8;:36::i;:::-;23643:61;;23717:14;23747:1:::0;23734:10:::1;:14;:40;;23764:10;23734:40;;;23751:10;23734:40;23717:57;;23785:16;23817:1:::0;23804:10:::1;:14;:32;;23830:6;::::0;-1:-1:-1;;;;;23830:6:0::1;23804:32;;;23821:6;::::0;-1:-1:-1;;;;;23821:6:0::1;23804:32;23785:51:::0;-1:-1:-1;23847:8:0::1;15613:5;23858:38;:9:::0;15673:2:::1;23858:38;:13;:38;:::i;:::-;:56;;;;;;23847:67;;23951:18;23988:7;-1:-1:-1::0;;;;;23972:38:0::1;;24019:4;23972:53;;;;;;;;;;;;;-1:-1:-1::0;;;;;23972:53:0::1;-1:-1:-1::0;;;;;23972:53:0::1;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;23972:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;23972:53:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;23972:53:0;;-1:-1:-1;24036:22:0::1;24076:17:::0;;;;;:73:::1;;;24148:1;24113:7;-1:-1:-1::0;;;;;24097:38:0::1;;24136:8;24097:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;24097:48:0::1;-1:-1:-1::0;;;;;24097:48:0::1;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24097:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24097:48:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24097:48:0;:52:::1;24076:73;24073:295;;;24202:7;-1:-1:-1::0;;;;;24186:40:0::1;;24227:8;24237:9;24248:13;24186:76;;;;;;;;;;;;;-1:-1:-1::0;;;;;24186:76:0::1;-1:-1:-1::0;;;;;24186:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24186:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24186:76:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24186:76:0;24283:38:::1;::::0;;-1:-1:-1;;;24283:38:0;;;;24186:76;;-1:-1:-1;;;;;;24299:7:0::1;24283:36;::::0;::::1;::::0;:38:::1;::::0;;::::1;::::0;24186:76:::1;::::0;24283:38;;;;;;;;:36;:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;24283:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24283:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24283:38:0;24277:79:::1;::::0;;-1:-1:-1;;;24277:79:0;;-1:-1:-1;;;;;24277:79:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:56;;;::::1;::::0;::::1;::::0;:79;;;;;-1:-1:-1;;24277:79:0;;;;;;;-1:-1:-1;24277:56:0;:79;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;24277:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24277:79:0;;;;24073:295;24380:47;24394:8:::0;24404:2;24408:18:::1;:9:::0;24422:3;24408:18:::1;:13;:18;:::i;:::-;24380:13;:47::i;:::-;24438:74;24452:8;24478:7;-1:-1:-1::0;;;;;24462:42:0::1;;:44;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24462:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24462:44:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24462:44:0;24508:3;24438:13:::1;:74::i;:::-;24529:15:::0;;24525:313:::1;;24563:12:::0;;24560:267:::1;;-1:-1:-1::0;;;;;24595:30:0;::::1;;24626:10;24638:18;:9:::0;24652:3;24638:18:::1;:13;:18;:::i;:::-;24658:10;24670:4;;24595:80;;;;;;;;;;;;;-1:-1:-1::0;;;;;24595:80:0::1;-1:-1:-1::0;;;;;24595:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24595:80:0;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24595:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24595:80:0;;;;24560:267;;;24699:12:::0;;24696:131:::1;;-1:-1:-1::0;;;;;24731:30:0;::::1;;24762:10;24774::::0;24786:18:::1;:9:::0;24800:3;24786:18:::1;:13;:18;:::i;:::-;24806:4;;24731:80;;;;;;;;;;;;;-1:-1:-1::0;;;;;24731:80:0::1;-1:-1:-1::0;;;;;24731:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24731:80:0;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24731:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24731:80:0;;;;24696:131;24872:6;::::0;24865:39:::1;::::0;;-1:-1:-1;;;24865:39:0;;24898:4:::1;24865:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;24872:6:0;;::::1;::::0;24865:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;24872:6;24865:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;24865:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24865:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24865:39:0;24848:56;;24939:6:::1;::::0;24932:39:::1;::::0;;-1:-1:-1;;;24932:39:0;;24965:4:::1;24932:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;24939:6:0;;::::1;::::0;24932:24:::1;::::0;:39;;;;;24865::::1;::::0;24932;;;;;;;;24939:6;24932:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;24932:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24932:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24932:39:0;::::1;24915:14:::0;;::::1;:56:::0;;;;25052:35:::1;::::0;;-1:-1:-1;;;25052:35:0;;;;25033:16:::1;::::0;-1:-1:-1;;;;;25068:7:0::1;25052:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;24932:39;25052:35;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;25052:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;25052:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;25052:35:0;25106:6:::1;::::0;25052:35;;-1:-1:-1;;;;;;25106:18:0;;::::1;:6:::0;::::1;:18;25102:102;;;25177:10;::::0;25158:14;;:30:::1;::::0;::::1;:18;:30;:::i;:::-;25141:47:::0;;25102:102:::1;25224:6;::::0;-1:-1:-1;;;;;25224:18:0;;::::1;:6:::0;::::1;:18;25220:106;;;25299:10;::::0;25280:14:::1;::::0;::::1;::::0;:30:::1;::::0;::::1;:18;:30;:::i;:::-;25263:14;::::0;::::1;:47:::0;25220:106:::1;16613:1;25402:10;25384:5;:15;;;-1:-1:-1::0;;;;;25384:28:0::1;;25367:5;:14;;;:45;:99;;25465:1;25367:99;;;25451:10;25433:5;:15;;;-1:-1:-1::0;;;;;25433:28:0::1;;25415:5;:14;;;:47;25367:99;25349:5;:15;;:117;;;::::0;::::1;25530:10;25512:5;:15;;;-1:-1:-1::0;;;;;25512:28:0::1;;25495:5;:14;;;:45;:99;;25593:1;25495:99;;;25579:10;25561:5;:15;;;-1:-1:-1::0;;;;;25561:28:0::1;;25543:5;:14;;;:47;25495:99;25477:15;::::0;::::1;:117:::0;25613:15:::1;::::0;::::1;::::0;:19;;;:42:::1;;;25654:1;25636:5;:15;;;:19;25613:42;25605:89;;;;-1:-1:-1::0;;;25605:89:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25830:42;25856:5;:15;;;-1:-1:-1::0;;;;;25830:42:0::1;25835:5;:15;;;-1:-1:-1::0;;;;;25830:21:0::1;:25;;:42;;;;:::i;:::-;25811:14;::::0;::::1;::::0;25792;;:34:::1;::::0;::::1;:18;:34;:::i;:::-;:80;;25784:103;;;::::0;;-1:-1:-1;;;25784:103:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25784:103:0;;;;;;;;;;;;;::::1;;25911:73;25919:5;:14;;;25935:5;:14;;;25951:5;:15;;;25968:5;:15;;;25911:7;:73::i;:::-;26017:15;::::0;;::::1;::::0;26034::::1;::::0;;::::1;::::0;26000:100;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;26079:1:::1;26000:100:::0;;;;;;;;;;;;-1:-1:-1;;;;;26000:100:0;::::1;::::0;26005:10:::1;::::0;26000:100:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;;;;;;;;;23510:2598:0:o;7534:43::-;;;;;;;;;;;;;;-1:-1:-1;;;7534:43:0;;;;:::o;16653:231::-;16786:8;;-1:-1:-1;;;;;16786:8:0;;;;-1:-1:-1;;;16817:8:0;;;;;;-1:-1:-1;;;16858:18:0;;;;;16653:231::o;9700:150::-;9767:4;9784:36;9793:10;9805:7;9814:5;9784:8;:36::i;:::-;-1:-1:-1;9838:4:0;9700:150;;;;;:::o;15803:21::-;;;-1:-1:-1;;;;;15803:21:0;;:::o;7677:26::-;;;;:::o;16234:20::-;;;;:::o;27953:305::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;;28007:16:::1;28042:7;-1:-1:-1::0;;;;;28026:33:0::1;;:35;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;28026:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28026:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28026:35:0;28072:64:::1;::::0;;-1:-1:-1;;;28072:64:0;;28102:10:::1;28072:64;::::0;::::1;::::0;28122:4:::1;28072:64:::0;;;;;;;;;;;;28026:35;;-1:-1:-1;;;;;;28072:29:0;::::1;::::0;::::1;::::0;:64;;;;;28026:35:::1;::::0;28072:64;;;;;;;;-1:-1:-1;28072:29:0;:64;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;28072:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28072:64:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;28158:8:0::1;::::0;;:17;::::1;28147:28:::0;;28199:10:::1;::::0;;:19;::::1;28186:32:::0;;28236:14:::1;::::0;;;;;;;::::1;::::0;;;;28072:64:::1;28236:14:::0;;::::1;-1:-1:-1::0;;16636:1:0;16625:8;:12;27953:305::o;10008:373::-;-1:-1:-1;;;;;10144:15:0;;10123:4;10144:15;;;:9;:15;;;;;;;;10160:10;10144:27;;;;;;;;-1:-1:-1;;10144:42:0;10140:175;;-1:-1:-1;;;;;10233:15:0;;;;;;:9;:15;;;;;;;;10249:10;10233:27;;;;;;;;:70;;10283:5;10233:70;:31;:70;:::i;:::-;-1:-1:-1;;;;;10203:15:0;;;;;;:9;:15;;;;;;;;10219:10;10203:27;;;;;;;:100;10140:175;10325:26;10335:4;10341:2;10345:5;10325:9;:26::i;:::-;-1:-1:-1;10369:4:0;10008:373;;;;;:::o;7977:117::-;8028:66;7977:117;:::o;7635:35::-;7668:2;7635:35;:::o;7834:31::-;;;;:::o;17806:208::-;17888:10;-1:-1:-1;;;;;17902:7:0;17888:21;;17880:52;;;;;-1:-1:-1;;;17880:52:0;;;;;;;;;;;;-1:-1:-1;;;17880:52:0;;;;;;;;;;;;;;;17963:6;:16;;-1:-1:-1;;;;;17963:16:0;;;-1:-1:-1;;;;;;17963:16:0;;;;;;;17990:6;:16;;;;;;;;;;;17806:208::o;16154:32::-;;;;:::o;16193:::-;;;;:::o;26116:1829::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;26263:22:::1;;:::i;:::-;26288:36;26297:10;26309;26321:2;26288:8;:36::i;:::-;26263:61;;26337:14;26367:1:::0;26354:10:::1;:14;:40;;26384:10;26354:40;;;26371:10;26354:40;26337:57;;26405:16;26437:1:::0;26424:10:::1;:14;:32;;26450:6;::::0;-1:-1:-1;;;;;26450:6:0::1;26424:32;;;26441:6;::::0;-1:-1:-1;;;;;26441:6:0::1;26424:32;26405:51;;26484:8;26511:7;-1:-1:-1::0;;;;;26495:40:0::1;;26536:8;26546:9;15745:2;26495:93;;;;;;;;;;;;;-1:-1:-1::0;;;;;26495:93:0::1;-1:-1:-1::0;;;;;26495:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;26495:93:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;26495:93:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;26495:93:0;;-1:-1:-1;26607:12:0::1;26495:93:::0;26607:7:::1;:12::i;:::-;26630:38;26644:8;26654:2;26658:9;26630:13;:38::i;:::-;26685:15:::0;;26681:93:::1;;26717:2;-1:-1:-1::0;;;;;26702:30:0::1;;26733:10;26745;26757;26769:4;;26702:72;;;;;;;;;;;;;-1:-1:-1::0;;;;;26702:72:0::1;-1:-1:-1::0;;;;;26702:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;26702:72:0;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;26702:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;26702:72:0;;;;26681:93;26809:6;::::0;26802:39:::1;::::0;;-1:-1:-1;;;26802:39:0;;26835:4:::1;26802:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;26809:6:0;;::::1;::::0;26802:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;26809:6;26802:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;26802:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;26802:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;26802:39:0;26785:56;;26876:6:::1;::::0;26869:39:::1;::::0;;-1:-1:-1;;;26869:39:0;;26902:4:::1;26869:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;26876:6:0;;::::1;::::0;26869:24:::1;::::0;:39;;;;;26802::::1;::::0;26869;;;;;;;;26876:6;26869:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;26869:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;26869:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;26869:39:0;::::1;26852:14:::0;;::::1;:56:::0;;;;26940:35:::1;::::0;;-1:-1:-1;;;26940:35:0;;;;26921:16:::1;::::0;-1:-1:-1;;;;;26956:7:0::1;26940:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;26869:39;26940:35;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;26940:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;26940:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;26940:35:0;26990:6:::1;::::0;26940:35;;-1:-1:-1;;;;;;26990:18:0;;::::1;:6:::0;::::1;:18;26986:98;;;27061:10;::::0;27042:14;;:30:::1;::::0;::::1;:18;:30;:::i;:::-;27025:47:::0;;26986:98:::1;27100:6;::::0;-1:-1:-1;;;;;27100:18:0;;::::1;:6:::0;::::1;:18;27096:98;;;27171:10;::::0;27152:14:::1;::::0;::::1;::::0;:30:::1;::::0;::::1;:18;:30;:::i;:::-;27135:14;::::0;::::1;:47:::0;27096:98:::1;27259:10;27241:5;:15;;;-1:-1:-1::0;;;;;27241:28:0::1;;27224:5;:14;;;:45;:99;;27322:1;27224:99;;;27308:10;27290:5;:15;;;-1:-1:-1::0;;;;;27290:28:0::1;;27272:5;:14;;;:47;27224:99;27206:5;:15;;:117;;;::::0;::::1;27387:10;27369:5;:15;;;-1:-1:-1::0;;;;;27369:28:0::1;;27352:5;:14;;;:45;:99;;27450:1;27352:99;;;27436:10;27418:5;:15;;;-1:-1:-1::0;;;;;27418:28:0::1;;27400:5;:14;;;:47;27352:99;27334:15;::::0;::::1;:117:::0;27470:15:::1;::::0;::::1;::::0;:19;;;:42:::1;;;27511:1;27493:5;:15;;;:19;27470:42;27462:89;;;;-1:-1:-1::0;;;27462:89:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27683:42;27709:5;:15;;;-1:-1:-1::0;;;;;27683:42:0::1;27688:5;:15;;;-1:-1:-1::0;;;;;27683:21:0::1;:25;;:42;;;;:::i;:::-;27664:14;::::0;::::1;::::0;27645;;:34:::1;::::0;::::1;:18;:34;:::i;:::-;:80;;27637:103;;;::::0;;-1:-1:-1;;;27637:103:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27637:103:0;;;;;;;;;;;;;::::1;;27762:73;27770:5;:14;;;27786:5;:14;;;27802:5;:15;;;27819:5;:15;;;27762:7;:73::i;:::-;27868:15;::::0;;::::1;::::0;27885::::1;::::0;;::::1;::::0;27851:86;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;27935:1:::1;27851:86:::0;;;;;;-1:-1:-1;;;;;27851:86:0;::::1;::::0;27856:10:::1;::::0;27851:86:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;;;;;;;;26116:1829:0:o;19481:1349::-;19530:14;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;16601:1;19599:13:::1;:11;:13::i;:::-;-1:-1:-1::0;19661:6:0::1;::::0;19654:39:::1;::::0;;-1:-1:-1;;;19654:39:0;;19687:4:::1;19654:39;::::0;::::1;::::0;;;19557:55;;-1:-1:-1;19557:55:0;;-1:-1:-1;19638:13:0::1;::::0;-1:-1:-1;;;;;19661:6:0;;::::1;::::0;19654:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;19661:6;19654:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;19654:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;19654:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;19654:39:0;19727:6:::1;::::0;19720:39:::1;::::0;;-1:-1:-1;;;19720:39:0;;19753:4:::1;19720:39;::::0;::::1;::::0;;;19654;;-1:-1:-1;19704:13:0::1;::::0;-1:-1:-1;;;;;19727:6:0;;::::1;::::0;19720:24:::1;::::0;:39;;;;;19654::::1;::::0;19720;;;;;;;;19727:6;19720:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;19720:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;19720:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;19720:39:0;19789:35:::1;::::0;;-1:-1:-1;;;19789:35:0;;;;19720:39;;-1:-1:-1;19770:16:0::1;::::0;-1:-1:-1;;;;;19805:7:0::1;19789:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;19720:39:::1;::::0;19789:35;;;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;19789:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;19789:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;19789:35:0;19841:6:::1;::::0;19789:35;;-1:-1:-1;;;;;;19841:18:0;;::::1;:6:::0;::::1;:18;19837:86;;;19900:10;::::0;19887:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;19876:35;;19837:86;19939:6;::::0;-1:-1:-1;;;;;19939:18:0;;::::1;:6:::0;::::1;:18;19935:86;;;19998:10;::::0;19985:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;19974:35;;19935:86;20033:12;20048:23;:8:::0;-1:-1:-1;;;;;20048:23:0;::::1;;:12;:23;:::i;:::-;20033:38:::0;-1:-1:-1;20082:12:0::1;20097:23;:8:::0;-1:-1:-1;;;;;20097:23:0;::::1;;:12;:23;:::i;:::-;20133:17;20153:11:::0;20082:38;;-1:-1:-1;20257:17:0;20253:352:::1;;20303:54;15465:5;20303:31;20313:20;:7:::0;20325;20313:20:::1;:11;:20;:::i;:::-;20303:9;:31::i;:::-;:35:::0;:54:::1;:35;:54;:::i;:::-;20291:66;;20371:36;20385:1;15465:5;20371;:36::i;:::-;20253:352;;;20507:86;-1:-1:-1::0;;;;;20516:37:0;::::1;:25;:7:::0;20528:12;20516:25:::1;:11;:25;:::i;:::-;:37;;;;;;-1:-1:-1::0;;;;;20555:37:0;::::1;:25;:7:::0;20567:12;20555:25:::1;:11;:25;:::i;:::-;:37;;;;;;20507:8;:86::i;:::-;20495:98;;20253:352;20635:1;20623:9;:13;20615:64;;;;-1:-1:-1::0;;;20615:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20690:20;20696:2;20700:9;20690:5;:20::i;:::-;20723:49;20731:8;20741;20751:9;20762;20723:7;:49::i;:::-;20788:34;::::0;;;;;::::1;::::0;::::1;::::0;;;;;20793:10:::1;::::0;20788:34:::1;::::0;;;;;;::::1;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;19481:1349:0;;;-1:-1:-1;;;;;;19481:1349:0:o;7710:44::-;;;;;;;;;;;;;:::o;8101:41::-;;;;;;;;;;;;;:::o;20942:1767::-;20991:12;21005;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;16601:1;21072:13:::1;:11;:13::i;:::-;-1:-1:-1::0;21129:6:0::1;::::0;21210::::1;::::0;21289:40:::1;::::0;;-1:-1:-1;;;21289:40:0;;21323:4:::1;21289:40;::::0;::::1;::::0;;;21030:55;;-1:-1:-1;21030:55:0;;-1:-1:-1;;;;;;21129:6:0;;::::1;::::0;21210;::::1;::::0;21111:15:::1;::::0;21129:6;;21289:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;21129:6;21289:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;21289:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;21289:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;21289:40:0;21356::::1;::::0;;-1:-1:-1;;;21356:40:0;;21390:4:::1;21356:40;::::0;::::1;::::0;;;21289;;-1:-1:-1;21340:13:0::1;::::0;-1:-1:-1;;;;;21356:25:0;::::1;::::0;::::1;::::0;:40;;;;;21289::::1;::::0;21356;;;;;;;:25;:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;21356:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;21356:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;21356:40:0;21426:35:::1;::::0;;-1:-1:-1;;;21426:35:0;;;;21356:40;;-1:-1:-1;21407:16:0::1;::::0;-1:-1:-1;;;;;21442:7:0::1;21426:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;21356:40:::1;::::0;21426:35;;;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;21426:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;21426:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;21426:35:0;21476:6:::1;::::0;21426:35;;-1:-1:-1;;;;;;21476:18:0;;::::1;:6:::0;::::1;:18;21472:86;;;21535:10;::::0;21522:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;21511:35;;21472:86;21574:6;::::0;-1:-1:-1;;;;;21574:18:0;;::::1;:6:::0;::::1;:18;21570:86;;;21633:10;::::0;21620:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;21609:35;;21570:86;21703:4;21668:14;21685:24:::0;;;:9:::1;:24;::::0;;;;;21742:11;;;21852:23:::1;21685:24:::0;21866:8;21852:23:::1;:13;:23;:::i;:::-;:38;;;;;;::::0;-1:-1:-1;21985:12:0;21959:23:::1;:9:::0;21973:8;21959:23:::1;:13;:23;:::i;:::-;:38;;;;;;21949:48;;22074:1;22064:7;:11;:26;;;;;22089:1;22079:7;:11;22064:26;22056:77;;;;-1:-1:-1::0;;;22056:77:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22144:31;22158:4;22165:9;22144:5;:31::i;:::-;22186:35;22200:7;22209:2;22213:7;22186:13;:35::i;:::-;22232;22246:7;22255:2;22259:7;22232:13;:35::i;:::-;22289:40;::::0;;-1:-1:-1;;;22289:40:0;;22323:4:::1;22289:40;::::0;::::1;::::0;;;-1:-1:-1;;;;;22289:25:0;::::1;::::0;::::1;::::0;:40;;;;;::::1;::::0;;;;;;;;:25;:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;22289:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;22289:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;22289:40:0;22351::::1;::::0;;-1:-1:-1;;;22351:40:0;;22385:4:::1;22351:40;::::0;::::1;::::0;;;22289;;-1:-1:-1;;;;;;22351:25:0;::::1;::::0;::::1;::::0;:40;;;;;22289::::1;::::0;22351;;;;;;;;:25;:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;22351:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;22351:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;22351:40:0;22406:6:::1;::::0;22351:40;;-1:-1:-1;;;;;;22406:18:0;;::::1;:6:::0;::::1;:18;22402:86;;;22465:10;::::0;22452:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;22441:35;;22402:86;22504:6;::::0;-1:-1:-1;;;;;22504:18:0;;::::1;:6:::0;::::1;:18;22500:86;;;22563:10;::::0;22550:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;22539:35;;22500:86;22598:49;22606:8;22616;22626:9;22637;22598:7;:49::i;:::-;22663:38;::::0;;;;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;22663:38:0;::::1;::::0;22668:10:::1;::::0;22663:38:::1;::::0;;;;;;;;;::::1;16613:1;;;;;;;;;16636::::0;16625:8;:12;;;;20942:1767;;;:::o;7584:44::-;;;;;;;;;;;;;;-1:-1:-1;;;7584:44:0;;;;:::o;9858:142::-;9921:4;9938:32;9948:10;9960:2;9964:5;9938:9;:32::i;15424:46::-;15465:5;15424:46;:::o;28864:667::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;28933:6:::1;::::0;28983::::1;::::0;29031:40:::1;::::0;;-1:-1:-1;;;29031:40:0;;29065:4:::1;29031:40;::::0;::::1;::::0;;;-1:-1:-1;;;;;28933:6:0;;::::1;::::0;28983;;;::::1;::::0;28933;;29031:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;28933:6;29031:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29031:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29031:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29031:40:0;29098::::1;::::0;;-1:-1:-1;;;29098:40:0;;29132:4:::1;29098:40;::::0;::::1;::::0;;;29031;;-1:-1:-1;29082:13:0::1;::::0;-1:-1:-1;;;;;29098:25:0;::::1;::::0;::::1;::::0;:40;;;;;29031::::1;::::0;29098;;;;;;;:25;:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29098:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29098:40:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29098:40:0;29168:35:::1;::::0;;-1:-1:-1;;;29168:35:0;;;;29098:40;;-1:-1:-1;29149:16:0::1;::::0;-1:-1:-1;;;;;29184:7:0::1;29168:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;29098:40:::1;::::0;29168:35;;;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29168:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29168:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29168:35:0;;-1:-1:-1;;;;;;29218:19:0;;::::1;::::0;;::::1;;29214:87;;;29278:10;::::0;29265:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;29254:35;;29214:87;29328:8;-1:-1:-1::0;;;;;29317:19:0::1;:7;-1:-1:-1::0;;;;;29317:19:0::1;;29313:87;;;29377:10;::::0;29364:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;29353:35;;29313:87;29452:8;::::0;29412:50:::1;::::0;29426:7;;29435:2;;29439:22:::1;::::0;:8;;-1:-1:-1;;;;;29452:8:0::1;29439:22;:12;:22;:::i;29412:50::-;29513:8;::::0;29473:50:::1;::::0;29487:7;;29496:2;;29500:22:::1;::::0;:8;;-1:-1:-1;;;29513:8:0;::::1;-1:-1:-1::0;;;;;29513:8:0::1;29500:12;:22::i;29473:50::-;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;;;;28864:667:0:o;28266:549::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;;28325:13:::1;28357:7;-1:-1:-1::0;;;;;28341:30:0::1;;:32;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;28341:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28341:32:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28341:32:0;;-1:-1:-1;;;;;;28392:19:0;::::1;28401:10;28392:19;28384:50;;;::::0;;-1:-1:-1;;;28384:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;28384:50:0;;;;;;;;;;;;;::::1;;28463:10;;28453:6;:20;;28445:67;;;;-1:-1:-1::0;;;28445:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28525:16;28560:7;-1:-1:-1::0;;;;;28544:33:0::1;;:35;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;28544:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28544:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28544:35:0;28618:44:::1;::::0;;-1:-1:-1;;;28618:44:0;;;;28544:35;;-1:-1:-1;28590:25:0::1;::::0;-1:-1:-1;;;;;28634:7:0::1;28618:42;::::0;::::1;::::0;:44:::1;::::0;;::::1;::::0;28544:35:::1;::::0;28618:44;;;;;;;:42;:44;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;28618:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28618:44:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28618:44:0;28684:8:::1;::::0;;:17;;::::1;28673:28:::0;;28725:10:::1;::::0;;:19;;::::1;28712:32:::0;;28618:44;-1:-1:-1;28757:50:0::1;28771:8:::0;28618:44;28695:6;28757:13:::1;:50::i;:::-;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;;28266:549:0:o;15764:32::-;;;:::o;15831:21::-;;;-1:-1:-1;;;;;15831:21:0;;:::o;10389:996::-;10611:15;10599:8;:27;;10591:56;;;;;-1:-1:-1;;;10591:56:0;;;;;;;;;;;;-1:-1:-1;;;10591:56:0;;;;;;;;;;;;;;;10763:16;;-1:-1:-1;;;;;11007:13:0;;;10658:14;11007:13;;;:6;:13;;;;;;;;:15;;;;;;;;;10830:250;;8028:66;10830:250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10830:250:0;;;;;10798:301;;;;;;-1:-1:-1;;;10699:415:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10699:415:0;;;;;;10675:450;;;;;;;;;11163:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10658:14;;11007:15;11163:26;;;;;-1:-1:-1;;11163:26:0;;;;;;;;;;11007:15;11163:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11163:26:0;;-1:-1:-1;;11163:26:0;;;-1:-1:-1;;;;;;;11222:30:0;;;;;;:59;;;11276:5;-1:-1:-1;;;;;11256:25:0;:16;-1:-1:-1;;;;;11256:25:0;;11222:59;11200:135;;;;;-1:-1:-1;;;11200:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11346:31;11355:5;11362:7;11371:5;11346:8;:31::i;:::-;10389:996;;;;;;;;;:::o;16261:22::-;;;;:::o;7761:64::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;29580:489::-;16546:8;;16558:1;16546:13;16538:41;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;-1:-1:-1;;;16538:41:0;;;;;;;;;;;;;;;16601:1;16590:8;:12;;;29644:6:::1;::::0;29637:39:::1;::::0;;-1:-1:-1;;;29637:39:0;;29670:4:::1;29637:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;29644:6:0;;::::1;::::0;29637:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;29644:6;29637:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29637:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29637:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29637:39:0;29710:6:::1;::::0;29703:39:::1;::::0;;-1:-1:-1;;;29703:39:0;;29736:4:::1;29703:39;::::0;::::1;::::0;;;29637;;-1:-1:-1;29687:13:0::1;::::0;-1:-1:-1;;;;;29710:6:0;;::::1;::::0;29703:24:::1;::::0;:39;;;;;29637::::1;::::0;29703;;;;;;;;29710:6;29703:39;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29703:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29703:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29703:39:0;29772:35:::1;::::0;;-1:-1:-1;;;29772:35:0;;;;29703:39;;-1:-1:-1;29753:16:0::1;::::0;-1:-1:-1;;;;;29788:7:0::1;29772:33;::::0;::::1;::::0;:35:::1;::::0;;::::1;::::0;29703:39:::1;::::0;29772:35;;;;;;;:33;:35;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;29772:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;29772:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;29772:35:0;29822:6:::1;::::0;29772:35;;-1:-1:-1;;;;;;29822:18:0;;::::1;:6:::0;::::1;:18;29818:86;;;29881:10;::::0;29868:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;29857:35;;29818:86;29920:6;::::0;-1:-1:-1;;;;;29920:18:0;;::::1;:6:::0;::::1;:18;29916:86;;;29979:10;::::0;29966:24:::1;::::0;:8;;:24:::1;:12;:24;:::i;:::-;29955:35;;29916:86;30042:8;::::0;30014:47:::1;::::0;30022:8;;30032;;-1:-1:-1;;;;;30042:8:0;;::::1;::::0;-1:-1:-1;;;30052:8:0;::::1;;30014:7;:47::i;:::-;-1:-1:-1::0;;16636:1:0;16625:8;:12;-1:-1:-1;29580:489:0:o;22717:681::-;22802:22;;:::i;:::-;22857:1;22844:10;:14;:32;;;;22875:1;22862:10;:14;22844:32;22836:80;;;;-1:-1:-1;;;22836:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22928:17;22947;22969:13;:11;:13::i;:::-;22927:55;;;;;23029:9;-1:-1:-1;;;;;23016:22:0;:10;:22;:48;;;;;23055:9;-1:-1:-1;;;;;23042:22:0;:10;:22;23016:48;23008:92;;;;;-1:-1:-1;;;23008:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23119:198;;;;;;;;-1:-1:-1;23119:198:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23119:198:0;;;;;;;;;;;;;23344:6;;23119:198;;-1:-1:-1;;;;;;23338:12:0;;;23344:6;;23338:12;;;;:28;;-1:-1:-1;23360:6:0;;-1:-1:-1;;;;;23354:12:0;;;23360:6;;23354:12;;23338:28;23330:60;;;;;-1:-1:-1;;;23330:60:0;;;;;;;;;;;;-1:-1:-1;;;23330:60:0;;;;;;;;;;;;;;;22717:681;;;;;;;:::o;3645:220::-;3703:7;3727:6;3723:20;;-1:-1:-1;3742:1:0;3735:8;;3723:20;3766:5;;;3770:1;3766;:5;:1;3790:5;;;;;:10;3782:56;;;;-1:-1:-1;;;3782:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856:1;3645:220;-1:-1:-1;;;3645:220:0:o;3228:158::-;3286:7;3319:1;3314;:6;;3306:49;;;;;-1:-1:-1;;;3306:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3373:5:0;;;3228:158::o;16892:285::-;15529:34;;;;;;;;;;;;;;;;;17020:43;;-1:-1:-1;;;;;17020:43:0;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17020:43:0;;;;;;25:18:-1;;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;17009:55:0;;;;16974:12;;16988:17;;17009:10;;;17020:43;17009:55;;;25:18:-1;17009:55:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;17009:55:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;16973:91:0;;;;17083:7;:57;;;;-1:-1:-1;17095:11:0;;:16;;:44;;;17126:4;17115:24;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17115:24:0;17095:44;17075:94;;;;;-1:-1:-1;;;17075:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16892:285;;;;;:::o;18099:858::-;-1:-1:-1;;;;;18211:23:0;;;;;:50;;-1:-1:-1;;;;;;18238:23:0;;;18211:50;18203:80;;;;;-1:-1:-1;;;18203:80:0;;;;;;;;;;;;-1:-1:-1;;;18203:80:0;;;;;;;;;;;;;;;18398:18;;18325:23;:15;:23;;;-1:-1:-1;;;18398:18:0;;;;18381:35;;;18454:15;;;;;;:33;;-1:-1:-1;;;;;;18473:14:0;;;;18454:33;:51;;;;-1:-1:-1;;;;;;18491:14:0;;;;18454:51;18450:336;;;18660:11;18607:64;;18612:44;18646:9;18612:27;18629:9;18612:16;:27::i;:::-;-1:-1:-1;;;;;18612:33:0;;:44;:33;:44;:::i;:::-;18583:20;:88;;-1:-1:-1;;;;;18607:50:0;;;;:64;;;;18583:88;;;18710:64;;;18715:44;18749:9;18715:27;18732:9;18715:16;:27::i;:44::-;18686:20;:88;;-1:-1:-1;;;;;18710:50:0;;;;:64;;;;18686:88;;;18450:336;18796:8;:28;;-1:-1:-1;;18796:28:0;-1:-1:-1;;;;;18796:28:0;;;;;;;-1:-1:-1;;;;18835:28:0;-1:-1:-1;;;18835:28:0;;;;;;;;;-1:-1:-1;;;;;18874:35:0;-1:-1:-1;;;18874:35:0;;;;;;;;;18925:24;;;18930:8;;;18925:24;;18940:8;;;;;;;18925:24;;;;;;;;;;;;;;;;;18099:858;;;;;;:::o;9289:172::-;-1:-1:-1;;;;;9373:16:0;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;9422:31;;;;;;;;;;;;;;;;;9289:172;;;:::o;9469:223::-;-1:-1:-1;;;;;9566:15:0;;;;;;:9;:15;;;;;;:26;;9586:5;9566:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;9548:15:0;;;;;;;:9;:15;;;;;;:44;;;;9619:13;;;;;;;:24;;9637:5;9619:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;9603:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;9659:25;;;;;;;9603:13;;9659:25;;;;;;;;;;;;;9469:223;;;:::o;18981:388::-;19052:16;19087:7;-1:-1:-1;;;;;19071:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19071:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19071:35:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19071:35:0;19145:44;;;-1:-1:-1;;;19145:44:0;;;;19071:35;;-1:-1:-1;19117:25:0;;-1:-1:-1;;;;;19161:7:0;19145:42;;;;:44;;;;;19071:35;;19145:44;;;;;;;:42;:44;;;2:2:-1;;;;27:1;24;17:12;2:2;19145:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19145:44:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19145:44:0;19208:10;;19145:44;;-1:-1:-1;19208:17:0;-1:-1:-1;19208:17:0;19200:61;;;;;-1:-1:-1;;;19200:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19287:10;;;:16;;;19274:29;;19314:47;19328:8;19338:17;19300:3;19314:13;:47::i;:::-;18981:388;;;:::o;11725:312::-;11773:9;11803:1;11799;:5;11795:235;;;-1:-1:-1;11825:1:0;11861;11857;11853:5;;:9;11877:92;11888:1;11884;:5;11877:92;;;11914:1;11910:5;;11952:1;11947;11943;11939;:5;;;;;;:9;11938:15;;;;;;11934:19;;11877:92;;;11795:235;;;;11990:6;;11986:44;;-1:-1:-1;12017:1:0;11986:44;11725:312;;;:::o;8857:204::-;8933:11;;:22;;8949:5;8933:22;:15;:22;:::i;:::-;8919:11;:36;;;-1:-1:-1;;;;;8982:13:0;;;;:9;:13;;;;;;:24;;9000:5;8982:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8966:13:0;;;;;;:9;:13;;;;;;;;:40;;;;9022:31;;;;;;;8966:13;;;;9022:31;;;;;;;;;;8857:204;;:::o;11502:105::-;11560:9;11590:1;11586;:5;:13;;11598:1;11586:13;;;-1:-1:-1;11594:1:0;;11582:17;-1:-1:-1;11502:105:0:o;9069:212::-;-1:-1:-1;;;;;9151:15:0;;;;;;:9;:15;;;;;;:26;;9171:5;9151:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;9133:15:0;;;;;;:9;:15;;;;;:44;;;;9202:11;:22;;9218:5;9202:22;:15;:22;:::i;:::-;9188:11;:36;;;9240:33;;;;;;;;-1:-1:-1;;;;;9240:33:0;;;;;;;;;;;;;9069:212;;:::o;12343:120::-;-1:-1:-1;;;;;12419:10:0;-1:-1:-1;;;12419:17:0;;12343:120::o;12534:108::-;12594:9;-1:-1:-1;;;;;12624:10:0;;-1:-1:-1;;;;;12620:14:0;;12624:10;12620:14;;;;;;12534:108;-1:-1:-1;;;12534:108:0:o;2766:179::-;2824:7;2856:5;;;2880:6;;;;2872:46;;;;;-1:-1:-1;;;2872:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15313:14759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15313:14759:0;;;;;;-1:-1:-1;;;;;15313:14759:0;;;;;:::o
Swarm Source
ipfs://5b31707c1cdfb7881ad12b759d25caf4014a1a78f864020c50633d19ebdb6f9f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.