Polygon Sponsored slots available. Book your slot here!
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x325fd3ac4670b0a7e1cb061a2af4eda1c84bc9f56ccd391502df61ed03320435 | 24292266 | 496 days 22 hrs ago | 0x9eff56866db790d14e387834ab71aed0daacfcd4 | Contract Creation | 0 MATIC |
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xe1D2d6117C666987DFBb94Cd84eB958F480b6341
Contract Name:
KommunitasProject
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.7.0; /** * @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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.7.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } pragma solidity 0.7.6; interface IKommunitasFactory{ event ProjectCreated(address indexed project, uint index); function owner() external view returns (address); function savior() external view returns (address); function devAddr() external view returns (address); function swapFactory() external view returns (address); function weth() external view returns (address); function stakingV1() external view returns (address); function stakingV2() external view returns (address); function allProjectsLength() external view returns(uint); function allPaymentsLength() external view returns(uint); function allProjects(uint) external view returns(address); function allPayments(uint) external view returns(address); function getPaymentIndex(address) external view returns(uint); function createProject(address, uint, uint, uint, uint, uint, uint[3] memory, uint[2] memory, uint) external returns (address); function transferOwnership(address) external; function setPayment(address) external; function removePayment(address) external; function config(address, address, address) external; } pragma solidity 0.7.6; interface KommunitasStaking{ function getUserStakedTokens(address _of) external view returns (uint256); function communityStaked() external view returns(uint256); } pragma solidity 0.7.6; interface KommunitasStakingV2{ function getUserStakedTokens(address _of) external view returns (uint256); function getTotalStakedAmountBeforeDate(uint256 _before) external view returns(uint256 totalStaked); function getUserStakedTokensBeforeDate(address _of, uint256 _before) external view returns (uint256); function staked(uint256) external view returns (uint256,uint256,uint256); function lockPeriod(uint256) external view returns (uint256); } pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove(address token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED'); } function safeTransfer(address token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED'); } function safeTransferFrom(address token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'TransferHelper: ETH_TRANSFER_FAILED'); } } pragma solidity 0.7.6; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity 0.7.6; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity 0.7.6; library UniswapV2Library { using SafeMath for uint; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } // Less efficient than the CREATE2 method below function pairFor(address factory, address tokenA, address tokenB) internal view returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = IUniswapV2Factory(factory).getPair(token0, token1); } // fetches and sorts the reserves for a pair function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) { (address token0,) = sortTokens(tokenA, tokenB); (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) { require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT'); require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(997); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) { require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint numerator = reserveIn.mul(amountOut).mul(1000); uint denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[0] = amountIn; for (uint i; i < path.length - 1; i++) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[amounts.length - 1] = amountOut; for (uint i = path.length - 1; i > 0; i--) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } } pragma solidity 0.7.6; contract KommunitasProject{ using SafeMath for uint; bool public initialized; bool public isPaused; address public owner; IKommunitasFactory public factory; enum StakingChoice { V1, V2 } uint public v2Staked; uint public revenue; ERC20 public payment; uint public tokenProjectDecimals; uint public target; uint public calculation; uint public sale; bool public buyEnded; uint public minPublicBuy; uint public maxPublicBuy; uint public whitelistTotalAlloc; address[] public buyers; address[] public whitelists; struct Round{ uint start; uint end; uint price; uint achieve; } struct Invoice{ uint buyersIndex; uint boosterId; uint boughtAt; uint bought; uint received; } mapping(uint => Round) public booster; mapping(address => Invoice[]) public invoices; mapping(address => string) public recipient; mapping(address => uint) public whitelist; mapping(address => mapping(uint => uint)) public purchasePerRound; modifier onlyOwner{ require(msg.sender == owner, "You are not the owner"); _; } modifier onlyFactory{ require(msg.sender == address(factory), "You are not the factory"); _; } modifier isNotInitialized{ require(!initialized, "Already initialized"); _; } modifier isNotPaused{ require(!isPaused, "This project is paused"); _; } modifier isBoosterProgress{ require(block.timestamp >= booster[boosterProgress()].start && block.timestamp <= booster[boosterProgress()].end, "Not in any booster progress"); _; } modifier ensure(uint deadline) { require(deadline >= block.timestamp, 'UniswapV2Router: EXPIRED'); _; } event TokenBought(uint indexed booster, address indexed buyer, uint buyAmount, uint tokenReceived); constructor(){ factory = IKommunitasFactory(msg.sender); initialized = false; buyEnded = false; isPaused = false; owner = tx.origin; } /** * @dev Initialize project for raise fund * @param _payment Tokens to raise * @param _tokenProjectDecimals Token decimals of project (18 default) * @param _sale Amount token project to sell (based on token decimals of project) * @param _target Target amount to raise (decimals 18) * @param _calculation Epoch date to start buy allocation calculation * @param _start Epoch date to start round 1 * @param _price Token project price in each rounds (in 6 decimals) * @param _minMaxPublicBuy Min and max token to buy (in 2 decimals) * @param _boosterRunning Duration when booster running (in seconds) */ function initialize( address _payment, uint _tokenProjectDecimals, uint _sale, uint _target, uint _calculation, uint _start, uint[3] memory _price, uint[2] memory _minMaxPublicBuy, uint _boosterRunning ) public onlyFactory isNotInitialized{ require(_boosterRunning > 0, "Can't be 0"); require(_calculation < _start, "Calculation must be done before booster is started"); initialized = true; payment = ERC20(_payment); tokenProjectDecimals = _tokenProjectDecimals; sale = _sale; target = _target; calculation = _calculation; for(uint i=1; i<=3; i++){ if(i==1){ booster[i].start = _start; }else{ booster[i].start = booster[i-1].end.add(1); } booster[i].end = booster[i].start.add(_boosterRunning); booster[i].price = _price[i-1].mul(10**payment.decimals()).div(1e6); booster[i].achieve = 0; } minPublicBuy = _minMaxPublicBuy[0].mul(10**tokenProjectDecimals).div(100); maxPublicBuy = _minMaxPublicBuy[1].mul(10**tokenProjectDecimals).div(100); } // **** VIEW AREA **** /** * @dev Get all whitelists length */ function getWhitelistLength() public view returns(uint){ return whitelists.length; } /** * @dev Get all buyers/participants length */ function getBuyersLength() public view returns(uint){ return buyers.length; } /** * @dev Get total number transactions of buyer */ function getBuyerHistoryLength(address _buyer) public view returns(uint){ return invoices[_buyer].length; } /** * @dev Get V2Staked */ function getV2Staked() internal view returns(uint total){ total = 0; uint fetch; for(uint i=0; i<3; i++){ uint lock = KommunitasStakingV2(factory.stakingV2()).lockPeriod(i); (,,fetch) = KommunitasStakingV2(factory.stakingV2()).staked(lock); total = total.add(fetch); } } /** * @dev Get User Staked Info * @param _choice V1 or V2 Staking * @param _target User address */ function getUserStakedInfo(StakingChoice _choice, address _target) internal view returns(uint userStaked, uint totalStaked){ if(_choice == StakingChoice.V1){ userStaked = KommunitasStaking(factory.stakingV1()).getUserStakedTokens(_target); totalStaked = KommunitasStaking(factory.stakingV1()).communityStaked(); }else if(_choice == StakingChoice.V2){ userStaked = KommunitasStakingV2(factory.stakingV2()).getUserStakedTokensBeforeDate(_target, calculation); totalStaked = v2Staked; uint v2StakedNow = getV2Staked(); if(v2Staked > v2StakedNow){ totalStaked = v2StakedNow; } }else{ revert("Invalid Staking Choice. Needs to be either 0 (V1) or 1 (V2)"); } } /** * @dev Get User Allocation (in 8 decimals) * @param _target User address */ function getUserAllocation_d8(address _target) public view returns(uint alloc){ (uint userV1Staked, uint v1TotalStaked) = getUserStakedInfo(StakingChoice.V1, _target); (uint userV2Staked, uint v2TotalStaked) = getUserStakedInfo(StakingChoice.V2, _target); alloc = (userV1Staked.add(userV2Staked)).mul(10 ** 8).div((v1TotalStaked.add(v2TotalStaked))); } /** * @dev Check whether buyer/participant or not * @param _user User address */ function isBuyer(address _user) public view returns (bool){ if(buyers.length == 0) return false; return (invoices[_user].length > 0); } /** * @dev Get amount out of swap * @param _tokenIn Token to swap * @param _amountIn Amount to swap */ function getAmountOut(address _tokenIn, uint _amountIn) public view returns(uint256 amountOut){ address[] memory _path = new address[](2); _path[0] = _tokenIn; _path[1] = address(payment); amountOut = UniswapV2Library.getAmountsOut(factory.swapFactory(), _amountIn, _path)[1]; } /** * @dev Get total purchase of a user * @param _user User address */ function getTotalPurchase(address _user) public view returns(uint total){ total = purchasePerRound[_user][1].add(purchasePerRound[_user][2]).add(purchasePerRound[_user][3]); } /** * @dev Get booster running now, 0 = no booster running */ function boosterProgress() public view returns (uint running){ running = 0; for(uint i=1; i<=3; i++){ if(block.timestamp >= booster[i].start && block.timestamp <= booster[i].end){ running = i; } } } /** * @dev Get total sold tokens */ function sold() public view returns(uint total){ total = 0; for(uint i=1; i<=3; i++){ total = total.add(booster[i].achieve); } } /** * @dev Get User Allocation Token * @param _user User address */ function getUserAllocToken(address _user) internal view returns(uint userAllocToken){ if(boosterProgress() == 1){ if(whitelist[_user] > 0){ userAllocToken = whitelist[_user]; } else{ userAllocToken = getUserAllocation_d8(_user).mul(sale.sub(whitelistTotalAlloc)).div(10 ** 8); } } else if(boosterProgress() == 2){ require(sale.sub(booster[1].achieve) > 0, "You are out of token sale"); userAllocToken = getUserAllocation_d8(_user).mul(sale.sub(booster[1].achieve)).div(10 ** 8); } else if(boosterProgress() == 3){ (uint stakedV1,) = getUserStakedInfo(StakingChoice.V1, _user); (uint stakedV2,) = getUserStakedInfo(StakingChoice.V2, _user); userAllocToken = stakedV1.add(stakedV2); } } /** * @dev Calculate amount in * @param _tokenReceived Token received amount * @param _amountIn Amount in to buy */ function amountInCalc(uint _tokenReceived, uint _amountIn, address _user) internal view returns(uint amountInFinal, uint tokenReceivedFinal){ if(boosterProgress() == 1){ if(whitelist[_user] == 0){ require(int(sale - sold() - whitelistTotalAlloc) > 0, "You are out of token sale"); if(_tokenReceived > sale.sub(sold()).sub(whitelistTotalAlloc)){ _tokenReceived = sale.sub(sold()).sub(whitelistTotalAlloc); } } } else{ require(sale.sub(sold()) > 0, "You are out of token sale"); if(_tokenReceived > sale.sub(sold())){ _tokenReceived = sale.sub(sold()); } } _amountIn = _tokenReceived.mul(booster[boosterProgress()].price).div(10 ** tokenProjectDecimals); (amountInFinal, tokenReceivedFinal) = amountInCalcInner(_user, _tokenReceived, _amountIn); } /** * @dev Calculate amount in inner * @param _user User address * @param _tokenReceived Token received amount final * @param _amountIn Amount in to buy */ function amountInCalcInner(address _user, uint _tokenReceived, uint _amountIn) internal view returns(uint amountInFinal, uint tokenReceivedFinal){ amountInFinal = _amountIn; uint alloc; if(boosterProgress() < 3){ alloc = getUserAllocToken(_user); } else{ require(_tokenReceived >= minPublicBuy, "You buy less than minPublicBuy"); alloc = maxPublicBuy; } require(purchasePerRound[_user][boosterProgress()] < alloc, "You reached your buy allocation limit in this booster"); if(purchasePerRound[_user][boosterProgress()].add(_tokenReceived) > alloc){ amountInFinal = (alloc.sub(purchasePerRound[_user][boosterProgress()])).mul(booster[boosterProgress()].price).div(10 ** tokenProjectDecimals); } require(amountInFinal > 0, "Your buy amount is too small"); tokenReceivedFinal = amountInFinal.mul(10 ** tokenProjectDecimals).div(booster[boosterProgress()].price); } /** * @dev Convert address to string * @param x Address to convert */ function toAsciiString(address x) internal pure returns (string memory) { bytes memory s = new bytes(40); for (uint i = 0; i < 20; i++) { bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8*(19 - i))))); bytes1 hi = bytes1(uint8(b) / 16); bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi)); s[2*i] = char(hi); s[2*i+1] = char(lo); } return string(s); } function char(bytes1 b) internal pure returns (bytes1 c) { if (uint8(b) < 10) return bytes1(uint8(b) + 0x30); else return bytes1(uint8(b) + 0x57); } // **** MAIN AREA **** /** * @dev Move fund to devAddr */ function moveFund() public { require(block.timestamp > booster[3].end, "Still in progress"); if(payment.balanceOf(address(this)) > 0){ TransferHelper.safeTransfer(address(payment), factory.devAddr(), payment.balanceOf(address(this))); } buyEnded = true; } /** * @dev Buy token project using native token * @param _path 'Native' to 'token to raise' */ function buyTokenByETH(address[] calldata _path) payable isBoosterProgress isNotPaused public { require(_path[0] == factory.weth() && _path[1] == address(payment), "Path not correct"); require(getUserAllocToken(msg.sender) > 0 && v2Staked > 0, "Staked KOM not found"); uint buyerId = setBuyer(msg.sender); uint amountOut = getAmountOut(_path[0], msg.value); uint tokenReceived = amountOut.mul(10 ** tokenProjectDecimals).div(booster[boosterProgress()].price); (uint amountInFinal, uint tokenReceivedFinal) = amountInCalc(tokenReceived, amountOut, msg.sender); uint ethFinal = msg.value.mul(amountInFinal).div(amountOut); IWETH(factory.weth()).deposit{value: ethFinal}(); if(ethFinal < msg.value){ TransferHelper.safeTransferETH(msg.sender, msg.value.sub(ethFinal)); } uint buyAmount = swapToAccepted(ethFinal, _path, address(this)); invoices[msg.sender].push(Invoice(buyerId, boosterProgress(), block.timestamp, buyAmount, tokenReceivedFinal)); revenue = revenue.add(buyAmount); purchasePerRound[msg.sender][boosterProgress()] = purchasePerRound[msg.sender][boosterProgress()].add(tokenReceivedFinal); booster[boosterProgress()].achieve = booster[boosterProgress()].achieve.add(tokenReceivedFinal); emit TokenBought(boosterProgress(), msg.sender, buyAmount, tokenReceivedFinal); } /** * @dev Buy token project using another token * @param _amountIn Buy amount * @param _path 'Token' to 'token to raise' */ function buyTokenByToken(uint _amountIn, address[] calldata _path) isBoosterProgress isNotPaused public { require(_path[0] != address(payment) && _path[0] == factory.allPayments(factory.getPaymentIndex(_path[0])) && _path[1] == address(payment), "Path not correct"); require(getUserAllocToken(msg.sender) > 0 && v2Staked > 0, "Staked KOM not found"); uint buyerId = setBuyer(msg.sender); uint amountOut = getAmountOut(_path[0], _amountIn); uint tokenReceived = amountOut.mul(10 ** tokenProjectDecimals).div(booster[boosterProgress()].price); (uint amountInFinal, uint tokenReceivedFinal) = amountInCalc(tokenReceived, amountOut, msg.sender); uint buyAmount = swapToAccepted(_amountIn.mul(amountInFinal).div(amountOut), _path, address(this)); invoices[msg.sender].push(Invoice(buyerId, boosterProgress(), block.timestamp, buyAmount, tokenReceivedFinal)); revenue = revenue.add(buyAmount); purchasePerRound[msg.sender][boosterProgress()] = purchasePerRound[msg.sender][boosterProgress()].add(tokenReceivedFinal); booster[boosterProgress()].achieve = booster[boosterProgress()].achieve.add(tokenReceivedFinal); emit TokenBought(boosterProgress(), msg.sender, buyAmount, tokenReceivedFinal); } /** * @dev Buy token project using token raise * @param _amountIn Buy amount * @param _tokenIn token raise address */ function buyToken(uint _amountIn, address _tokenIn) isBoosterProgress isNotPaused public { require(_tokenIn == address(payment), "Token is different, move to buyTokenbyToken function"); require(getUserAllocToken(msg.sender) > 0 && v2Staked > 0, "Staked KOM not found"); uint buyerId = setBuyer(msg.sender); uint tokenReceived = _amountIn.mul(10 ** tokenProjectDecimals).div(booster[boosterProgress()].price); (uint amountInFinal, uint tokenReceivedFinal) = amountInCalc(tokenReceived, _amountIn, msg.sender); TransferHelper.safeTransferFrom(address(payment), msg.sender, address(this), amountInFinal); invoices[msg.sender].push(Invoice(buyerId, boosterProgress(), block.timestamp, amountInFinal, tokenReceivedFinal)); revenue = revenue.add(amountInFinal); purchasePerRound[msg.sender][boosterProgress()] = purchasePerRound[msg.sender][boosterProgress()].add(tokenReceivedFinal); booster[boosterProgress()].achieve = booster[boosterProgress()].achieve.add(tokenReceivedFinal); emit TokenBought(boosterProgress(), msg.sender, amountInFinal, tokenReceivedFinal); } /** * @dev Savior saves project by buy left tokens * @param _tokenAmount Token amount to buy */ function saveMe(uint _tokenAmount) isBoosterProgress isNotPaused public { require(msg.sender == factory.savior() || msg.sender == owner, "Who are you?"); require(boosterProgress() == 3, "Not now savior"); uint buyerId = setBuyer(msg.sender); if(_tokenAmount > sale.sub(sold())) _tokenAmount = sale.sub(sold()); invoices[msg.sender].push(Invoice(buyerId, boosterProgress(), block.timestamp, 0, _tokenAmount)); purchasePerRound[msg.sender][boosterProgress()] = purchasePerRound[msg.sender][boosterProgress()].add(_tokenAmount); booster[boosterProgress()].achieve = booster[boosterProgress()].achieve.add(_tokenAmount); emit TokenBought(boosterProgress(), msg.sender, 0, _tokenAmount); } /** * @dev Set buyer id * @param _user User address */ function setBuyer(address _user) internal returns(uint buyerId){ if(!isBuyer(_user)){ buyers.push(_user); buyerId = buyers.length.sub(1); if(bytes(recipient[_user]).length == 0){ recipient[_user] = toAsciiString(_user); } }else{ buyerId = invoices[_user][0].buyersIndex; } } /** * @dev Set recipient address * @param _recipient Recipient address */ function setRecipient(string memory _recipient) isNotPaused public { require(bytes(_recipient).length != 0, "Not good"); recipient[msg.sender] = _recipient; } /** * @dev Set beginning V2 total staked */ function setV2Staked() public { require(block.timestamp >= calculation && v2Staked == 0, "Not now"); v2Staked = getV2Staked(); } /** * @dev Handle swap amount * @param _amountIn Buy amount * @param _path 'from' to 'to' token * @param _to Target address */ function swapToAccepted(uint _amountIn, address[] calldata _path, address _to) internal returns(uint swapAmount){ uint amountOut = getAmountOut(_path[0], _amountIn); // 0,5% slippage uint amountOutMin = amountOut.mul(995).div(1000); // deadline + 1 year uint deadline = block.timestamp.add(31536000); uint[] memory amounts; if(_path[0] == factory.weth()){ amounts = swapExactETHForTokens(_amountIn, amountOutMin, _path, _to, deadline); }else{ amounts = swapExactTokensForTokens(_amountIn, amountOutMin, _path, _to, deadline); } swapAmount = amounts[1]; } // **** SWAP **** // requires the initial amount to have already been sent to the first pair function _swap(uint[] memory amounts, address[] memory path, address _to) internal virtual { for (uint i; i < path.length - 1; i++) { (address input, address output) = (path[i], path[i + 1]); (address token0,) = UniswapV2Library.sortTokens(input, output); uint amountOut = amounts[i + 1]; (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOut) : (amountOut, uint(0)); address to = i < path.length - 2 ? UniswapV2Library.pairFor(factory.swapFactory(), output, path[i + 2]) : _to; IUniswapV2Pair(UniswapV2Library.pairFor(factory.swapFactory(), input, output)).swap( amount0Out, amount1Out, to, new bytes(0) ); } } function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] memory path, address to, uint deadline ) internal ensure(deadline) virtual returns (uint[] memory amounts) { amounts = UniswapV2Library.getAmountsOut(factory.swapFactory(), amountIn, path); require(amounts[amounts.length - 1] >= amountOutMin, 'UniswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT'); TransferHelper.safeTransferFrom( path[0], msg.sender, UniswapV2Library.pairFor(factory.swapFactory(), path[0], path[1]), amounts[0] ); _swap(amounts, path, to); } function swapExactETHForTokens( uint amountIn, uint amountOutMin, address[] memory path, address to, uint deadline ) internal ensure(deadline) virtual returns (uint[] memory amounts) { require(path[0] == factory.weth(), 'UniswapV2Router: INVALID_PATH'); amounts = UniswapV2Library.getAmountsOut(factory.swapFactory(), amountIn, path); require(amounts[amounts.length - 1] >= amountOutMin, 'UniswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT'); assert(IWETH(factory.weth()).transfer(UniswapV2Library.pairFor(factory.swapFactory(), path[0], path[1]), amounts[0])); _swap(amounts, path, to); } // **** ADMIN AREA **** /** * @dev Set whitelist allocation token in 6 decimals * @param _user User address * @param _allocation Token allocation in 6 decimals */ function setWhitelist_d6(address[] memory _user, uint[] memory _allocation) public onlyOwner { require(block.timestamp < calculation && _user.length == _allocation.length, "Not good"); for(uint i=0; i<_user.length; i++){ whitelists.push(_user[i]); whitelist[_user[i]] = _allocation[i].mul(10 ** tokenProjectDecimals).div(10 ** 6); whitelistTotalAlloc = whitelistTotalAlloc.add(whitelist[_user[i]]); } } /** * @dev Update whitelist allocation token in 6 decimals * @param _user User address * @param _allocation Token allocation in 6 decimals */ function updateWhitelist_d6(address _user, uint _allocation) public onlyOwner{ require(boosterProgress() < 2 && purchasePerRound[_user][1] == 0 && whitelist[_user] > 0, "Change not allowed"); uint oldAlloc = whitelist[_user]; whitelist[_user] = _allocation.mul(10 ** tokenProjectDecimals).div(10 ** 6); whitelistTotalAlloc = whitelistTotalAlloc.sub(oldAlloc).add(whitelist[_user]); } /** * @dev Set Min & Max in FCFS * @param _minMaxPublicBuy Min and max token to buy (in 2 decimals) */ function setMinMax_d2(uint[2] memory _minMaxPublicBuy) public onlyOwner{ require(boosterProgress() != 3, "FCFS started"); minPublicBuy = _minMaxPublicBuy[0].mul(10**tokenProjectDecimals).div(100); maxPublicBuy = _minMaxPublicBuy[1].mul(10**tokenProjectDecimals).div(100); } function transferOwnership(address _newOwner) public onlyOwner{ require(_newOwner != address(0), "Can't assign to address(0)"); owner = _newOwner; } function togglePause() public onlyOwner{ isPaused = !isPaused; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"booster","type":"uint256"},{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"buyAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenReceived","type":"uint256"}],"name":"TokenBought","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"booster","outputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"achieve","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boosterProgress","outputs":[{"internalType":"uint256","name":"running","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"address","name":"_tokenIn","type":"address"}],"name":"buyToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_path","type":"address[]"}],"name":"buyTokenByETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"address[]","name":"_path","type":"address[]"}],"name":"buyTokenByToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buyers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IKommunitasFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenIn","type":"address"},{"internalType":"uint256","name":"_amountIn","type":"uint256"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buyer","type":"address"}],"name":"getBuyerHistoryLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBuyersLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTotalPurchase","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"getUserAllocation_d8","outputs":[{"internalType":"uint256","name":"alloc","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_payment","type":"address"},{"internalType":"uint256","name":"_tokenProjectDecimals","type":"uint256"},{"internalType":"uint256","name":"_sale","type":"uint256"},{"internalType":"uint256","name":"_target","type":"uint256"},{"internalType":"uint256","name":"_calculation","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256[3]","name":"_price","type":"uint256[3]"},{"internalType":"uint256[2]","name":"_minMaxPublicBuy","type":"uint256[2]"},{"internalType":"uint256","name":"_boosterRunning","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"invoices","outputs":[{"internalType":"uint256","name":"buyersIndex","type":"uint256"},{"internalType":"uint256","name":"boosterId","type":"uint256"},{"internalType":"uint256","name":"boughtAt","type":"uint256"},{"internalType":"uint256","name":"bought","type":"uint256"},{"internalType":"uint256","name":"received","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isBuyer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPublicBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moveFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payment","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"purchasePerRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"recipient","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revenue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"saveMe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[2]","name":"_minMaxPublicBuy","type":"uint256[2]"}],"name":"setMinMax_d2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_recipient","type":"string"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setV2Staked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"uint256[]","name":"_allocation","type":"uint256[]"}],"name":"setWhitelist_d6","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sold","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"target","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenProjectDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_allocation","type":"uint256"}],"name":"updateWhitelist_d6","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"v2Staked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalAlloc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelists","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600180546001600160a01b03191633179055600080546009805460ff191690556201000032026001600160b01b031990911617905561524a806100556000396000f3fe6080604052600436106102675760003560e01c8063950da0c811610144578063ca706bcf116100b6578063e9c75fc21161007a578063e9c75fc214610a69578063ec46fac014610a7e578063f1b1486a14610a93578063f2aa821814610bc3578063f2fde38b14610bed578063fe4d5add14610c2057610267565b8063ca706bcf1461096f578063d205de28146109a8578063d4b83992146109bd578063d5fb6ed5146109d2578063e66d729214610a5457610267565b8063b187bd2611610108578063b187bd261461083a578063b3651eea1461084f578063bc61221d146108f7578063c369f38f14610930578063c45a015514610945578063c4ae31681461095a57610267565b8063950da0c81461078057806396cacf51146107955780639b19251a146107c8578063a13202e9146107fb578063a56802711461081057610267565b806342f6487a116101dd5780636ad1fe02116101a15780636ad1fe021461062457806370e371d214610639578063767574361461064e578063795a16e3146106815780638da5cb5b146107325780639134709e1461074757610267565b806342f6487a146104ed57806347e0664d1461051e57806353a9792b1461056e57806357978a20146105a157806369e51c00146105b657610267565b80632a55feec1161022f5780632a55feec146103ea5780632ba786e41461041d57806330be05451461045657806336a22e141461046b5780633e9491a2146104805780634208f2a61461049557610267565b806302c7e7af1461026c5780630505c277146102935780630936a767146102bc5780630dad62fa14610371578063158ef93e146103d5575b600080fd5b34801561027857600080fd5b50610281610c4a565b60408051918252519081900360200190f35b34801561029f57600080fd5b506102a8610c82565b604080519115158252519081900360200190f35b3480156102c857600080fd5b5061036f60048036036101808110156102e057600080fd5b60408051606081810183526001600160a01b03853516946020810135949381013593828201359360808301359360a084013593928301929161012083019160c0840190600390839083908082843760009201919091525050604080518082018252929594938181019392509060029083908390808284376000920191909152509194505090359150610c8b9050565b005b34801561037d57600080fd5b506103aa6004803603604081101561039457600080fd5b506001600160a01b038135169060200135610f9a565b6040805195865260208601949094528484019290925260608401526080830152519081900360a00190f35b3480156103e157600080fd5b506102a8610fe8565b3480156103f657600080fd5b506102a86004803603602081101561040d57600080fd5b50356001600160a01b0316610ff1565b34801561042957600080fd5b5061036f6004803603604081101561044057600080fd5b506001600160a01b038135169060200135611025565b34801561046257600080fd5b50610281611192565b34801561047757600080fd5b5061036f611198565b34801561048c57600080fd5b50610281611392565b3480156104a157600080fd5b5061036f600480360360408110156104b857600080fd5b604080518082018252918301929181830191839060029083908390808284376000920191909152509194506113989350505050565b3480156104f957600080fd5b5061050261147e565b604080516001600160a01b039092168252519081900360200190f35b34801561052a57600080fd5b506105486004803603602081101561054157600080fd5b503561148d565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561057a57600080fd5b506102816004803603602081101561059157600080fd5b50356001600160a01b03166114b4565b3480156105ad57600080fd5b506102816114cf565b61036f600480360360208110156105cc57600080fd5b810190602081018135600160201b8111156105e657600080fd5b8201836020820111156105f857600080fd5b803590602001918460208302840111600160201b8311171561061957600080fd5b5090925090506114d5565b34801561063057600080fd5b50610281611a6a565b34801561064557600080fd5b50610281611a70565b34801561065a57600080fd5b506102816004803603602081101561067157600080fd5b50356001600160a01b0316611a76565b34801561068d57600080fd5b5061036f600480360360208110156106a457600080fd5b810190602081018135600160201b8111156106be57600080fd5b8201836020820111156106d057600080fd5b803590602001918460018302840111600160201b831117156106f157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611ac0945050505050565b34801561073e57600080fd5b50610502611b78565b34801561075357600080fd5b5061036f6004803603604081101561076a57600080fd5b50803590602001356001600160a01b0316611b8d565b34801561078c57600080fd5b50610281611ee2565b3480156107a157600080fd5b50610281600480360360208110156107b857600080fd5b50356001600160a01b0316611ee8565b3480156107d457600080fd5b50610281600480360360208110156107eb57600080fd5b50356001600160a01b0316611f3e565b34801561080757600080fd5b50610281611f50565b34801561081c57600080fd5b5061036f6004803603602081101561083357600080fd5b5035611f56565b34801561084657600080fd5b506102a86122d2565b34801561085b57600080fd5b506108826004803603602081101561087257600080fd5b50356001600160a01b03166122e0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156108bc5781810151838201526020016108a4565b50505050905090810190601f1680156108e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561090357600080fd5b506102816004803603604081101561091a57600080fd5b506001600160a01b03813516906020013561237b565b34801561093c57600080fd5b50610281612398565b34801561095157600080fd5b5061050261239e565b34801561096657600080fd5b5061036f6123ad565b34801561097b57600080fd5b506102816004803603604081101561099257600080fd5b506001600160a01b038135169060200135612427565b3480156109b457600080fd5b5061028161252b565b3480156109c957600080fd5b50610281612578565b3480156109de57600080fd5b5061036f600480360360408110156109f557600080fd5b81359190810190604081016020820135600160201b811115610a1657600080fd5b820183602082011115610a2857600080fd5b803590602001918460208302840111600160201b83111715610a4957600080fd5b50909250905061257e565b348015610a6057600080fd5b50610281612a79565b348015610a7557600080fd5b50610281612a7f565b348015610a8a57600080fd5b5061036f612a85565b348015610a9f57600080fd5b5061036f60048036036040811015610ab657600080fd5b810190602081018135600160201b811115610ad057600080fd5b820183602082011115610ae257600080fd5b803590602001918460208302840111600160201b83111715610b0357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610b5257600080fd5b820183602082011115610b6457600080fd5b803590602001918460208302840111600160201b83111715610b8557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612adf945050505050565b348015610bcf57600080fd5b5061050260048036036020811015610be657600080fd5b5035612cb0565b348015610bf957600080fd5b5061036f60048036036020811015610c1057600080fd5b50356001600160a01b0316612cda565b348015610c2c57600080fd5b5061050260048036036020811015610c4357600080fd5b5035612dbc565b600060015b60038111610c7e576000818152600f6020526040902060030154610c74908390612dcc565b9150600101610c4f565b5090565b60095460ff1681565b6001546001600160a01b03163314610cea576040805162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742074686520666163746f7279000000000000000000604482015290519081900360640190fd5b60005460ff1615610d38576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b60008111610d7a576040805162461bcd60e51b815260206004820152600a602482015269043616e277420626520360b41b604482015290519081900360640190fd5b838510610db85760405162461bcd60e51b81526004018080602001828103825260328152602001806150946032913960400191505060405180910390fd5b60008054600160ff199091168117909155600480546001600160a01b0319166001600160a01b038c1617905560058990556008889055600687905560078690555b60038111610f54578060011415610e20576000818152600f60205260409020859055610e52565b60001981016000908152600f60205260409020600190810154610e4291612dcc565b6000828152600f60205260409020555b6000818152600f6020526040902054610e6b9083612dcc565b600f600083815260200190815260200160002060010181905550610f30620f4240610f2a600460009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610edd57600080fd5b505afa158015610ef1573d6000803e3d6000fd5b505050506040513d6020811015610f0757600080fd5b505160ff16600a0a87600019860160038110610f1f57fe5b602002015190612e2d565b90612e86565b6000828152600f602052604081206002810192909255600390910155600101610df9565b50610f706064610f2a600554600a0a85600060028110610f1f57fe5b600a908155600554610f8c91606491610f2a910a856001610f1f565b600b55505050505050505050565b60106020528160005260406000208181548110610fb657600080fd5b600091825260209091206005909102018054600182015460028301546003840154600490940154929550909350919085565b60005460ff1681565b600d5460009061100357506000611020565b506001600160a01b03811660009081526010602052604090205415155b919050565b6000546201000090046001600160a01b03163314611082576040805162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015290519081900360640190fd5b600261108c61252b565b1080156110bb57506001600160a01b038216600090815260136020908152604080832060018452909152902054155b80156110de57506001600160a01b03821660009081526012602052604090205415155b611124576040805162461bcd60e51b815260206004820152601260248201527110da185b99d9481b9bdd08185b1b1bddd95960721b604482015290519081900360640190fd5b6001600160a01b03821660009081526012602052604090205460055461115790620f424090610f2a908590600a0a612e2d565b6001600160a01b0384166000908152601260205260409020819055600c5461118a91906111849084612ec8565b90612dcc565b600c55505050565b600d5490565b6003600052600f6020527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc829682954421161120b576040805162461bcd60e51b81526020600482015260116024820152705374696c6c20696e2070726f677265737360781b604482015290519081900360640190fd5b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561125a57600080fd5b505afa15801561126e573d6000803e3d6000fd5b505050506040513d602081101561128457600080fd5b5051111561138357600480546001546040805163368271cb60e21b81529051611383946001600160a01b03948516949093169263da09c72c92808201926020929091829003018186803b1580156112da57600080fd5b505afa1580156112ee573d6000803e3d6000fd5b505050506040513d602081101561130457600080fd5b505160048054604080516370a0823160e01b81523093810193909352516001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561135257600080fd5b505afa158015611366573d6000803e3d6000fd5b505050506040513d602081101561137c57600080fd5b5051612f0a565b6009805460ff19166001179055565b60035481565b6000546201000090046001600160a01b031633146113f5576040805162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015290519081900360640190fd5b6113fd61252b565b60031415611441576040805162461bcd60e51b815260206004820152600c60248201526b1190d194c81cdd185c9d195960a21b604482015290519081900360640190fd5b61145c6064610f2a600554600a0a84600060028110610f1f57fe5b600a90815560055461147891606491610f2a910a846001610f1f565b600b5550565b6004546001600160a01b031681565b600f6020526000908152604090208054600182015460028301546003909301549192909184565b6001600160a01b031660009081526010602052604090205490565b600c5481565b600f60006114e161252b565b815260200190815260200160002060000154421015801561151f5750600f600061150961252b565b8152602001908152602001600020600101544211155b61155e576040805162461bcd60e51b815260206004820152601b6024820152600080516020615014833981519152604482015290519081900360640190fd5b600054610100900460ff16156115b4576040805162461bcd60e51b8152602060048201526016602482015275151a1a5cc81c1c9bda9958dd081a5cc81c185d5cd95960521b604482015290519081900360640190fd5b600160009054906101000a90046001600160a01b03166001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b15801561160257600080fd5b505afa158015611616573d6000803e3d6000fd5b505050506040513d602081101561162c57600080fd5b50516001600160a01b0316828260008161164257fe5b905060200201356001600160a01b03166001600160a01b031614801561169757506004546001600160a01b03168282600181811061167c57fe5b905060200201356001600160a01b03166001600160a01b0316145b6116db576040805162461bcd60e51b815260206004820152601060248201526f14185d1a081b9bdd0818dbdc9c9958dd60821b604482015290519081900360640190fd5b60006116e633613073565b1180156116f557506000600254115b61173d576040805162461bcd60e51b815260206004820152601460248201527314dd185ad9590812d3d3481b9bdd08199bdd5b9960621b604482015290519081900360640190fd5b600061174833613216565b905060006117728484600081811061175c57fe5b905060200201356001600160a01b031634612427565b905060006117af600f600061178561252b565b815260200190815260200160002060020154610f2a600554600a0a85612e2d90919063ffffffff16565b90506000806117bf838533613328565b909250905060006117d485610f2a3486612e2d565b9050600160009054906101000a90046001600160a01b03166001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b15801561182457600080fd5b505afa158015611838573d6000803e3d6000fd5b505050506040513d602081101561184e57600080fd5b505160408051630d0e30db60e41b815290516001600160a01b039092169163d0e30db0918491600480830192600092919082900301818588803b15801561189457600080fd5b505af11580156118a8573d6000803e3d6000fd5b5050505050348110156118c8576118c8336118c33484612ec8565b6134bc565b60006118d6828a8a306135af565b33600090815260106020908152604091829020825160a081019093528a8352929350810161190261252b565b8152426020808301919091526040808301869052606092830188905284546001818101875560009687529583902085516005909202019081559184015194820194909455928201516002840155810151600380840191909155608090910151600490920191909155546119759082612dcc565b6003553360009081526013602052604081206119b39185919061199661252b565b815260200190815260200160002054612dcc90919063ffffffff16565b336000908152601360205260408120906119cb61252b565b815260200190815260200160002081905550611a0d83600f60006119ed61252b565b815260200190815260200160002060030154612dcc90919063ffffffff16565b600f6000611a1961252b565b815260208101919091526040016000206003015533611a3661252b565b60408051848152602081018790528151600080516020614ff4833981519152929181900390910190a3505050505050505050565b60085481565b60055481565b6001600160a01b0381166000908152601360209081526040808320600384529091528082205460028352818320546001845291832054611aba926111849190612dcc565b92915050565b600054610100900460ff1615611b16576040805162461bcd60e51b8152602060048201526016602482015275151a1a5cc81c1c9bda9958dd081a5cc81c185d5cd95960521b604482015290519081900360640190fd5b8051611b54576040805162461bcd60e51b8152602060048201526008602482015267139bdd0819dbdbd960c21b604482015290519081900360640190fd5b3360009081526011602090815260409091208251611b7492840190614f5b565b5050565b6000546201000090046001600160a01b031681565b600f6000611b9961252b565b8152602001908152602001600020600001544210158015611bd75750600f6000611bc161252b565b8152602001908152602001600020600101544211155b611c16576040805162461bcd60e51b815260206004820152601b6024820152600080516020615014833981519152604482015290519081900360640190fd5b600054610100900460ff1615611c6c576040805162461bcd60e51b8152602060048201526016602482015275151a1a5cc81c1c9bda9958dd081a5cc81c185d5cd95960521b604482015290519081900360640190fd5b6004546001600160a01b03828116911614611cb85760405162461bcd60e51b815260040180806020018281038252603481526020018061510f6034913960400191505060405180910390fd5b6000611cc333613073565b118015611cd257506000600254115b611d1a576040805162461bcd60e51b815260206004820152601460248201527314dd185ad9590812d3d3481b9bdd08199bdd5b9960621b604482015290519081900360640190fd5b6000611d2533613216565b90506000611d62600f6000611d3861252b565b815260200190815260200160002060020154610f2a600554600a0a87612e2d90919063ffffffff16565b9050600080611d72838733613328565b6004549193509150611d8f906001600160a01b0316333085613762565b33600090815260106020908152604091829020825160a0810190935286835291908101611dba61252b565b815242602080830191909152604080830187905260609283018690528454600181810187556000968752958390208551600590920201908155918401519482019490945592820151600284015581015160038084019190915560809091015160049092019190915554611e2d9083612dcc565b600355336000908152601360205260408120611e4e9183919061199661252b565b33600090815260136020526040812090611e6661252b565b815260200190815260200160002081905550611e8881600f60006119ed61252b565b600f6000611e9461252b565b815260208101919091526040016000206003015533611eb161252b565b60408051858152602081018590528151600080516020614ff4833981519152929181900390910190a3505050505050565b60075481565b6000806000611ef86000856138be565b91509150600080611f0a6001876138be565b9092509050611f34611f1c8483612dcc565b610f2a6305f5e100611f2e8887612dcc565b90612e2d565b9695505050505050565b60126020526000908152604090205481565b600e5490565b600f6000611f6261252b565b8152602001908152602001600020600001544210158015611fa05750600f6000611f8a61252b565b8152602001908152602001600020600101544211155b611fdf576040805162461bcd60e51b815260206004820152601b6024820152600080516020615014833981519152604482015290519081900360640190fd5b600054610100900460ff1615612035576040805162461bcd60e51b8152602060048201526016602482015275151a1a5cc81c1c9bda9958dd081a5cc81c185d5cd95960521b604482015290519081900360640190fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663dfa78bf56040518163ffffffff1660e01b815260040160206040518083038186803b15801561208357600080fd5b505afa158015612097573d6000803e3d6000fd5b505050506040513d60208110156120ad57600080fd5b50516001600160a01b03163314806120d557506000546201000090046001600160a01b031633145b612115576040805162461bcd60e51b815260206004820152600c60248201526b57686f2061726520796f753f60a01b604482015290519081900360640190fd5b61211d61252b565b600314612162576040805162461bcd60e51b815260206004820152600e60248201526d2737ba103737bb9039b0bb34b7b960911b604482015290519081900360640190fd5b600061216d33613216565b905061218361217a610c4a565b60085490612ec8565b8211156121985761219561217a610c4a565b91505b33600090815260106020908152604091829020825160a08101909352838352919081016121c361252b565b8152426020808301919091526000604080840182905260609384018890528554600181810188559683528383208651600590920201908155858401519681019690965584810151600287015592840151600386015560809093015160049094019390935533825260139092529081206122419184919061199661252b565b3360009081526013602052604081209061225961252b565b81526020019081526020016000208190555061227b82600f60006119ed61252b565b600f600061228761252b565b8152602081019190915260400160002060030155336122a461252b565b6040805160008152602081018690528151600080516020614ff4833981519152929181900390910190a35050565b600054610100900460ff1681565b60116020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156123735780601f1061234857610100808354040283529160200191612373565b820191906000526020600020905b81548152906001019060200180831161235657829003601f168201915b505050505081565b601360209081526000928352604080842090915290825290205481565b600b5481565b6001546001600160a01b031681565b6000546201000090046001600160a01b0316331461240a576040805162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015290519081900360640190fd5b6000805461ff001981166101009182900460ff1615909102179055565b60408051600280825260608201835260009283929190602083019080368337019050509050838160008151811061245a57fe5b6001600160a01b03928316602091820292909201015260045482519116908290600190811061248557fe5b6001600160a01b0392831660209182029290920181019190915260015460408051631e513e5160e21b8152905161250e949290921692637944f94492600480840193829003018186803b1580156124db57600080fd5b505afa1580156124ef573d6000803e3d6000fd5b505050506040513d602081101561250557600080fd5b50518483613c22565b60018151811061251a57fe5b602002602001015191505092915050565b600060015b60038111610c7e576000818152600f6020526040902054421080159061256757506000818152600f60205260409020600101544211155b15612570578091505b600101612530565b60065481565b600f600061258a61252b565b81526020019081526020016000206000015442101580156125c85750600f60006125b261252b565b8152602001908152602001600020600101544211155b612607576040805162461bcd60e51b815260206004820152601b6024820152600080516020615014833981519152604482015290519081900360640190fd5b600054610100900460ff161561265d576040805162461bcd60e51b8152602060048201526016602482015275151a1a5cc81c1c9bda9958dd081a5cc81c185d5cd95960521b604482015290519081900360640190fd5b6004546001600160a01b0316828260008161267457fe5b905060200201356001600160a01b03166001600160a01b0316141580156127c957506001546001600160a01b031663c849844a816315a7584c85856000816126b857fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561270557600080fd5b505afa158015612719573d6000803e3d6000fd5b505050506040513d602081101561272f57600080fd5b5051604080516001600160e01b031960e085901b1681526004810192909252516024808301926020929190829003018186803b15801561276e57600080fd5b505afa158015612782573d6000803e3d6000fd5b505050506040513d602081101561279857600080fd5b50516001600160a01b031682826000816127ae57fe5b905060200201356001600160a01b03166001600160a01b0316145b801561280457506004546001600160a01b0316828260018181106127e957fe5b905060200201356001600160a01b03166001600160a01b0316145b612848576040805162461bcd60e51b815260206004820152601060248201526f14185d1a081b9bdd0818dbdc9c9958dd60821b604482015290519081900360640190fd5b600061285333613073565b11801561286257506000600254115b6128aa576040805162461bcd60e51b815260206004820152601460248201527314dd185ad9590812d3d3481b9bdd08199bdd5b9960621b604482015290519081900360640190fd5b60006128b533613216565b905060006128df848460008181106128c957fe5b905060200201356001600160a01b031686612427565b905060006128f2600f600061178561252b565b9050600080612902838533613328565b9092509050600061292261291a86610f2a8c87612e2d565b8989306135af565b33600090815260106020908152604091829020825160a08101909352898352929350810161294e61252b565b8152426020808301919091526040808301869052606092830187905284546001818101875560009687529583902085516005909202019081559184015194820194909455928201516002840155810151600380840191909155608090910151600490920191909155546129c19082612dcc565b6003553360009081526013602052604081206129e29184919061199661252b565b336000908152601360205260408120906129fa61252b565b815260200190815260200160002081905550612a1c82600f60006119ed61252b565b600f6000612a2861252b565b815260208101919091526040016000206003015533612a4561252b565b60408051848152602081018690528151600080516020614ff4833981519152929181900390910190a3505050505050505050565b600a5481565b60025481565b6007544210158015612a975750600254155b612ad2576040805162461bcd60e51b81526020600482015260076024820152664e6f74206e6f7760c81b604482015290519081900360640190fd5b612ada613d6e565b600255565b6000546201000090046001600160a01b03163314612b3c576040805162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015290519081900360640190fd5b60075442108015612b4e575080518251145b612b8a576040805162461bcd60e51b8152602060048201526008602482015267139bdd0819dbdbd960c21b604482015290519081900360640190fd5b60005b8251811015612cab57600e838281518110612ba457fe5b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790556005548251612c1791620f424091610f2a91600a0a90869086908110612c0157fe5b6020026020010151612e2d90919063ffffffff16565b60126000858481518110612c2757fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550612ca060126000858481518110612c6657fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054600c54612dcc90919063ffffffff16565b600c55600101612b8d565b505050565b600d8181548110612cc057600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546201000090046001600160a01b03163314612d37576040805162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015290519081900360640190fd5b6001600160a01b038116612d92576040805162461bcd60e51b815260206004820152601a60248201527f43616e27742061737369676e20746f2061646472657373283029000000000000604482015290519081900360640190fd5b600080546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600e8181548110612cc057600080fd5b600082820183811015612e26576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082612e3c57506000611aba565b82820282848281612e4957fe5b0414612e265760405162461bcd60e51b81526004018080602001828103825260218152602001806150ee6021913960400191505060405180910390fd5b6000612e2683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f6a565b6000612e2683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061400c565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1781529251825160009485949389169392918291908083835b60208310612f865780518252601f199092019160209182019101612f67565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612fe8576040519150601f19603f3d011682016040523d82523d6000602084013e612fed565b606091505b509150915081801561301b57508051158061301b575080806020019051602081101561301857600080fd5b50515b61306c576040805162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c454400604482015290519081900360640190fd5b5050505050565b600061307d61252b565b600114156130f5576001600160a01b038216600090815260126020526040902054156130c257506001600160a01b0381166000908152601260205260409020546130f0565b6130ed6305f5e100610f2a6130e4600c54600854612ec890919063ffffffff16565b611f2e86611ee8565b90505b611020565b6130fd61252b565b600214156131d45760016000908152600f6020527f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f8925460085461313f91612ec8565b1161318d576040805162461bcd60e51b8152602060048201526019602482015278596f7520617265206f7574206f6620746f6b656e2073616c6560381b604482015290519081900360640190fd5b6001600052600f6020527f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f892546008546130ed916305f5e10091610f2a916130e49190612ec8565b6131dc61252b565b600314156110205760006131f16000846138be565b50905060006132016001856138be565b50905061320e8282612dcc565b949350505050565b600061322182610ff1565b6132ec57600d80546001808201835560008390527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb590910180546001600160a01b0319166001600160a01b038616179055905461327d91612ec8565b6001600160a01b038316600090815260116020526040902054909150600260001961010060018416150201909116046130f0576132b982614066565b6001600160a01b038316600090815260116020908152604090912082516132e69391929190910190614f5b565b50611020565b6001600160a01b0382166000908152601060205260408120805490919061330f57fe5b9060005260206000209060050201600001549050919050565b60008061333361252b565b600114156133ef576001600160a01b0383166000908152601260205260409020546133ea576000600c54613365610c4a565b6008540303136133b8576040805162461bcd60e51b8152602060048201526019602482015278596f7520617265206f7574206f6620746f6b656e2073616c6560381b604482015290519081900360640190fd5b6133cf600c546133c961217a610c4a565b90612ec8565b8511156133ea576133e7600c546133c961217a610c4a565b94505b61346a565b60006133fc61217a610c4a565b1161344a576040805162461bcd60e51b8152602060048201526019602482015278596f7520617265206f7574206f6620746f6b656e2073616c6560381b604482015290519081900360640190fd5b61345561217a610c4a565b85111561346a5761346761217a610c4a565b94505b6134a3600554600a0a610f2a600f600061348261252b565b81526020019081526020016000206002015488612e2d90919063ffffffff16565b93506134b083868661415b565b90969095509350505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106135085780518252601f1990920191602091820191016134e9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461356a576040519150601f19603f3d011682016040523d82523d6000602084013e61356f565b606091505b5050905080612cab5760405162461bcd60e51b81526004018080602001828103825260238152602001806151786023913960400191505060405180910390fd5b6000806135d8858560008181106135c257fe5b905060200201356001600160a01b031687612427565b905060006135ee6103e8610f2a846103e3612e2d565b90506000613600426301e13380612dcc565b90506060600160009054906101000a90046001600160a01b03166001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b15801561365257600080fd5b505afa158015613666573d6000803e3d6000fd5b505050506040513d602081101561367c57600080fd5b50516001600160a01b0316888860008161369257fe5b905060200201356001600160a01b03166001600160a01b031614156136fa576136f389848a8a808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508c925088915061438c9050565b905061373f565b61373c89848a8a808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508c925088915061476f9050565b90505b8060018151811061374c57fe5b6020026020010151945050505050949350505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000948594938a169392918291908083835b602083106137e65780518252601f1990920191602091820191016137c7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613848576040519150601f19603f3d011682016040523d82523d6000602084013e61384d565b606091505b509150915081801561387b57508051158061387b575080806020019051602081101561387857600080fd5b50515b6138b65760405162461bcd60e51b81526004018080602001828103825260248152602001806151c66024913960400191505060405180910390fd5b505050505050565b600080808460018111156138ce57fe5b1415613aad57600160009054906101000a90046001600160a01b03166001600160a01b031663f556a79c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561392257600080fd5b505afa158015613936573d6000803e3d6000fd5b505050506040513d602081101561394c57600080fd5b50516040805163570d00d160e11b81526001600160a01b0386811660048301529151919092169163ae1a01a2916024808301926020929190829003018186803b15801561399857600080fd5b505afa1580156139ac573d6000803e3d6000fd5b505050506040513d60208110156139c257600080fd5b505160015460408051633d55a9e760e21b815290519294506001600160a01b039091169163f556a79c91600480820192602092909190829003018186803b158015613a0c57600080fd5b505afa158015613a20573d6000803e3d6000fd5b505050506040513d6020811015613a3657600080fd5b50516040805163debc431760e01b815290516001600160a01b039092169163debc431791600480820192602092909190829003018186803b158015613a7a57600080fd5b505afa158015613a8e573d6000803e3d6000fd5b505050506040513d6020811015613aa457600080fd5b50519050613c1b565b6001846001811115613abb57fe5b1415613be457600160009054906101000a90046001600160a01b03166001600160a01b031663886117366040518163ffffffff1660e01b815260040160206040518083038186803b158015613b0f57600080fd5b505afa158015613b23573d6000803e3d6000fd5b505050506040513d6020811015613b3957600080fd5b5051600754604080516346fce4b160e11b81526001600160a01b038781166004830152602482019390935290519190921691638df9c962916044808301926020929190829003018186803b158015613b9057600080fd5b505afa158015613ba4573d6000803e3d6000fd5b505050506040513d6020811015613bba57600080fd5b505160025490925090506000613bce613d6e565b9050806002541115613bde578091505b50613c1b565b60405162461bcd60e51b815260040180806020018281038252603b815260200180615059603b913960400191505060405180910390fd5b9250929050565b6060600282511015613c7b576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a20494e56414c49445f504154480000604482015290519081900360640190fd5b815167ffffffffffffffff81118015613c9357600080fd5b50604051908082528060200260200182016040528015613cbd578160200160208202803683370190505b5090508281600081518110613cce57fe5b60200260200101818152505060005b6001835103811015613d6657600080613d2087868581518110613cfc57fe5b6020026020010151878660010181518110613d1357fe5b6020026020010151614932565b91509150613d42848481518110613d3357fe5b60200260200101518383614a00565b848460010181518110613d5157fe5b60209081029190910101525050600101613cdd565b509392505050565b600080805b6003811015613f6557600154604080516344308b9b60e11b815290516000926001600160a01b0316916388611736916004808301926020929190829003018186803b158015613dc157600080fd5b505afa158015613dd5573d6000803e3d6000fd5b505050506040513d6020811015613deb57600080fd5b50516040805163ef27c77360e01b81526004810185905290516001600160a01b039092169163ef27c77391602480820192602092909190829003018186803b158015613e3657600080fd5b505afa158015613e4a573d6000803e3d6000fd5b505050506040513d6020811015613e6057600080fd5b5051600154604080516344308b9b60e11b815290519293506001600160a01b0390911691638861173691600480820192602092909190829003018186803b158015613eaa57600080fd5b505afa158015613ebe573d6000803e3d6000fd5b505050506040513d6020811015613ed457600080fd5b505160408051632f0df79960e11b81526004810184905290516001600160a01b0390921691635e1bef3291602480820192606092909190829003018186803b158015613f1f57600080fd5b505afa158015613f33573d6000803e3d6000fd5b505050506040513d6060811015613f4957600080fd5b50604001519250613f5a8484612dcc565b935050600101613d73565b505090565b60008183613ff65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fbb578181015183820152602001613fa3565b50505050905090810190601f168015613fe85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161400257fe5b0495945050505050565b6000818484111561405e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613fbb578181015183820152602001613fa3565b505050900390565b60408051602880825260608281019093526000919060208201818036833701905050905060005b60148110156141545760008160130360080260020a856001600160a01b0316816140b357fe5b0460f81b9050600060108260f81c60ff16816140cb57fe5b0460f81b905060008160f81c6010028360f81c0360f81b90506140ed82614ad2565b8585600202815181106140fc57fe5b60200101906001600160f81b031916908160001a90535061411c81614ad2565b85856002026001018151811061412e57fe5b60200101906001600160f81b031916908160001a905350506001909201915061408d9050565b5092915050565b80600080600361416961252b565b101561417f5761417886613073565b90506141db565b600a548510156141d6576040805162461bcd60e51b815260206004820152601e60248201527f596f7520627579206c657373207468616e206d696e5075626c69634275790000604482015290519081900360640190fd5b50600b545b6001600160a01b038616600090815260136020526040812082916141fd61252b565b815260200190815260200160002054106142485760405162461bcd60e51b81526004018080602001828103825260358152602001806151436035913960400191505060405180910390fd5b6001600160a01b0386166000908152601360205260408120829161427091889161199661252b565b11156142f3576142f0600554600a0a610f2a600f600061428e61252b565b815260200190815260200160002060020154611f2e601360008c6001600160a01b03166001600160a01b0316815260200190815260200160002060006142d261252b565b81526020019081526020016000205486612ec890919063ffffffff16565b92505b60008311614348576040805162461bcd60e51b815260206004820152601c60248201527f596f75722062757920616d6f756e7420697320746f6f20736d616c6c00000000604482015290519081900360640190fd5b614381600f600061435761252b565b815260200190815260200160002060020154610f2a600554600a0a86612e2d90919063ffffffff16565b915050935093915050565b606081428110156143df576040805162461bcd60e51b8152602060048201526018602482015277155b9a5cddd85c158c949bdd5d195c8e881156141254915160421b604482015290519081900360640190fd5b600160009054906101000a90046001600160a01b03166001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b15801561442d57600080fd5b505afa158015614441573d6000803e3d6000fd5b505050506040513d602081101561445757600080fd5b505185516001600160a01b0390911690869060009061447257fe5b60200260200101516001600160a01b0316146144d5576040805162461bcd60e51b815260206004820152601d60248201527f556e69737761705632526f757465723a20494e56414c49445f50415448000000604482015290519081900360640190fd5b60015460408051631e513e5160e21b8152905161454e926001600160a01b031691637944f944916004808301926020929190829003018186803b15801561451b57600080fd5b505afa15801561452f573d6000803e3d6000fd5b505050506040513d602081101561454557600080fd5b50518887613c22565b9150858260018451038151811061456157fe5b602002602001015110156145a65760405162461bcd60e51b815260040180806020018281038252602b81526020018061519b602b913960400191505060405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b1580156145f457600080fd5b505afa158015614608573d6000803e3d6000fd5b505050506040513d602081101561461e57600080fd5b505160015460408051631e513e5160e21b815290516001600160a01b039384169363a9059cbb936146cd93911691637944f94491600480820192602092909190829003018186803b15801561467257600080fd5b505afa158015614686573d6000803e3d6000fd5b505050506040513d602081101561469c57600080fd5b5051885189906000906146ab57fe5b6020026020010151896001815181106146c057fe5b6020026020010151614b03565b846000815181106146da57fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561472857600080fd5b505af115801561473c573d6000803e3d6000fd5b505050506040513d602081101561475257600080fd5b505161475a57fe5b614765828686614baa565b5095945050505050565b606081428110156147c2576040805162461bcd60e51b8152602060048201526018602482015277155b9a5cddd85c158c949bdd5d195c8e881156141254915160421b604482015290519081900360640190fd5b60015460408051631e513e5160e21b81529051614808926001600160a01b031691637944f944916004808301926020929190829003018186803b15801561451b57600080fd5b9150858260018451038151811061481b57fe5b602002602001015110156148605760405162461bcd60e51b815260040180806020018281038252602b81526020018061519b602b913960400191505060405180910390fd5b61475a8560008151811061487057fe5b602002602001015133614918600160009054906101000a90046001600160a01b03166001600160a01b0316637944f9446040518163ffffffff1660e01b815260040160206040518083038186803b1580156148ca57600080fd5b505afa1580156148de573d6000803e3d6000fd5b505050506040513d60208110156148f457600080fd5b505189518a9060009061490357fe5b60200260200101518a6001815181106146c057fe5b8560008151811061492557fe5b6020026020010151613762565b60008060006149418585614e84565b509050600080614952888888614b03565b6001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561498a57600080fd5b505afa15801561499e573d6000803e3d6000fd5b505050506040513d60608110156149b457600080fd5b5080516020909101516dffffffffffffffffffffffffffff91821693501690506001600160a01b03878116908416146149ee5780826149f1565b81815b90999098509650505050505050565b6000808411614a405760405162461bcd60e51b815260040180806020018281038252602b8152602001806151ea602b913960400191505060405180910390fd5b600083118015614a505750600082115b614a8b5760405162461bcd60e51b81526004018080602001828103825260288152602001806150c66028913960400191505060405180910390fd5b6000614a99856103e5612e2d565b90506000614aa78285612e2d565b90506000614abb83611184886103e8612e2d565b9050808281614ac657fe5b04979650505050505050565b6000600a60f883901c1015614af2578160f81c60300160f81b9050611020565b8160f81c60570160f81b9050611020565b6000806000614b128585614e84565b91509150856001600160a01b031663e6a4390583836040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015614b7457600080fd5b505afa158015614b88573d6000803e3d6000fd5b505050506040513d6020811015614b9e57600080fd5b50519695505050505050565b60005b6001835103811015614e7e57600080848381518110614bc857fe5b6020026020010151858460010181518110614bdf57fe5b6020026020010151915091506000614bf78383614e84565b5090506000878560010181518110614c0b57fe5b60200260200101519050600080836001600160a01b0316866001600160a01b031614614c3957826000614c3d565b6000835b91509150600060028a51038810614c545788614cd9565b60015460408051631e513e5160e21b81529051614cd9926001600160a01b031691637944f944916004808301926020929190829003018186803b158015614c9a57600080fd5b505afa158015614cae573d6000803e3d6000fd5b505050506040513d6020811015614cc457600080fd5b50518b5188908d9060028d019081106146c057fe5b9050614d5f600160009054906101000a90046001600160a01b03166001600160a01b0316637944f9446040518163ffffffff1660e01b815260040160206040518083038186803b158015614d2c57600080fd5b505afa158015614d40573d6000803e3d6000fd5b505050506040513d6020811015614d5657600080fd5b50518888614b03565b6001600160a01b031663022c0d9f84848460006040519080825280601f01601f191660200182016040528015614d9c576020820181803683370190505b506040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614e04578181015183820152602001614dec565b50505050905090810190601f168015614e315780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614e5357600080fd5b505af1158015614e67573d6000803e3d6000fd5b505060019099019850614bad975050505050505050565b50505050565b600080826001600160a01b0316846001600160a01b03161415614ed85760405162461bcd60e51b81526004018080602001828103825260258152602001806150346025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b031610614ef8578284614efb565b83835b90925090506001600160a01b038216613c1b576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614f915760008555614fd7565b82601f10614faa57805160ff1916838001178555614fd7565b82800160010185558215614fd7579182015b82811115614fd7578251825591602001919060010190614fbc565b50610c7e9291505b80821115610c7e5760008155600101614fdf56fe3c027c045e3796f01c651fff484d89bbb7f28cbbcc98a20de6d5cb38543a753f4e6f7420696e20616e7920626f6f737465722070726f67726573730000000000556e697377617056324c6962726172793a204944454e544943414c5f414444524553534553496e76616c6964205374616b696e672043686f6963652e204e6565647320746f2062652065697468657220302028563129206f722031202856322943616c63756c6174696f6e206d75737420626520646f6e65206265666f726520626f6f737465722069732073746172746564556e697377617056324c6962726172793a20494e53554646494349454e545f4c4951554944495459536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546f6b656e20697320646966666572656e742c206d6f766520746f20627579546f6b656e6279546f6b656e2066756e6374696f6e596f75207265616368656420796f75722062757920616c6c6f636174696f6e206c696d697420696e207468697320626f6f737465725472616e7366657248656c7065723a204554485f5452414e534645525f4641494c4544556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a205452414e534645525f46524f4d5f4641494c4544556e697377617056324c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e54a2646970667358221220965296fd5b530b5f0eb5d7ee076e514dd906466c74ce059d935ac3fd2d3582b764736f6c63430007060033
Deployed ByteCode Sourcemap
30953:24439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39108:173;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31396:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33930:1285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33930:1285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33930:1285:0;;;;;;;;;;;;;;;;;-1:-1:-1;33930:1285:0;;;;;;;;;;;;;;;;;;-1:-1:-1;33930:1285:0;;-1:-1:-1;;33930:1285:0;;;-1:-1:-1;33930:1285:0;;-1:-1:-1;33930:1285:0:i;:::-;;31909:45;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31909:45:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31022:23;;;;;;;;;;;;;:::i;37763:158::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37763:158:0;-1:-1:-1;;;;;37763:158:0;;:::i;54245:424::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54245:424:0;;;;;;;;:::i;35494:91::-;;;;;;;;;;;;;:::i;43422:309::-;;;;;;;;;;;;;:::i;31220:19::-;;;;;;;;;;;;;:::i;54803:307::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54803:307:0;;-1:-1:-1;54803:307:0;;-1:-1:-1;;;;54803:307:0:i;31246:20::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;31246:20:0;;;;;;;;;;;;;;31865:37;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31865:37:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35667:121;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35667:121:0;-1:-1:-1;;;;;35667:121:0;;:::i;31485:31::-;;;;;;;;;;;;;:::i;43861:1544::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43861:1544:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43861:1544:0;;;;;;;;;;-1:-1:-1;43861:1544:0;;-1:-1:-1;43861:1544:0;-1:-1:-1;43861:1544:0;:::i;31373:16::-;;;;;;;;;;;;;:::i;31279:32::-;;;;;;;;;;;;;:::i;38490:189::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38490:189:0;-1:-1:-1;;;;;38490:189:0;;:::i;49858:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49858:183:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49858:183:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49858:183:0;;-1:-1:-1;49858:183:0;;-1:-1:-1;;;;;49858:183:0:i;31085:20::-;;;;;;;;;;;;;:::i;47112:1235::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47112:1235:0;;;;;;-1:-1:-1;;;;;47112:1235:0;;:::i;31343:23::-;;;;;;;;;;;;;:::i;37263:384::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37263:384:0;-1:-1:-1;;;;;37263:384:0;;:::i;32011:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32011:41:0;-1:-1:-1;;;;;32011:41:0;;:::i;35318:98::-;;;;;;;;;;;;;:::i;48474:787::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48474:787:0;;:::i;31052:20::-;;;;;;;;;;;;;:::i;31961:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31961:43:0;-1:-1:-1;;;;;31961:43:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32059:65;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32059:65:0;;;;;;;;:::i;31454:24::-;;;;;;;;;;;;;:::i;31112:33::-;;;;;;;;;;;;;:::i;55305:78::-;;;;;;;;;;;;;:::i;38065:319::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38065:319:0;;;;;;;;:::i;38770:273::-;;;;;;;;;;;;;:::i;31318:18::-;;;;;;;;;;;;;:::i;45571:1382::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45571:1382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45571:1382:0;;;;;;;;;;-1:-1:-1;45571:1382:0;;-1:-1:-1;45571:1382:0;-1:-1:-1;45571:1382:0;:::i;31423:24::-;;;;;;;;;;;;;:::i;31187:20::-;;;;;;;;;;;;;:::i;50114:161::-;;;;;;;;;;;;;:::i;53583:483::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53583:483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53583:483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53583:483:0;;;;;;;;-1:-1:-1;53583:483:0;;-1:-1:-1;;;;;53583:483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53583:483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53583:483:0;;-1:-1:-1;53583:483:0;;-1:-1:-1;;;;;53583:483:0:i;31523:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31523:23:0;;:::i;55122:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55122:171:0;-1:-1:-1;;;;;55122:171:0;;:::i;31553:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31553:27:0;;:::i;39108:173::-;39144:10;39197:1;39186:88;39203:1;39200;:4;39186:88;;39243:10;;;;:7;:10;;;;;:18;;;39233:29;;:5;;:9;:29::i;:::-;39225:37;-1:-1:-1;39206:3:0;;39186:88;;;;39108:173;:::o;31396:20::-;;;;;;:::o;33930:1285::-;32312:7;;-1:-1:-1;;;;;32312:7:0;32290:10;:30;32282:66;;;;;-1:-1:-1;;;32282:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32425:11:::1;::::0;::::1;;32424:12;32416:44;;;::::0;;-1:-1:-1;;;32416:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32416:44:0;;;;;;;;;;;;;::::1;;34292:1:::2;34274:15;:19;34266:42;;;::::0;;-1:-1:-1;;;34266:42:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;34266:42:0;;;;;;;;;;;;;::::2;;34342:6;34327:12;:21;34319:84;;;;-1:-1:-1::0;;;34319:84:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34424:11;:18:::0;;34438:4:::2;-1:-1:-1::0;;34424:18:0;;::::2;::::0;::::2;::::0;;;34463:7:::2;:25:::0;;-1:-1:-1;;;;;;34463:25:0::2;-1:-1:-1::0;;;;;34463:25:0;::::2;;::::0;;34499:20:::2;:44:::0;;;34554:4:::2;:12:::0;;;34577:6:::2;:16:::0;;;34604:11:::2;:26:::0;;;34651:387:::2;34668:1;34665;:4;34651:387;;34693:1;34696;34693:4;34690:149;;;34717:10;::::0;;;:7:::2;:10;::::0;;;;:25;;;34690:149:::2;;;-1:-1:-1::0;;34808:3:0;;34800:12:::2;::::0;;;:7:::2;:12;::::0;;;;34821:1:::2;34800:16:::0;;::::2;::::0;:23:::2;::::0;:20:::2;:23::i;:::-;34781:10;::::0;;;:7:::2;:10;::::0;;;;:42;34690:149:::2;34870:10;::::0;;;:7:::2;:10;::::0;;;;:16;:37:::2;::::0;34891:15;34870:20:::2;:37::i;:::-;34853:7;:10;34861:1;34853:10;;;;;;;;;;;:14;;:54;;;;34941:48;34985:3;34941:39;34961:7;;;;;;;;;-1:-1:-1::0;;;;;34961:7:0::2;-1:-1:-1::0;;;;;34961:16:0::2;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;34961:18:0;34957:22:::2;;:2;:22;34941:6:::0;-1:-1:-1;;34948:3:0;;34941:11:::2;::::0;::::2;;;;;;;;::::0;;:15:::2;:39::i;:::-;:43:::0;::::2;:48::i;:::-;34922:10;::::0;;;:7:::2;:10;::::0;;;;:16:::2;::::0;::::2;:67:::0;;;;35004:18:::2;::::0;;::::2;:22:::0;34671:3:::2;;34651:387;;;;35065:58;35119:3;35065:49;35093:20;;35089:2;:24;35065:16;35082:1;35065:19;;;;;;:58;35050:12;:73:::0;;;35177:20:::2;::::0;35149:58:::2;::::0;35203:3:::2;::::0;35149:49:::2;::::0;35173:24:::2;35149:16:::0;35166:1:::2;35149:19;::::0;:58:::2;35134:12;:73:::0;-1:-1:-1;;;;;;;;;33930:1285:0:o;31909:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31909:45:0;;-1:-1:-1;31909:45:0;;;:::o;31022:23::-;;;;;;:::o;37763:158::-;37835:6;:13;37816:4;;37832:35;;-1:-1:-1;37862:5:0;37855:12;;37832:35;-1:-1:-1;;;;;;37886:15:0;;37911:1;37886:15;;;:8;:15;;;;;:22;:26;;37763:158;;;;:::o;54245:424::-;32188:5;;;;;-1:-1:-1;;;;;32188:5:0;32174:10;:19;32166:53;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;;;;54361:1:::1;54341:17;:15;:17::i;:::-;:21;:56;;;;-1:-1:-1::0;;;;;;54366:23:0;::::1;;::::0;;;:16:::1;:23;::::0;;;;;;;54390:1:::1;54366:26:::0;;;;;;;;:31;54341:56:::1;:80;;;;-1:-1:-1::0;;;;;;54401:16:0;::::1;54420:1;54401:16:::0;;;:9:::1;:16;::::0;;;;;:20;;54341:80:::1;54333:111;;;::::0;;-1:-1:-1;;;54333:111:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54333:111:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54471:16:0;::::1;54455:13;54471:16:::0;;;:9:::1;:16;::::0;;;;;54539:20:::1;::::0;54517:56:::1;::::0;54565:7:::1;::::0;54517:43:::1;::::0;:11;;54533:2:::1;:26;54517:15;:43::i;:56::-;-1:-1:-1::0;;;;;54498:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;:75;;;54606:19:::1;::::0;:55:::1;::::0;54498:75;54606:33:::1;::::0;54630:8;54606:23:::1;:33::i;:::-;:37:::0;::::1;:55::i;:::-;54584:19;:77:::0;-1:-1:-1;;;54245:424:0:o;35494:91::-;35564:6;:13;35494:91;:::o;43422:309::-;43494:1;43486:10;;:7;:10;;:14;;43468:15;:32;43460:62;;;;;-1:-1:-1;;;43460:62:0;;;;;;;;;;;;-1:-1:-1;;;43460:62:0;;;;;;;;;;;;;;;43536:7;;;:32;;;-1:-1:-1;;;43536:32:0;;43562:4;43536:32;;;;;;;;43571:1;;-1:-1:-1;;;;;43536:7:0;;;;:17;;:32;;;;;;;;;;;;;;:7;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43536:32:0;:36;43533:165;;;43624:7;;;;43634;:17;;;-1:-1:-1;;;43634:17:0;;;;43588:98;;-1:-1:-1;;;;;43624:7:0;;;;43634;;;;:15;;:17;;;;;;;;;;;;;:7;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43634:17:0;43653:7;;;:32;;;-1:-1:-1;;;43653:32:0;;43679:4;43653:32;;;;;;;;-1:-1:-1;;;;;43653:7:0;;;;:17;;:32;;;;;43634:17;;43653:32;;;;;;;:7;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43653:32:0;43588:27;:98::i;:::-;43708:8;:15;;-1:-1:-1;;43708:15:0;43719:4;43708:15;;;43422:309::o;31220:19::-;;;;:::o;54803:307::-;32188:5;;;;;-1:-1:-1;;;;;32188:5:0;32174:10;:19;32166:53;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;;;;54893:17:::1;:15;:17::i;:::-;54914:1;54893:22;;54885:47;;;::::0;;-1:-1:-1;;;54885:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54885:47:0;;;;;;;;;;;;;::::1;;54960:58;55014:3;54960:49;54988:20;;54984:2;:24;54960:16;54977:1;54960:19;;;;;;:58;54945:12;:73:::0;;;55072:20:::1;::::0;55044:58:::1;::::0;55098:3:::1;::::0;55044:49:::1;::::0;55068:24:::1;55044:16:::0;55061:1:::1;55044:19;::::0;:58:::1;55029:12;:73:::0;-1:-1:-1;54803:307:0:o;31246:20::-;;;-1:-1:-1;;;;;31246:20:0;;:::o;31865:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35667:121::-;-1:-1:-1;;;;;35757:16:0;35734:4;35757:16;;;:8;:16;;;;;:23;;35667:121::o;31485:31::-;;;;:::o;43861:1544::-;32663:7;:26;32671:17;:15;:17::i;:::-;32663:26;;;;;;;;;;;:32;;;32644:15;:51;;:104;;;;;32718:7;:26;32726:17;:15;:17::i;:::-;32718:26;;;;;;;;;;;:30;;;32699:15;:49;;32644:104;32636:144;;;;;-1:-1:-1;;;32636:144:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32636:144:0;;;;;;;;;;;;;;;32532:8:::1;::::0;::::1;::::0;::::1;;;32531:9;32523:44;;;::::0;;-1:-1:-1;;;32523:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;;::::1;;43986:7:::2;;;;;;;;;-1:-1:-1::0;;;;;43986:7:0::2;-1:-1:-1::0;;;;;43986:12:0::2;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;43986:14:0;-1:-1:-1;;;;;43974:26:0::2;:5:::0;;43980:1:::2;43974:8:::0;::::2;;;;;;;;;;-1:-1:-1::0;;;;;43974:8:0::2;-1:-1:-1::0;;;;;43974:26:0::2;;:58;;;;-1:-1:-1::0;44024:7:0::2;::::0;-1:-1:-1;;;;;44024:7:0::2;44004:5:::0;;44024:7;44004:8;;::::2;;;;;;;;;;;-1:-1:-1::0;;;;;44004:8:0::2;-1:-1:-1::0;;;;;44004:28:0::2;;43974:58;43966:87;;;::::0;;-1:-1:-1;;;43966:87:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;43966:87:0;;;;;;;;;;;;;::::2;;44104:1;44072:29;44090:10;44072:17;:29::i;:::-;:33;:49;;;;;44120:1;44109:8;;:12;44072:49;44064:82;;;::::0;;-1:-1:-1;;;44064:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;44064:82:0;;;;;;;;;;;;;::::2;;44167:12;44182:20;44191:10;44182:8;:20::i;:::-;44167:35;;44223:14;44240:33;44253:5;;44259:1;44253:8;;;;;;;;;;;;;-1:-1:-1::0;;;;;44253:8:0::2;44263:9;44240:12;:33::i;:::-;44223:50;;44294:18;44315:79;44361:7;:26;44369:17;:15;:17::i;:::-;44361:26;;;;;;;;;;;:32;;;44315:41;44335:20;;44329:2;:26;44315:9;:13;;:41;;;;:::i;:79::-;44294:100;;44416:18;44436:23:::0;44463:50:::2;44476:13;44491:9;44502:10;44463:12;:50::i;:::-;44415:98:::0;;-1:-1:-1;44415:98:0;-1:-1:-1;44534:13:0::2;44550:43;44583:9:::0;44550:28:::2;:9;44415:98:::0;44550:13:::2;:28::i;:43::-;44534:59;;44612:7;;;;;;;;;-1:-1:-1::0;;;;;44612:7:0::2;-1:-1:-1::0;;;;;44612:12:0::2;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;44612:14:0;44606:48:::2;::::0;;-1:-1:-1;;;44606:48:0;;;;-1:-1:-1;;;;;44606:29:0;;::::2;::::0;::::2;::::0;44643:8;;44606:48:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;44643:8;44606:29;:48;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;44689:9;44678:8;:20;44675:118;;;44714:67;44745:10;44757:23;:9;44771:8:::0;44757:13:::2;:23::i;:::-;44714:30;:67::i;:::-;44813:14;44830:46;44845:8;44855:5;;44870:4;44830:14;:46::i;:::-;44906:10;44897:20;::::0;;;:8:::2;:20;::::0;;;;;;;;44923:83;;::::2;::::0;::::2;::::0;;;;;;44813:63;;-1:-1:-1;44923:83:0;::::2;44940:17;:15;:17::i;:::-;44923:83:::0;;44959:15:::2;44923:83;::::0;;::::2;::::0;;;;;;;;;;;;;;;;;;44897:110;;::::2;::::0;;::::2;::::0;;-1:-1:-1;44897:110:0;;;;;;;;;::::2;::::0;;::::2;;::::0;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;45038:7;:22:::2;::::0;44976:9;45038:11:::2;:22::i;:::-;45028:7;:32:::0;45138:10:::2;45121:28;::::0;;;:16:::2;:28;::::0;;;;:71:::2;::::0;45173:18;;45121:28;45150:17:::2;:15;:17::i;:::-;45121:47;;;;;;;;;;;;:51;;:71;;;;:::i;:::-;45088:10;45071:28;::::0;;;:16:::2;:28;::::0;;;;;45100:17:::2;:15;:17::i;:::-;45071:47;;;;;;;;;;;:121;;;;45240:58;45279:18;45240:7;:26;45248:17;:15;:17::i;:::-;45240:26;;;;;;;;;;;:34;;;:38;;:58;;;;:::i;:::-;45203:7;:26;45211:17;:15;:17::i;:::-;45203:26:::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;45203:26:0;:34:::2;;:95:::0;45355:10:::2;45336:17;:15;:17::i;:::-;45324:73;::::0;;;;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;;;;;;;45324:73:0;;;;;;;;;::::2;32578:1;;;;;;;43861:1544:::0;;:::o;31373:16::-;;;;:::o;31279:32::-;;;;:::o;38490:189::-;-1:-1:-1;;;;;38644:23:0;;38551:10;38644:23;;;:16;:23;;;;;;;;38668:1;38644:26;;;;;;;;;38636:1;38612:26;;;;;;38605:1;38581:26;;;;;;:90;;:58;;:26;:30;:58::i;:90::-;38573:98;38490:189;-1:-1:-1;;38490:189:0:o;49858:183::-;32532:8;;;;;;;32531:9;32523:44;;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;;;;49944:24;;49936:50:::1;;;::::0;;-1:-1:-1;;;49936:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49936:50:0;;;;;;;;;;;;;::::1;;50009:10;49999:21;::::0;;;:9:::1;:21;::::0;;;;;;;:34;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;49858:183:::0;:::o;31085:20::-;;;;;;-1:-1:-1;;;;;31085:20:0;;:::o;47112:1235::-;32663:7;:26;32671:17;:15;:17::i;:::-;32663:26;;;;;;;;;;;:32;;;32644:15;:51;;:104;;;;;32718:7;:26;32726:17;:15;:17::i;:::-;32718:26;;;;;;;;;;;:30;;;32699:15;:49;;32644:104;32636:144;;;;;-1:-1:-1;;;32636:144:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32636:144:0;;;;;;;;;;;;;;;32532:8:::1;::::0;::::1;::::0;::::1;;;32531:9;32523:44;;;::::0;;-1:-1:-1;;;32523:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;;::::1;;47240:7:::2;::::0;-1:-1:-1;;;;;47220:28:0;;::::2;47240:7:::0;::::2;47220:28;47212:93;;;;-1:-1:-1::0;;;47212:93:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47356:1;47324:29;47342:10;47324:17;:29::i;:::-;:33;:49;;;;;47372:1;47361:8;;:12;47324:49;47316:82;;;::::0;;-1:-1:-1;;;47316:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;47316:82:0;;;;;;;;;;;;;::::2;;47419:12;47434:20;47443:10;47434:8;:20::i;:::-;47419:35;;47475:18;47496:79;47542:7;:26;47550:17;:15;:17::i;:::-;47542:26;;;;;;;;;;;:32;;;47496:41;47516:20;;47510:2;:26;47496:9;:13;;:41;;;;:::i;:79::-;47475:100;;47597:18;47617:23:::0;47644:50:::2;47657:13;47672:9;47683:10;47644:12;:50::i;:::-;47755:7;::::0;47596:98;;-1:-1:-1;47596:98:0;-1:-1:-1;47715:91:0::2;::::0;-1:-1:-1;;;;;47755:7:0::2;47765:10;47785:4;47596:98:::0;47715:31:::2;:91::i;:::-;47836:10;47827:20;::::0;;;:8:::2;:20;::::0;;;;;;;;47853:87;;::::2;::::0;::::2;::::0;;;;;;47827:20;47853:87;;::::2;47870:17;:15;:17::i;:::-;47853:87:::0;;47889:15:::2;47853:87;::::0;;::::2;::::0;;;;;;;;;;;;;;;;;;47827:114;;::::2;::::0;;::::2;::::0;;-1:-1:-1;47827:114:0;;;;;;;;;::::2;::::0;;::::2;;::::0;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;47972:7;:26:::2;::::0;47906:13;47972:11:::2;:26::i;:::-;47962:7;:36:::0;48076:10:::2;48059:28;::::0;;;:16:::2;:28;::::0;;;;:71:::2;::::0;48111:18;;48059:28;48088:17:::2;:15;:17::i;48059:71::-;48026:10;48009:28;::::0;;;:16:::2;:28;::::0;;;;;48038:17:::2;:15;:17::i;:::-;48009:47;;;;;;;;;;;:121;;;;48178:58;48217:18;48178:7;:26;48186:17;:15;:17::i;48178:58::-;48141:7;:26;48149:17;:15;:17::i;:::-;48141:26:::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;48141:26:0;:34:::2;;:95:::0;48293:10:::2;48274:17;:15;:17::i;:::-;48262:77;::::0;;;;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;;;;;;;48262:77:0;;;;;;;;;::::2;32578:1;;;;47112:1235:::0;;:::o;31343:23::-;;;;:::o;37263:384::-;37330:10;37353:17;37372:18;37394:44;37412:16;37430:7;37394:17;:44::i;:::-;37352:86;;;;37450:17;37469:18;37491:44;37509:16;37527:7;37491:17;:44::i;:::-;37449:86;;-1:-1:-1;37449:86:0;-1:-1:-1;37554:85:0;37605:32;:13;37449:86;37605:17;:32::i;:::-;37554:45;37591:7;37555:30;:12;37572;37555:16;:30::i;:::-;37554:36;;:45::i;:85::-;37546:93;37263:384;-1:-1:-1;;;;;;37263:384:0:o;32011:41::-;;;;;;;;;;;;;:::o;35318:98::-;35391:10;:17;35318:98;:::o;48474:787::-;32663:7;:26;32671:17;:15;:17::i;:::-;32663:26;;;;;;;;;;;:32;;;32644:15;:51;;:104;;;;;32718:7;:26;32726:17;:15;:17::i;:::-;32718:26;;;;;;;;;;;:30;;;32699:15;:49;;32644:104;32636:144;;;;;-1:-1:-1;;;32636:144:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32636:144:0;;;;;;;;;;;;;;;32532:8:::1;::::0;::::1;::::0;::::1;;;32531:9;32523:44;;;::::0;;-1:-1:-1;;;32523:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;;::::1;;48579:7:::2;;;;;;;;;-1:-1:-1::0;;;;;48579:7:0::2;-1:-1:-1::0;;;;;48579:14:0::2;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;48579:16:0;-1:-1:-1;;;;;48565:30:0::2;:10;:30;::::0;:53:::2;;-1:-1:-1::0;48613:5:0::2;::::0;;;::::2;-1:-1:-1::0;;;;;48613:5:0::2;48599:10;:19;48565:53;48557:78;;;::::0;;-1:-1:-1;;;48557:78:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;48557:78:0;;;;;;;;;;;;;::::2;;48654:17;:15;:17::i;:::-;48675:1;48654:22;48646:49;;;::::0;;-1:-1:-1;;;48646:49:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;48646:49:0;;;;;;;;;;;;;::::2;;48708:12;48723:20;48732:10;48723:8;:20::i;:::-;48708:35;;48774:16;48783:6;:4;:6::i;:::-;48774:4;::::0;;:8:::2;:16::i;:::-;48759:12;:31;48756:67;;;48807:16;48816:6;:4;:6::i;48807:16::-;48792:31;;48756:67;48845:10;48836:20;::::0;;;:8:::2;:20;::::0;;;;;;;;48862:69;;::::2;::::0;::::2;::::0;;;;;;48836:20;48862:69;;::::2;48879:17;:15;:17::i;:::-;48862:69:::0;;48898:15:::2;48862:69;::::0;;::::2;::::0;;;;-1:-1:-1;48862:69:0;;;;;;;;;;;;;;48836:96;;::::2;::::0;;::::2;::::0;;;;;;;;;;::::2;::::0;;::::2;;::::0;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;::::2;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;49020:10:::2;49003:28:::0;;:16:::2;:28:::0;;;;;;:65:::2;::::0;48918:12;;49003:28;49032:17:::2;:15;:17::i;49003:65::-;48970:10;48953:28;::::0;;;:16:::2;:28;::::0;;;;;48982:17:::2;:15;:17::i;:::-;48953:47;;;;;;;;;;;:115;;;;49116:52;49155:12;49116:7;:26;49124:17;:15;:17::i;49116:52::-;49079:7;:26;49087:17;:15;:17::i;:::-;49079:26:::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;49079:26:0;:34:::2;;:89:::0;49225:10:::2;49206:17;:15;:17::i;:::-;49194:59;::::0;;49237:1:::2;49194:59:::0;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;;;;;;;49194:59:0;;;;;;;;;::::2;32578:1;48474:787:::0;:::o;31052:20::-;;;;;;;;;:::o;31961:43::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31961:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32059:65::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;31454:24::-;;;;:::o;31112:33::-;;;-1:-1:-1;;;;;31112:33:0;;:::o;55305:78::-;32188:5;;;;;-1:-1:-1;;;;;32188:5:0;32174:10;:19;32166:53;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;;;;55367:8:::1;::::0;;-1:-1:-1;;55355:20:0;::::1;55367:8;::::0;;;::::1;;;55366:9;55355:20:::0;;::::1;;::::0;;55305:78::o;38065:319::-;38195:16;;;38209:1;38195:16;;;;;;;;38141:17;;;;38195:16;38209:1;38195:16;;;;;;;;;;-1:-1:-1;38195:16:0;38170:41;;38233:8;38222:5;38228:1;38222:8;;;;;;;;-1:-1:-1;;;;;38222:19:0;;;:8;;;;;;;;;:19;38271:7;;38252:8;;38271:7;;;38252:5;;38271:7;;38252:8;;;;;;-1:-1:-1;;;;;38252:27:0;;;:8;;;;;;;;;;:27;;;;38333:7;;:21;;;-1:-1:-1;;;38333:21:0;;;;38302:71;;38333:7;;;;;:19;;:21;;;;;;;;;;:7;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38333:21:0;38356:9;38367:5;38302:30;:71::i;:::-;38374:1;38302:74;;;;;;;;;;;;;;38290:86;;38065:319;;;;;:::o;38770:273::-;38818:12;38875:1;38864:172;38881:1;38878;:4;38864:172;;38925:10;;;;:7;:10;;;;;:16;38906:15;:35;;;;:72;;-1:-1:-1;38964:10:0;;;;:7;:10;;;;;:14;;;38945:15;:33;;38906:72;38903:122;;;39008:1;38998:11;;38903:122;38884:3;;38864:172;;31318:18;;;;:::o;45571:1382::-;32663:7;:26;32671:17;:15;:17::i;:::-;32663:26;;;;;;;;;;;:32;;;32644:15;:51;;:104;;;;;32718:7;:26;32726:17;:15;:17::i;:::-;32718:26;;;;;;;;;;;:30;;;32699:15;:49;;32644:104;32636:144;;;;;-1:-1:-1;;;32636:144:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32636:144:0;;;;;;;;;;;;;;;32532:8:::1;::::0;::::1;::::0;::::1;;;32531:9;32523:44;;;::::0;;-1:-1:-1;;;32523:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32523:44:0;;;;;;;;;;;;;::::1;;45714:7:::2;::::0;-1:-1:-1;;;;;45714:7:0::2;45694:5:::0;;45714:7:::2;45694:8:::0;::::2;;;;;;;;;;-1:-1:-1::0;;;;;45694:8:0::2;-1:-1:-1::0;;;;;45694:28:0::2;;;:98;;;;-1:-1:-1::0;45738:7:0::2;::::0;-1:-1:-1;;;;;45738:7:0::2;:19;:7:::0;45758:23:::2;45782:5:::0;;45738:7:::2;45782:8:::0;::::2;;;;;;;;;;-1:-1:-1::0;;;;;45782:8:0::2;45758:33;;;;;;;;;;;;;-1:-1:-1::0;;;;;45758:33:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;45758:33:0;45738:54:::2;::::0;;-1:-1:-1;;;;;;45738:54:0::2;::::0;;;;;;::::2;::::0;::::2;::::0;;;;;;;;;;45758:33:::2;::::0;45738:54;;;;;;;;;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;45738:54:0;-1:-1:-1;;;;;45726:66:0::2;:5:::0;;45732:1:::2;45726:8:::0;::::2;;;;;;;;;;-1:-1:-1::0;;;;;45726:8:0::2;-1:-1:-1::0;;;;;45726:66:0::2;;45694:98;:130;;;;-1:-1:-1::0;45816:7:0::2;::::0;-1:-1:-1;;;;;45816:7:0::2;45796:5:::0;;45816:7;45796:8;;::::2;;;;;;;;;;;-1:-1:-1::0;;;;;45796:8:0::2;-1:-1:-1::0;;;;;45796:28:0::2;;45694:130;45686:159;;;::::0;;-1:-1:-1;;;45686:159:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;45686:159:0;;;;;;;;;;;;;::::2;;45896:1;45864:29;45882:10;45864:17;:29::i;:::-;:33;:49;;;;;45912:1;45901:8;;:12;45864:49;45856:82;;;::::0;;-1:-1:-1;;;45856:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;45856:82:0;;;;;;;;;;;;;::::2;;45959:12;45974:20;45983:10;45974:8;:20::i;:::-;45959:35;;46015:14;46032:33;46045:5;;46051:1;46045:8;;;;;;;;;;;;;-1:-1:-1::0;;;;;46045:8:0::2;46055:9;46032:12;:33::i;:::-;46015:50;;46086:18;46107:79;46153:7;:26;46161:17;:15;:17::i;46107:79::-;46086:100;;46208:18;46228:23:::0;46255:50:::2;46268:13;46283:9;46294:10;46255:12;:50::i;:::-;46207:98:::0;;-1:-1:-1;46207:98:0;-1:-1:-1;46326:14:0::2;46343:81;46358:43;46391:9:::0;46358:28:::2;:9:::0;46207:98;46358:13:::2;:28::i;:43::-;46403:5;;46418:4;46343:14;:81::i;:::-;46454:10;46445:20;::::0;;;:8:::2;:20;::::0;;;;;;;;46471:83;;::::2;::::0;::::2;::::0;;;;;;46326:98;;-1:-1:-1;46471:83:0;::::2;46488:17;:15;:17::i;:::-;46471:83:::0;;46507:15:::2;46471:83;::::0;;::::2;::::0;;;;;;;;;;;;;;;;;;46445:110;;::::2;::::0;;::::2;::::0;;-1:-1:-1;46445:110:0;;;;;;;;;::::2;::::0;;::::2;;::::0;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;46586:7;:22:::2;::::0;46524:9;46586:11:::2;:22::i;:::-;46576:7;:32:::0;46686:10:::2;46669:28;::::0;;;:16:::2;:28;::::0;;;;:71:::2;::::0;46721:18;;46669:28;46698:17:::2;:15;:17::i;46669:71::-;46636:10;46619:28;::::0;;;:16:::2;:28;::::0;;;;;46648:17:::2;:15;:17::i;:::-;46619:47;;;;;;;;;;;:121;;;;46788:58;46827:18;46788:7;:26;46796:17;:15;:17::i;46788:58::-;46751:7;:26;46759:17;:15;:17::i;:::-;46751:26:::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;46751:26:0;:34:::2;;:95:::0;46903:10:::2;46884:17;:15;:17::i;:::-;46872:73;::::0;;;;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;;;;;;;46872:73:0;;;;;;;;;::::2;32578:1;;;;;;45571:1382:::0;;;:::o;31423:24::-;;;;:::o;31187:20::-;;;;:::o;50114:161::-;50182:11;;50163:15;:30;;:47;;;;-1:-1:-1;50197:8:0;;:13;50163:47;50155:67;;;;;-1:-1:-1;;;50155:67:0;;;;;;;;;;;;-1:-1:-1;;;50155:67:0;;;;;;;;;;;;;;;50254:13;:11;:13::i;:::-;50243:8;:24;50114:161::o;53583:483::-;32188:5;;;;;-1:-1:-1;;;;;32188:5:0;32174:10;:19;32166:53;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;;;;53713:11:::1;;53695:15;:29;:67;;;;;53744:11;:18;53728:5;:12;:34;53695:67;53687:88;;;::::0;;-1:-1:-1;;;53687:88:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53687:88:0;;;;;;;;;;;;;::::1;;53800:6;53796:263;53812:5;:12;53810:1;:14;53796:263;;;53845:10;53861:5;53867:1;53861:8;;;;;;;;;::::0;;::::1;::::0;;;;;;;53845:25;;::::1;::::0;::::1;::::0;;-1:-1:-1;53845:25:0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;53845:25:0::1;-1:-1:-1::0;;;;;53845:25:0;;::::1;::::0;;;::::1;::::0;;53932:20:::1;::::0;53907:14;;:59:::1;::::0;53958:7:::1;::::0;53907:46:::1;::::0;53926:2:::1;:26;::::0;53907:14;;53919:1;;53907:14;::::1;;;;;;;;;;;:18;;:46;;;;:::i;:59::-;53885:9;:19;53895:5;53901:1;53895:8;;;;;;;;;;;;;;-1:-1:-1::0;;;;;53885:19:0::1;-1:-1:-1::0;;;;;53885:19:0::1;;;;;;;;;;;;:81;;;;54003:44;54027:9;:19;54037:5;54043:1;54037:8;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54027:19:0::1;-1:-1:-1::0;;;;;54027:19:0::1;;;;;;;;;;;;;54003;;:23;;:44;;;;:::i;:::-;53981:19;:66:::0;53826:3:::1;;53796:263;;;;53583:483:::0;;:::o;31523:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31523:23:0;;-1:-1:-1;31523:23:0;:::o;55122:171::-;32188:5;;;;;-1:-1:-1;;;;;32188:5:0;32174:10;:19;32166:53;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;-1:-1:-1;;;32166:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;55203:23:0;::::1;55195:62;;;::::0;;-1:-1:-1;;;55195:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55268:5;:17:::0;;-1:-1:-1;;;;;55268:17:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;55268:17:0;;::::1;::::0;;;::::1;::::0;;55122:171::o;31553:27::-;;;;;;;;;;;;4570:181;4628:7;4660:5;;;4684:6;;;;4676:46;;;;;-1:-1:-1;;;4676:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4742:1;4570:181;-1:-1:-1;;;4570:181:0:o;5924:471::-;5982:7;6227:6;6223:47;;-1:-1:-1;6257:1:0;6250:8;;6223:47;6294:5;;;6298:1;6294;:5;:1;6318:5;;;;;:10;6310:56;;;;-1:-1:-1;;;6310:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6871:132;6929:7;6956:39;6960:1;6963;6956:39;;;;;;;;;;;;;;;;;:3;:39::i;5034:136::-;5092:7;5119:43;5123:1;5126;5119:43;;;;;;;;;;;;;;;;;:3;:43::i;22606:361::-;22801:45;;;-1:-1:-1;;;;;22801:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22801:45:0;-1:-1:-1;;;22801:45:0;;;22790:57;;;;22755:12;;;;22790:10;;;;22801:45;22790:57;;;22801:45;22790:57;;22801:45;22790:57;;;;;;;;;;-1:-1:-1;;22790:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22754:93;;;;22866:7;:57;;;;-1:-1:-1;22878:11:0;;:16;;:44;;;22909:4;22898:24;;;;;;;;;;;;;;;-1:-1:-1;22898:24:0;22878:44;22858:101;;;;;-1:-1:-1;;;22858:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22606:361;;;;;:::o;39384:863::-;39448:19;39482:17;:15;:17::i;:::-;39503:1;39482:22;39479:761;;;-1:-1:-1;;;;;39523:16:0;;39542:1;39523:16;;;:9;:16;;;;;;:20;39520:224;;-1:-1:-1;;;;;;39580:16:0;;;;;;:9;:16;;;;;;39520:224;;;39653:75;39720:7;39653:62;39685:29;39694:19;;39685:4;;:8;;:29;;;;:::i;:::-;39653:27;39674:5;39653:20;:27::i;:75::-;39636:92;;39520:224;39479:761;;;39764:17;:15;:17::i;:::-;39785:1;39764:22;39761:479;;;39827:1;39841;39819:10;;;:7;:10;;:18;;39810:4;;:28;;:8;:28::i;:::-;:32;39802:70;;;;;-1:-1:-1;;;39802:70:0;;;;;;;;;;;;-1:-1:-1;;;39802:70:0;;;;;;;;;;;;;;;39953:1;39945:10;;:7;:10;;:18;;39936:4;;39904:74;;39970:7;;39904:61;;39936:28;;:4;:8;:28::i;39761:479::-;39999:17;:15;:17::i;:::-;40020:1;39999:22;39996:244;;;40038:13;40056:42;40074:16;40092:5;40056:17;:42::i;:::-;40037:61;;;40114:13;40132:42;40150:16;40168:5;40132:17;:42::i;:::-;-1:-1:-1;40113:61:0;-1:-1:-1;40206:22:0;:8;40113:61;40206:12;:22::i;:::-;40189:39;39384:863;-1:-1:-1;;;;39384:863:0:o;49347:402::-;49397:12;49425:14;49433:5;49425:7;:14::i;:::-;49421:321;;49455:6;:18;;;;;;;;-1:-1:-1;49455:18:0;;;;;;;;;-1:-1:-1;;;;;;49455:18:0;-1:-1:-1;;;;;49455:18:0;;;;;49498:13;;:20;;:17;:20::i;:::-;-1:-1:-1;;;;;49556:16:0;;;;;;:9;:16;;;;;49550:30;49488;;-1:-1:-1;49550:30:0;-1:-1:-1;;49550:30:0;;;;;;;;;;;49547:113;;49624:20;49638:5;49624:13;:20::i;:::-;-1:-1:-1;;;;;49605:16:0;;;;;;:9;:16;;;;;;;;:39;;;;:16;;:39;;;;;;:::i;:::-;;49421:321;;;-1:-1:-1;;;;;49700:15:0;;;;;;:8;:15;;;;;:18;;:15;;;:18;;;;;;;;;;;;;;:30;;;49690:40;;49347:402;;;:::o;40404:949::-;40500:18;40520:23;40558:17;:15;:17::i;:::-;40579:1;40558:22;40555:584;;;-1:-1:-1;;;;;40599:16:0;;;;;;:9;:16;;;;;;40596:323;;40691:1;40668:19;;40659:6;:4;:6::i;:::-;40652:4;;:13;:35;40648:44;40640:82;;;;;-1:-1:-1;;;40640:82:0;;;;;;;;;;;;-1:-1:-1;;;40640:82:0;;;;;;;;;;;;;;;40761:41;40782:19;;40761:16;40770:6;:4;:6::i;40761:16::-;:20;;:41::i;:::-;40744:14;:58;40741:163;;;40843:41;40864:19;;40843:16;40852:6;:4;:6::i;40843:41::-;40826:58;;40741:163;40555:584;;;40977:1;40958:16;40967:6;:4;:6::i;40958:16::-;:20;40950:58;;;;;-1:-1:-1;;;40950:58:0;;;;;;;;;;;;-1:-1:-1;;;40950:58:0;;;;;;;;;;;;;;;41043:16;41052:6;:4;:6::i;41043:16::-;41026:14;:33;41023:105;;;41096:16;41105:6;:4;:6::i;41096:16::-;41079:33;;41023:105;41161:84;41224:20;;41218:2;:26;41161:52;41180:7;:26;41188:17;:15;:17::i;:::-;41180:26;;;;;;;;;;;:32;;;41161:14;:18;;:52;;;;:::i;:84::-;41149:96;;41294:51;41312:5;41319:14;41335:9;41294:17;:51::i;:::-;41256:89;;;;-1:-1:-1;40404:949:0;-1:-1:-1;;;;40404:949:0:o;23385:195::-;23493:12;;;23455;23493;;;;;;;;;-1:-1:-1;;;;;23472:7:0;;;23486:5;;23472:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23472:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23454:52;;;23525:7;23517:55;;;;-1:-1:-1;;;23517:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50449:697;50545:15;50572:14;50589:33;50602:5;;50608:1;50602:8;;;;;;;;;;;;;-1:-1:-1;;;;;50602:8:0;50612:9;50589:12;:33::i;:::-;50572:50;-1:-1:-1;50669:17:0;50689:28;50712:4;50689:18;50572:50;50703:3;50689:13;:18::i;:28::-;50669:48;-1:-1:-1;50760:13:0;50776:29;:15;50796:8;50776:19;:29::i;:::-;50760:45;;50826:21;50873:7;;;;;;;;;-1:-1:-1;;;;;50873:7:0;-1:-1:-1;;;;;50873:12:0;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50873:14:0;-1:-1:-1;;;;;50861:26:0;:5;;50867:1;50861:8;;;;;;;;;;;-1:-1:-1;;;;;50861:8:0;-1:-1:-1;;;;;50861:26:0;;50858:247;;;50913:68;50935:9;50946:12;50960:5;;50913:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50967:3:0;;-1:-1:-1;50972:8:0;;-1:-1:-1;50913:21:0;;-1:-1:-1;50913:68:0:i;:::-;50903:78;;50858:247;;;51022:71;51047:9;51058:12;51072:5;;51022:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51079:3:0;;-1:-1:-1;51084:8:0;;-1:-1:-1;51022:24:0;;-1:-1:-1;51022:71:0:i;:::-;51012:81;;50858:247;51128:7;51136:1;51128:10;;;;;;;;;;;;;;51115:23;;50449:697;;;;;;;;;;:::o;22975:402::-;23200:51;;;-1:-1:-1;;;;;23200:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23200:51:0;-1:-1:-1;;;23200:51:0;;;23189:63;;;;23154:12;;;;23189:10;;;;23200:51;23189:63;;;23200:51;23189:63;;23200:51;23189:63;;;;;;;;;;-1:-1:-1;;23189:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23153:99;;;;23271:7;:57;;;;-1:-1:-1;23283:11:0;;:16;;:44;;;23314:4;23303:24;;;;;;;;;;;;;;;-1:-1:-1;23303:24:0;23283:44;23263:106;;;;-1:-1:-1;;;23263:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22975:402;;;;;;:::o;36330:818::-;36419:15;;;36467:7;:27;;;;;;;;;36464:677;;;36541:7;;;;;;;;;-1:-1:-1;;;;;36541:7:0;-1:-1:-1;;;;;36541:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36541:19:0;36523:67;;;-1:-1:-1;;;36523:67:0;;-1:-1:-1;;;;;36523:67:0;;;;;;;;;:58;;;;;;;:67;;;;;36541:19;;36523:67;;;;;;;:58;:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36523:67:0;36637:7;;:19;;;-1:-1:-1;;;36637:19:0;;;;36523:67;;-1:-1:-1;;;;;;36637:7:0;;;;:17;;:19;;;;;36523:67;;36637:19;;;;;;;;:7;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36637:19:0;36619:56;;;-1:-1:-1;;;36619:56:0;;;;-1:-1:-1;;;;;36619:54:0;;;;;;:56;;;;;36637:19;;36619:56;;;;;;;;:54;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36619:56:0;;-1:-1:-1;36464:677:0;;;36706:16;36695:7;:27;;;;;;;;;36692:449;;;36771:7;;;;;;;;;-1:-1:-1;;;;;36771:7:0;-1:-1:-1;;;;;36771:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36771:19:0;36831:11;;36751:92;;;-1:-1:-1;;;36751:92:0;;-1:-1:-1;;;;;36751:92:0;;;;;;;;;;;;;;;;:70;;;;;;;:92;;;;;36771:19;;36751:92;;;;;;;:70;:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36751:92:0;36872:8;;36751:92;;-1:-1:-1;36872:8:0;-1:-1:-1;36897:16:0;36916:13;:11;:13::i;:::-;36897:32;;36958:11;36947:8;;:22;36944:86;;;37003:11;36989:25;;36944:86;36692:449;;;;37060:69;;-1:-1:-1;;;37060:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36692:449;36330:818;;;;;:::o;29794:511::-;29895:21;29952:1;29937:4;:11;:16;;29929:59;;;;;-1:-1:-1;;;29929:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30020:4;:11;30009:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30009:23:0;;29999:33;;30056:8;30043:7;30051:1;30043:10;;;;;;;;;;;;;:21;;;;;30080:6;30075:223;30106:1;30092:4;:11;:15;30088:1;:19;30075:223;;;30130:14;30146:15;30165:42;30177:7;30186:4;30191:1;30186:7;;;;;;;;;;;;;;30195:4;30200:1;30204;30200:5;30195:11;;;;;;;;;;;;;;30165;:42::i;:::-;30129:78;;;;30239:47;30252:7;30260:1;30252:10;;;;;;;;;;;;;;30264:9;30275:10;30239:12;:47::i;:::-;30222:7;30230:1;30234;30230:5;30222:14;;;;;;;;;;;;;;;;;:64;-1:-1:-1;;30109:3:0;;30075:223;;;;29794:511;;;;;:::o;35844:350::-;35889:10;;;35952:235;35968:1;35966;:3;35952:235;;;36022:7;;:19;;;-1:-1:-1;;;36022:19:0;;;;35990:9;;-1:-1:-1;;;;;36022:7:0;;:17;;:19;;;;;;;;;;;;;;:7;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36022:19:0;36002:54;;;-1:-1:-1;;;36002:54:0;;;;;;;;;;-1:-1:-1;;;;;36002:51:0;;;;;;:54;;;;;36022:19;;36002:54;;;;;;;;:51;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36002:54:0;36103:7;;:19;;;-1:-1:-1;;;36103:19:0;;;;36002:54;;-1:-1:-1;;;;;;36103:7:0;;;;:17;;:19;;;;;36002:54;;36103:19;;;;;;;;:7;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36103:19:0;36083:53;;;-1:-1:-1;;;36083:53:0;;;;;;;;;;-1:-1:-1;;;;;36083:47:0;;;;;;:53;;;;;;;;;;;;;;;:47;:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36083:53:0;;;;-1:-1:-1;36159:16:0;:5;36083:53;36159:9;:16::i;:::-;36151:24;-1:-1:-1;;35971:3:0;;35952:235;;;;35844:350;;:::o;7499:278::-;7585:7;7620:12;7613:5;7605:28;;;;-1:-1:-1;;;7605:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7644:9;7660:1;7656;:5;;;;;;;7499:278;-1:-1:-1;;;;;7499:278:0:o;5473:192::-;5559:7;5595:12;5587:6;;;;5579:29;;;;-1:-1:-1;;;5579:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5631:5:0;;;5473:192::o;42678:463::-;42778:13;;;42788:2;42778:13;;;42735;42778;;;;;;42761:14;;42778:13;;;;;;;;;;;-1:-1:-1;42778:13:0;42761:30;;42807:6;42802:305;42823:2;42819:1;:6;42802:305;;;42847:8;42903:1;42898:2;:6;42895:1;:10;42891:1;:15;42884:1;-1:-1:-1;;;;;42871:16:0;:36;;;;;;42858:51;;42847:62;;42924:9;42954:2;42949:1;42943:8;;:13;;;;;;;;42936:21;;42924:33;;42972:9;43013:2;43007:9;;43002:2;:14;42997:1;42991:8;;:25;42984:33;;42972:45;;43041:8;43046:2;43041:4;:8::i;:::-;43032:1;43036;43034;:3;43032:6;;;;;;;;;;;:17;-1:-1:-1;;;;;43032:17:0;;;;;;;;;43075:8;43080:2;43075:4;:8::i;:::-;43064:1;43068;43066;:3;43070:1;43066:5;43064:8;;;;;;;;;;;:19;-1:-1:-1;;;;;43064:19:0;;;;;;;;-1:-1:-1;;42827:3:0;;;;;-1:-1:-1;42802:305:0;;-1:-1:-1;42802:305:0;;-1:-1:-1;43131:1:0;42678:463;-1:-1:-1;;42678:463:0:o;41556:1021::-;41728:9;41657:18;;41802:1;41782:17;:15;:17::i;:::-;:21;41779:224;;;41827:24;41845:5;41827:17;:24::i;:::-;41819:32;;41779:224;;;41909:12;;41891:14;:30;;41883:73;;;;;-1:-1:-1;;;41883:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41979:12:0;;41779:224;-1:-1:-1;;;;;42023:23:0;;;;;;:16;:23;;;;;42068:5;;42047:17;:15;:17::i;:::-;42023:42;;;;;;;;;;;;:50;42015:116;;;;-1:-1:-1;;;42015:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42145:23:0;;;;;;:16;:23;;;;;42210:5;;42145:62;;42192:14;;42169:17;:15;:17::i;42145:62::-;:70;42142:242;;;42247:125;42351:20;;42345:2;:26;42247:93;42307:7;:26;42315:17;:15;:17::i;:::-;42307:26;;;;;;;;;;;:32;;;42248:53;42258:16;:23;42275:5;-1:-1:-1;;;;;42258:23:0;-1:-1:-1;;;;;42258:23:0;;;;;;;;;;;;:42;42282:17;:15;:17::i;:::-;42258:42;;;;;;;;;;;;42248:5;:9;;:53;;;;:::i;42247:125::-;42231:141;;42142:242;42420:1;42404:13;:17;42396:58;;;;;-1:-1:-1;;;42396:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42486:83;42536:7;:26;42544:17;:15;:17::i;:::-;42536:26;;;;;;;;;;;:32;;;42486:45;42510:20;;42504:2;:26;42486:13;:17;;:45;;;;:::i;:83::-;42465:104;;41556:1021;;;;;;;:::o;52690:682::-;52900:21;52873:8;32874:15;32862:8;:27;;32854:64;;;;;-1:-1:-1;;;32854:64:0;;;;;;;;;;;;-1:-1:-1;;;32854:64:0;;;;;;;;;;;;;;;52953:7:::1;;;;;;;;;-1:-1:-1::0;;;;;52953:7:0::1;-1:-1:-1::0;;;;;52953:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;52953:14:0;52942:7;;-1:-1:-1;;;;;52942:25:0;;::::1;::::0;:4;;52947:1:::1;::::0;52942:7:::1;;;;;;;;;;-1:-1:-1::0;;;;;52942:25:0::1;;52934:67;;;::::0;;-1:-1:-1;;;52934:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;53053:7;::::0;:21:::1;::::0;;-1:-1:-1;;;53053:21:0;;;;53022:69:::1;::::0;-1:-1:-1;;;;;53053:7:0::1;::::0;:19:::1;::::0;:21:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:7;:21;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53053:21:0;53076:8;53086:4;53022:30:::1;:69::i;:::-;53012:79;;53141:12;53110:7;53135:1;53118:7;:14;:18;53110:27;;;;;;;;;;;;;;:43;;53102:99;;;;-1:-1:-1::0;;;53102:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53225:7;;;;;;;;;-1:-1:-1::0;;;;;53225:7:0::1;-1:-1:-1::0;;;;;53225:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53225:14:0;53275:7:::1;::::0;:21:::1;::::0;;-1:-1:-1;;;53275:21:0;;;;-1:-1:-1;;;;;53219:30:0;;::::1;::::0;::::1;::::0;53250:65:::1;::::0;53275:7;::::1;::::0;:19:::1;::::0;:21:::1;::::0;;::::1;::::0;53225:14:::1;::::0;53275:21;;;;;;;;:7;:21;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53275:21:0;53298:7;;:4;;53303:1:::1;::::0;53298:7:::1;;;;;;;;;;53307:4;53312:1;53307:7;;;;;;;;;;;;;;53250:24;:65::i;:::-;53317:7;53325:1;53317:10;;;;;;;;;;;;;;53219:109;;;;;;;;;;;;;-1:-1:-1::0;;;;;53219:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53219:109:0;53212:117:::1;;;;53340:24;53346:7;53355:4;53361:2;53340:5;:24::i;:::-;52690:682:::0;;;;;;;;:::o;52036:645::-;52249:21;52222:8;32874:15;32862:8;:27;;32854:64;;;;;-1:-1:-1;;;32854:64:0;;;;;;;;;;;;-1:-1:-1;;;32854:64:0;;;;;;;;;;;;;;;52324:7:::1;::::0;:21:::1;::::0;;-1:-1:-1;;;52324:21:0;;;;52293:69:::1;::::0;-1:-1:-1;;;;;52324:7:0::1;::::0;:19:::1;::::0;:21:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:7;:21;::::1;;::::0;::::1;;;;::::0;::::1;52293:69;52283:79;;52412:12;52381:7;52406:1;52389:7;:14;:18;52381:27;;;;;;;;;;;;;;:43;;52373:99;;;;-1:-1:-1::0;;;52373:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52483:155;52529:4;52534:1;52529:7;;;;;;;;;;;;;;52538:10;52550:65;52575:7;;;;;;;;;-1:-1:-1::0;;;;;52575:7:0::1;-1:-1:-1::0;;;;;52575:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;52575:21:0;52598:7;;:4;;52603:1:::1;::::0;52598:7:::1;;;;;;;;;;52607:4;52612:1;52607:7;;;;;;;52550:65;52617:7;52625:1;52617:10;;;;;;;;;;;;;;52483:31;:155::i;27655:391::-:0;27748:13;27763;27790:14;27809:26;27820:6;27828;27809:10;:26::i;:::-;27789:46;;;27847:13;27862;27895:32;27903:7;27912:6;27920;27895:7;:32::i;:::-;-1:-1:-1;;;;;27880:60:0;;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27880:62:0;;;;;;;27846:96;;;;;-1:-1:-1;27846:96:0;;-1:-1:-1;;;;;;27976:16:0;;;;;;;:62;;28019:8;28029;27976:62;;;27996:8;28006;27976:62;27953:85;;;;-1:-1:-1;27655:391:0;-1:-1:-1;;;;;;;27655:391:0:o;28602:517::-;28695:14;28741:1;28730:8;:12;28722:68;;;;-1:-1:-1;;;28722:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28821:1;28809:9;:13;:31;;;;;28839:1;28826:10;:14;28809:31;28801:84;;;;-1:-1:-1;;;28801:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28896:20;28919:17;:8;28932:3;28919:12;:17::i;:::-;28896:40;-1:-1:-1;28947:14:0;28964:31;28896:40;28984:10;28964:19;:31::i;:::-;28947:48;-1:-1:-1;29006:16:0;29025:40;29049:15;29025:19;:9;29039:4;29025:13;:19::i;:40::-;29006:59;;29100:11;29088:9;:23;;;;;;;28602:517;-1:-1:-1;;;;;;;28602:517:0:o;43153:171::-;43200:8;43236:2;43225:8;;;;:13;43221:95;;;43260:1;43254:8;;43265:4;43254:15;43247:23;;43240:30;;;;43221:95;43306:1;43300:8;;43311:4;43300:15;43293:23;;43286:30;;;;27346:251;27435:12;27461:14;27477;27495:26;27506:6;27514;27495:10;:26::i;:::-;27460:61;;;;27557:7;-1:-1:-1;;;;;27539:34:0;;27574:6;27582;27539:50;;;;;;;;;;;;;-1:-1:-1;;;;;27539:50:0;;;;;;-1:-1:-1;;;;;27539:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27539:50:0;;27346:251;-1:-1:-1;;;;;;27346:251:0:o;51261:763::-;51368:6;51363:654;51394:1;51380:4;:11;:15;51376:1;:19;51363:654;;;51418:13;51433:14;51452:4;51457:1;51452:7;;;;;;;;;;;;;;51461:4;51466:1;51470;51466:5;51461:11;;;;;;;;;;;;;;51417:56;;;;51489:14;51508:42;51536:5;51543:6;51508:27;:42::i;:::-;51488:62;;;51565:14;51582:7;51590:1;51594;51590:5;51582:14;;;;;;;;;;;;;;51565:31;;51612:15;51629;51657:6;-1:-1:-1;;;;;51648:15:0;:5;-1:-1:-1;;;;;51648:15:0;;:61;;51690:9;51706:1;51648:61;;;51672:1;51676:9;51648:61;51611:98;;;;51724:10;51755:1;51741:4;:11;:15;51737:1;:19;:96;;51830:3;51737:96;;;51784:7;;:21;;;-1:-1:-1;;;51784:21:0;;;;51759:68;;-1:-1:-1;;;;;51784:7:0;;:19;;:21;;;;;;;;;;;;;;:7;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51784:21:0;51815:11;;51807:6;;51815:4;;51824:1;51820:5;;;51815:11;;;;;51759:68;51724:109;;51863:62;51888:7;;;;;;;;;-1:-1:-1;;;;;51888:7:0;-1:-1:-1;;;;;51888:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51888:21:0;51911:5;51918:6;51863:24;:62::i;:::-;-1:-1:-1;;;;;51848:83:0;;51950:10;51962;51974:2;51988:1;51978:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51978:12:0;;51848:157;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51848:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51397:3:0;;;;;-1:-1:-1;51363:654:0;;-1:-1:-1;;;;;;;;51363:654:0;;;51261:763;;;:::o;26936:349::-;27011:14;27027;27072:6;-1:-1:-1;;;;;27062:16:0;:6;-1:-1:-1;;;;;27062:16:0;;;27054:66;;;;-1:-1:-1;;;27054:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27159:6;-1:-1:-1;;;;;27150:15:0;:6;-1:-1:-1;;;;;27150:15:0;;:53;;27188:6;27196;27150:53;;;27169:6;27177;27150:53;27131:72;;-1:-1:-1;27131:72:0;-1:-1:-1;;;;;;27222:20:0;;27214:63;;;;;-1:-1:-1;;;27214:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://965296fd5b530b5f0eb5d7ee076e514dd906466c74ce059d935ac3fd2d3582b7
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.