ETH Price: $2,973.61 (+2.51%)
Gas: 1 Gwei

Token

IterationSyndicate (ITS)
 

Overview

Max Total Supply

100,000 ITS

Holders

644

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$245,533.41

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
icomeinp.eth
Balance
1 ITS

Value
$2.46 ( ~0.000827277617071877 Eth) [0.0010%]
0x0B5dD26f44D36141d97A3bF6841e7bA63C092AF9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Iteration’s native token ITS comes as an experimental concept coin that will later integrate with Renascent’s volume creation product.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IterationSyndicate

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-02
*/

/*
   SAV3  Fork
*/

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.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 {ERC20Mintable}.
 *
 * 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;
    constructor (uint256 totalSupply) public {
        _mint(_msgSender(),totalSupply);
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @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.
     *
     * 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;
    }
}

// File: @openzeppelin/contracts/access/roles/WhitelistAdminRole.sol

pragma solidity ^0.5.0;

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

// File: contracts/ERC20/ERC20TransferLiquidityLock.sol

pragma solidity ^0.5.17;

contract ERC20TransferLiquidityLock is ERC20 {
    using SafeMath for uint256;


    event Rebalance(uint256 tokenBurnt);
    event SupplyRenaSwap(uint256 tokenAmount);
    event RewardLiquidityProviders(uint256 liquidityRewards);
    
    address public uniswapV2Router;
    address public uniswapV2Pair;
    address public RenaSwap;
    address payable public treasury;
    address public bounce = 0x73282A63F0e3D7e9604575420F777361ecA3C86A;
    mapping(address => bool) feelessAddr;
    mapping(address => bool) unlocked;
    
    // the amount of tokens to lock for liquidity during every transfer, i.e. 100 = 1%, 50 = 2%, 40 = 2.5%
    uint256 public liquidityLockDivisor;
    uint256 public callerRewardDivisor;
    uint256 public rebalanceDivisor;
    
    uint256 public minRebalanceAmount;
    uint256 public lastRebalance;
    uint256 public rebalanceInterval;
    
    uint256 public lpUnlocked;
    bool public locked;
    
    Balancer balancer;
    
    constructor() public {
        lastRebalance = block.timestamp;
        liquidityLockDivisor = 100;
        callerRewardDivisor = 25;
        rebalanceDivisor = 50;
        rebalanceInterval = 1 hours;
        lpUnlocked = block.timestamp + 90 days;
        minRebalanceAmount = 100 ether;
        treasury = msg.sender;
        balancer = new Balancer(treasury);
        feelessAddr[address(this)] = true;
        feelessAddr[address(balancer)] = true;
        feelessAddr[bounce] = true;
        locked = true;
        unlocked[msg.sender] = true;
        unlocked[bounce] = true;
        unlocked[address(balancer)] = true;
    }
    
    //sav3 transfer function
    function _transfer(address from, address to, uint256 amount) internal {
        // calculate liquidity lock amount
        // dont transfer burn from this contract
        // or can never lock full lockable amount
        if(locked && unlocked[from] != true && unlocked[to] != true)
            revert("Locked until end of presale");
            
        if (liquidityLockDivisor != 0 && feelessAddr[from] == false && feelessAddr[to] == false) {
            uint256 liquidityLockAmount = amount.div(liquidityLockDivisor);
            super._transfer(from, address(this), liquidityLockAmount);
            super._transfer(from, to, amount.sub(liquidityLockAmount));
        }
        else {
            super._transfer(from, to, amount);
        }
    }

    // receive eth from uniswap swap
    function () external payable {}

    function rebalanceLiquidity() public {
        require(balanceOf(msg.sender) >= minRebalanceAmount, "You are not part of the syndicate.");
        require(block.timestamp > lastRebalance + rebalanceInterval, 'Too Soon.');
        lastRebalance = block.timestamp;
        // lockable supply is the token balance of this contract
        uint256 _lockableSupply = balanceOf(address(this));
        _rewardLiquidityProviders(_lockableSupply);
        
        uint256 amountToRemove = ERC20(uniswapV2Pair).balanceOf(address(this)).div(rebalanceDivisor);
        // needed in case contract already owns eth
        
        remLiquidity(amountToRemove);
        uint _locked = balancer.rebalance(callerRewardDivisor);

        emit Rebalance(_locked);
    }

    function _rewardLiquidityProviders(uint256 liquidityRewards) private {
        if(RenaSwap != address(0)) {
            super._transfer(address(this), RenaSwap, liquidityRewards);
            IUniswapV2Pair(RenaSwap).sync();
            emit SupplyRenaSwap(liquidityRewards);
        }
        else {
            super._transfer(address(this), uniswapV2Pair, liquidityRewards);
            IUniswapV2Pair(uniswapV2Pair).sync();
            emit RewardLiquidityProviders(liquidityRewards);
        }
    }

    function remLiquidity(uint256 lpAmount) private returns(uint ETHAmount) {
        ERC20(uniswapV2Pair).approve(uniswapV2Router, lpAmount);
        (ETHAmount) = IUniswapV2Router02(uniswapV2Router)
            .removeLiquidityETHSupportingFeeOnTransferTokens(
                address(this),
                lpAmount,
                0,
                0,
                address(balancer),
                block.timestamp
            );
    }

    // returns token amount
    function lockableSupply() external view returns (uint256) {
        return balanceOf(address(this));
    }

    // returns token amount
    function lockedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = lockedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _lockedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _lockedSupply;
    }

    // returns token amount
    function burnedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = burnedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _burnedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _burnedSupply;
    }

    // returns LP amount, not token amount
    function burnableLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(this));
    }

    // returns LP amount, not token amount
    function burnedLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(0));
    }

    // returns LP amount, not token amount
    function lockedLiquidity() public view returns (uint256) {
        return burnableLiquidity().add(burnedLiquidity());
    }
}

interface IUniswapV2Router02 {
    function WETH() external pure returns (address);
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
      uint amountOutMin,
      address[] calldata path,
      address to,
      uint deadline
    ) external payable;
    function removeLiquidityETH(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);    
}

interface IUniswapV2Pair {
    function sync() external;
}

// File: contracts/ERC20/ERC20Governance.sol

pragma solidity ^0.5.17;

contract ERC20Governance is ERC20, ERC20Detailed {
    using SafeMath for uint256;

    function _transfer(address from, address to, uint256 amount) internal {
        _moveDelegates(_delegates[from], _delegates[to], amount);
        super._transfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal {
        _moveDelegates(address(0), _delegates[account], amount);
        super._mint(account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        _moveDelegates(_delegates[account], address(0), amount);
        super._burn(account, amount);
    }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20Governance::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "ERC20Governance::delegateBySig: invalid nonce");
        require(now <= expiry, "ERC20Governance::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "ERC20Governance::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying ERC20Governances (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "ERC20Governance::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

pragma solidity ^0.5.17;

contract Balancer {
    using SafeMath for uint256;    
    IterationSyndicate token;
    address public burnAddr = 0x000000000000000000000000000000000000dEaD;
    address payable public treasury;
    
    constructor(address payable treasury_) public {
        token = IterationSyndicate(msg.sender);
        treasury = treasury_;
    }
    function () external payable {}
    function rebalance(uint callerRewardDivisor) external returns (uint256) { 
        require(msg.sender == address(token), "only token");
        swapEthForTokens(address(this).balance, callerRewardDivisor);
        uint256 lockableBalance = token.balanceOf(address(this));
        uint256 callerReward = lockableBalance.div(callerRewardDivisor);
        token.transfer(tx.origin, callerReward);
        token.transfer(burnAddr, lockableBalance.sub(callerReward));        
        return lockableBalance.sub(callerReward);
    }

    function swapEthForTokens(uint256 EthAmount, uint callerRewardDivisor) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = IUniswapV2Router02(token.uniswapV2Router()).WETH();
        uniswapPairPath[1] = address(token);
        uint256 treasuryAmount = EthAmount.div(callerRewardDivisor);
        treasury.transfer(treasuryAmount);
        
        token.approve(token.uniswapV2Router(), EthAmount);
        
        IUniswapV2Router02(token.uniswapV2Router())
            .swapExactETHForTokensSupportingFeeOnTransferTokens.value(EthAmount.sub(treasuryAmount))(
                0,
                uniswapPairPath,
                address(this),
                block.timestamp
            );
    }    
}

contract IterationSyndicate is 
    ERC20(100000 ether), 
    ERC20Detailed("IterationSyndicate", "ITS", 18), 
    ERC20Burnable, 
    // governance must be before transfer liquidity lock
    // or delegates are not updated correctly
    ERC20Governance,
    ERC20TransferLiquidityLock,
    WhitelistAdminRole 
{
    function setUniswapV2Router(address _uniswapV2Router) public onlyWhitelistAdmin {
        require(uniswapV2Router == address(0), "ITSToken::setUniswapV2Router: already set");
        uniswapV2Router = _uniswapV2Router;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) public onlyWhitelistAdmin {
        require(uniswapV2Pair == address(0), "ITSToken::setUniswapV2Pair: already set");
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setLiquidityLockDivisor(uint256 _liquidityLockDivisor) public onlyWhitelistAdmin {
        if (_liquidityLockDivisor != 0) {
            require(_liquidityLockDivisor >= 10, "ITSToken::setLiquidityLockDivisor: too small");
        }
        liquidityLockDivisor = _liquidityLockDivisor;
    }

    function setRebalanceDivisor(uint256 _rebalanceDivisor) public onlyWhitelistAdmin {
        if (_rebalanceDivisor != 0) {
            require(_rebalanceDivisor >= 10, "ITSToken::setRebalanceDivisor: too small");
        }        
        rebalanceDivisor = _rebalanceDivisor;
    }
    
    function setRenaSwap(address _rena) public onlyWhitelistAdmin {
        RenaSwap = _rena;
    }
    
    function setRebalanceInterval(uint256 _interval) public onlyWhitelistAdmin {
        rebalanceInterval = _interval;
    }
    
    function setCallerRewardDivisior(uint256 _rewardDivisor) public onlyWhitelistAdmin {
        if (_rewardDivisor != 0) {
            require(_rewardDivisor >= 10, "ITSToken::setCallerRewardDivisor: too small");
        }        
        callerRewardDivisor = _rewardDivisor;
    }
    
    function unlockLP() public onlyWhitelistAdmin {
        require(now > lpUnlocked, "Not unlocked yet");
        uint256 amount = IERC20(uniswapV2Pair).balanceOf(address(this));
        IERC20(uniswapV2Pair).transfer(msg.sender, amount);
    }
    
    function toggleFeeless(address _addr) public onlyWhitelistAdmin {
        feelessAddr[_addr] = !feelessAddr[_addr];
    }
    function toggleUnlockable(address _addr) public onlyWhitelistAdmin {
        unlocked[_addr] = !unlocked[_addr];
    }    
    function unlock() public onlyWhitelistAdmin {
        locked = false;
    }    

    function setMinRebalanceAmount(uint256 amount_) public onlyWhitelistAdmin {
        minRebalanceAmount = amount_;
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenBurnt","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityRewards","type":"uint256"}],"name":"RewardLiquidityProviders","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"SupplyRenaSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RenaSwap","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bounce","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burnableLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"callerRewardDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastRebalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityLockDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lpUnlocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minRebalanceAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rebalanceDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rebalanceInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"rebalanceLiquidity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_rewardDivisor","type":"uint256"}],"name":"setCallerRewardDivisior","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_liquidityLockDivisor","type":"uint256"}],"name":"setLiquidityLockDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"setMinRebalanceAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_rebalanceDivisor","type":"uint256"}],"name":"setRebalanceDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_interval","type":"uint256"}],"name":"setRebalanceInterval","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rena","type":"address"}],"name":"setRenaSwap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"toggleFeeless","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"toggleUnlockable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unlockLP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

600e80546001600160a01b0319167373282a63f0e3d7e9604575420f777361eca3c86a1790556012608081815271497465726174696f6e53796e64696361746560701b60a052610100604052600360c09081526249545360e81b60e052909169152d02c7e14af680000062000090620000806001600160e01b036200023316565b826001600160e01b036200023816565b508251620000a69060039060208601906200096c565b508151620000bc9060049060208501906200096c565b506005805460ff90921660ff199092169190911790555050426015819055606460115560196012556032601355610e106016556276a7000160175568056bc75e2d63100000601455600d80546001600160a01b0319163317908190556040516001600160a01b0391909116906200013390620009f1565b6001600160a01b03909116815260405190819003602001906000f08015801562000161573d6000803e3d6000fd5b5060188054610100600160a81b0319166101006001600160a01b039384168102919091178255306000908152600f60209081526040808320805460ff1990811660019081179092558654869004881685528285208054821683179055600e8054891686528386208054831684179055875482168317885533865260109094528285208054821683179055925487168452818420805484168217905594549390930490941681522080549092161790556200022d6200021e62000233565b6001600160e01b036200028316565b62000a1c565b335b90565b6001600160a01b03808316600090815260066020526040812054620002689216836001600160e01b03620002d516565b6200027f82826200045960201b620031811760201c565b5050565b6200029e8160196200055a60201b62002dca1790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b816001600160a01b0316836001600160a01b031614158015620002f85750600081115b1562000454576001600160a01b03831615620003a9576001600160a01b03831660009081526008602052604081205463ffffffff1690816200033c5760006200036e565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006200038c8483620005e760201b62002a771790919060201c565b9050620003a5868484846001600160e01b036200063816565b5050505b6001600160a01b0382161562000454576001600160a01b03821660009081526008602052604081205463ffffffff169081620003e757600062000419565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000620004378483620007ac60201b6200247c1790919060201c565b905062000450858484846001600160e01b036200063816565b5050505b505050565b6001600160a01b038216620004b5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004d181600254620007ac60201b6200247c1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005049183906200247c620007ac821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200056f82826001600160e01b036200080716565b15620005c2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006200063183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200087060201b60201c565b9392505050565b600062000668436040518060600160405280603f815260200162004a65603f91396001600160e01b036200090b16565b905060008463ffffffff16118015620006b257506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15620006f1576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905562000762565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008282018381101562000631576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006001600160a01b038216620008505760405162461bcd60e51b815260040180806020018281038252602281526020018062004aa46022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60008184841115620009035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620008c7578181015183820152602001620008ad565b50505050905090810190601f168015620008f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000816401000000008410620009645760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620008c7578181015183820152602001620008ad565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009af57805160ff1916838001178555620009df565b82800160010185558215620009df579182015b82811115620009df578251825591602001919060010190620009c2565b50620009ed929150620009ff565b5090565b610919806200414c83390190565b6200023591905b80821115620009ed576000815560010162000a06565b6137208062000a2c6000396000f3fe6080604052600436106103805760003560e01c80637e0d943e116101d1578063baaa906411610102578063dd62ed3e116100a0578063e84354c51161006f578063e84354c514610c27578063f1127ed814610c3c578063f953797314610c9b578063ffafa0a414610cce57610380565b8063dd62ed3e14610bad578063e161eb5614610be8578063e5ec1d8c14610bfd578063e7a324dc14610c1257610380565b8063ca5c7b91116100dc578063ca5c7b9114610b59578063cafab28914610b6e578063cf30901214610b83578063dc654a7314610b9857610380565b8063baaa906414610a9f578063bb5f747b14610ad2578063c3cda52014610b0557610380565b8063a69df4b51161016f578063b439824411610149578063b439824414610a18578063b4b5ea5714610a2d578063b6833c5914610a60578063b91f3f9714610a8a57610380565b8063a69df4b5146109b5578063a8a5550e146109ca578063a9059cbb146109df57610380565b8063858750ab116101ab578063858750ab1461091f57806395d89b4114610934578063a29a608914610949578063a457c2d71461097c57610380565b80637e0d943e146108ad5780637ecebe00146108d75780637f4aeb1a1461090a57610380565b806342966c68116102b657806361d027b31161025457806370a082311161022357806370a08231146107d55780637362d9c814610808578063782d6fe11461083b57806379cc67901461087457610380565b806361d027b31461071757806367a9fca61461072c5780636fcfff451461075657806370709a7c146107a257610380565b806355d0a1d01161029057806355d0a1d014610672578063587cde1e146106875780635b7dcaed146106ba5780635c19a95c146106e457610380565b806342966c681461061e57806349bd5a5e146106485780634c5a628c1461065d57610380565b806316d1d9161161032357806323b872dd116102fd57806323b872dd146105625780632898cafa146105a5578063313ce567146105ba57806339509351146105e557610380565b806316d1d9161461052357806318160ddd1461053857806320606b701461054d57610380565b8063095ea7b31161035f578063095ea7b31461045d578063106b9ca1146104aa5780631419841d146104bf5780631694505e146104f257610380565b80629a81301461038257806302dd19d9146103ac57806306fdde03146103d3575b005b34801561038e57600080fd5b50610380600480360360208110156103a557600080fd5b5035610ce3565b3480156103b857600080fd5b506103c1610d79565b60408051918252519081900360200190f35b3480156103df57600080fd5b506103e8610d7f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104966004803603604081101561048057600080fd5b506001600160a01b038135169060200135610e15565b604080519115158252519081900360200190f35b3480156104b657600080fd5b506103c1610e33565b3480156104cb57600080fd5b50610380600480360360208110156104e257600080fd5b50356001600160a01b0316610e39565b3480156104fe57600080fd5b50610507610ee9565b604080516001600160a01b039092168252519081900360200190f35b34801561052f57600080fd5b506103c1610ef8565b34801561054457600080fd5b506103c1610efe565b34801561055957600080fd5b506103c1610f04565b34801561056e57600080fd5b506104966004803603606081101561058557600080fd5b506001600160a01b03813581169160208101359091169060400135610f1f565b3480156105b157600080fd5b506103c1610fac565b3480156105c657600080fd5b506105cf61102b565b6040805160ff9092168252519081900360200190f35b3480156105f157600080fd5b506104966004803603604081101561060857600080fd5b506001600160a01b038135169060200135611034565b34801561062a57600080fd5b506103806004803603602081101561064157600080fd5b5035611088565b34801561065457600080fd5b5061050761109c565b34801561066957600080fd5b506103806110ab565b34801561067e57600080fd5b506103c16110bd565b34801561069357600080fd5b50610507600480360360208110156106aa57600080fd5b50356001600160a01b03166111b1565b3480156106c657600080fd5b50610380600480360360208110156106dd57600080fd5b50356111cf565b3480156106f057600080fd5b506103806004803603602081101561070757600080fd5b50356001600160a01b031661121a565b34801561072357600080fd5b50610507611224565b34801561073857600080fd5b506103806004803603602081101561074f57600080fd5b5035611233565b34801561076257600080fd5b506107896004803603602081101561077957600080fd5b50356001600160a01b03166112c4565b6040805163ffffffff9092168252519081900360200190f35b3480156107ae57600080fd5b50610380600480360360208110156107c557600080fd5b50356001600160a01b03166112dc565b3480156107e157600080fd5b506103c1600480360360208110156107f857600080fd5b50356001600160a01b031661134b565b34801561081457600080fd5b506103806004803603602081101561082b57600080fd5b50356001600160a01b0316611366565b34801561084757600080fd5b506103c16004803603604081101561085e57600080fd5b506001600160a01b0381351690602001356113b5565b34801561088057600080fd5b506103806004803603604081101561089757600080fd5b506001600160a01b0381351690602001356115bd565b3480156108b957600080fd5b50610380600480360360208110156108d057600080fd5b50356115cb565b3480156108e357600080fd5b506103c1600480360360208110156108fa57600080fd5b50356001600160a01b031661165c565b34801561091657600080fd5b5061038061166e565b34801561092b57600080fd5b506103c161186f565b34801561094057600080fd5b506103e86118ba565b34801561095557600080fd5b506103806004803603602081101561096c57600080fd5b50356001600160a01b031661191b565b34801561098857600080fd5b506104966004803603604081101561099f57600080fd5b506001600160a01b0381351690602001356119cb565b3480156109c157600080fd5b50610380611a39565b3480156109d657600080fd5b506103c1611a8b565b3480156109eb57600080fd5b5061049660048036036040811015610a0257600080fd5b506001600160a01b038135169060200135611a9b565b348015610a2457600080fd5b506103c1611aaf565b348015610a3957600080fd5b506103c160048036036020811015610a5057600080fd5b50356001600160a01b0316611ad0565b348015610a6c57600080fd5b5061038060048036036020811015610a8357600080fd5b5035611b34565b348015610a9657600080fd5b50610380611b7f565b348015610aab57600080fd5b5061038060048036036020811015610ac257600080fd5b50356001600160a01b0316611d0b565b348015610ade57600080fd5b5061049660048036036020811015610af557600080fd5b50356001600160a01b0316611d73565b348015610b1157600080fd5b50610380600480360360c0811015610b2857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611d86565b348015610b6557600080fd5b506103c1611ffc565b348015610b7a57600080fd5b506103c1612085565b348015610b8f57600080fd5b5061049661208b565b348015610ba457600080fd5b506103c1612094565b348015610bb957600080fd5b506103c160048036036040811015610bd057600080fd5b506001600160a01b038135811691602001351661209a565b348015610bf457600080fd5b506103c16120c5565b348015610c0957600080fd5b506105076120cb565b348015610c1e57600080fd5b506103c16120da565b348015610c3357600080fd5b506103c16120f5565b348015610c4857600080fd5b50610c7b60048036036040811015610c5f57600080fd5b5080356001600160a01b0316906020013563ffffffff166120fb565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610ca757600080fd5b5061038060048036036020811015610cbe57600080fd5b50356001600160a01b0316612128565b348015610cda57600080fd5b50610507612197565b610cf3610cee6121a6565b611d73565b610d2e5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b8015610d7457600a811015610d745760405162461bcd60e51b815260040180806020018281038252602b81526020018061330a602b913960400191505060405180910390fd5b601255565b60125481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b5050505050905090565b6000610e29610e226121a6565b84846121aa565b5060015b92915050565b60155481565b610e44610cee6121a6565b610e7f5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600a546001600160a01b031615610ec75760405162461bcd60e51b815260040180806020018281038252602981526020018061335b6029913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b60165481565b60025490565b60405180604361340c82396043019050604051809103902081565b6000610f2c848484612296565b610fa284610f386121a6565b610f9d85604051806060016040528060288152602001613497602891396001600160a01b038a16600090815260016020526040812090610f766121a6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6123e516565b6121aa565b5060019392505050565b600b54604080516370a0823160e01b8152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b158015610ffa57600080fd5b505afa15801561100e573d6000803e3d6000fd5b505050506040513d602081101561102457600080fd5b5051905090565b60055460ff1690565b6000610e296110416121a6565b84610f9d85600160006110526121a6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61247c16565b6110996110936121a6565b826124d6565b50565b600b546001600160a01b031681565b6110bb6110b66121a6565b612506565b565b600080600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561110e57600080fd5b505afa158015611122573d6000803e3d6000fd5b505050506040513d602081101561113857600080fd5b505190506000611146610fac565b9050600061116f836111638464e8d4a5100063ffffffff61254e16565b9063ffffffff6125a716565b600b5490915060009061118a906001600160a01b031661134b565b905060006111a764e8d4a51000611163848663ffffffff61254e16565b9550505050505090565b6001600160a01b039081166000908152600660205260409020541690565b6111da610cee6121a6565b6112155760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b601655565b61109933826125e9565b600d546001600160a01b031681565b61123e610cee6121a6565b6112795760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b80156112bf57600a8110156112bf5760405162461bcd60e51b815260040180806020018281038252602c8152602001806136c0602c913960400191505060405180910390fd5b601155565b60086020526000908152604090205463ffffffff1681565b6112e7610cee6121a6565b6113225760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b6001600160a01b031660009081526020819052604090205490565b611371610cee6121a6565b6113ac5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6110998161267e565b60004382106113f55760405162461bcd60e51b81526004018080602001828103825260328152602001806135de6032913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff1680611423576000915050610e2d565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310611492576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff16835292905220600101549050610e2d565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156114cd576000915050610e2d565b600060001982015b8163ffffffff168163ffffffff16111561158657600282820363ffffffff160481036114ff61316a565b506001600160a01b038716600090815260076020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561156157602001519450610e2d9350505050565b805163ffffffff168711156115785781935061157f565b6001820392505b50506114d5565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6115c782826126c6565b5050565b6115d6610cee6121a6565b6116115760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b801561165757600a8110156116575760405162461bcd60e51b81526004018080602001828103825260288152602001806133846028913960400191505060405180910390fd5b601355565b60096020526000908152604090205481565b60145461167a3361134b565b10156116b75760405162461bcd60e51b81526004018080602001828103825260228152602001806135456022913960400191505060405180910390fd5b6016546015540142116116fd576040805162461bcd60e51b81526020600482015260096024820152682a37b79029b7b7b71760b91b604482015290519081900360640190fd5b42601555600061170c3061134b565b90506117178161271a565b601354600b54604080516370a0823160e01b815230600482015290516000936117a69390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561176e57600080fd5b505afa158015611782573d6000803e3d6000fd5b505050506040513d602081101561179857600080fd5b50519063ffffffff6125a716565b90506117b18161289b565b5060185460125460408051631e93260360e31b815260048101929092525160009261010090046001600160a01b03169163f499301891602480830192602092919082900301818787803b15801561180757600080fd5b505af115801561181b573d6000803e3d6000fd5b505050506040513d602081101561183157600080fd5b50516040805182815290519192507f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd0919081900360200190a1505050565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610ffa57600080fd5b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e0b5780601f10610de057610100808354040283529160200191610e0b565b611926610cee6121a6565b6119615760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600b546001600160a01b0316156119a95760405162461bcd60e51b815260040180806020018281038252602781526020018061344f6027913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e296119d86121a6565b84610f9d8560405180606001604052806025815260200161369b6025913960016000611a026121a6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6123e516565b611a44610cee6121a6565b611a7f5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6018805460ff19169055565b6000611a963061134b565b905090565b6000610e29611aa86121a6565b8484612296565b6000611a96611abc610fac565b611ac461186f565b9063ffffffff61247c16565b6001600160a01b03811660009081526008602052604081205463ffffffff1680611afb576000611b2d565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b611b3f610cee6121a6565b611b7a5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b601455565b611b8a610cee6121a6565b611bc55760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6017544211611c0e576040805162461bcd60e51b815260206004820152601060248201526f139bdd081d5b9b1bd8dad959081e595d60821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c5957600080fd5b505afa158015611c6d573d6000803e3d6000fd5b505050506040513d6020811015611c8357600080fd5b5051600b546040805163a9059cbb60e01b81523360048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b158015611cdc57600080fd5b505af1158015611cf0573d6000803e3d6000fd5b505050506040513d6020811015611d0657600080fd5b505050565b611d16610cee6121a6565b611d515760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e2d60198363ffffffff6129cf16565b6000604051808061340c6043913960430190506040518091039020611da9610d7f565b80519060200120611db8612a36565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080613661603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015611ef6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f485760405162461bcd60e51b81526004018080602001828103825260318152602001806132b76031913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090208054600181019091558914611fa65760405162461bcd60e51b815260040180806020018281038252602d815260200180613634602d913960400191505060405180910390fd5b87421115611fe55760405162461bcd60e51b81526004018080602001828103825260318152602001806135676031913960400191505060405180910390fd5b611fef818b6125e9565b505050505b505050505050565b600080600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561204d57600080fd5b505afa158015612061573d6000803e3d6000fd5b505050506040513d602081101561207757600080fd5b505190506000611146611aaf565b60175481565b60185460ff1681565b60115481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60135481565b600e546001600160a01b031681565b60405180603a6136618239603a019050604051809103902081565b60145481565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b612133610cee6121a6565b61216e5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6001600160a01b03166000908152601060205260409020805460ff19811660ff90911615179055565b600c546001600160a01b031681565b3390565b6001600160a01b0383166121ef5760405162461bcd60e51b81526004018080602001828103825260248152602001806136106024913960400191505060405180910390fd5b6001600160a01b0382166122345760405162461bcd60e51b81526004018080602001828103825260228152602001806132e86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60185460ff1680156122c657506001600160a01b03831660009081526010602052604090205460ff161515600114155b80156122f057506001600160a01b03821660009081526010602052604090205460ff161515600114155b15612342576040805162461bcd60e51b815260206004820152601b60248201527f4c6f636b656420756e74696c20656e64206f662070726573616c650000000000604482015290519081900360640190fd5b6011541580159061236c57506001600160a01b0383166000908152600f602052604090205460ff16155b801561239157506001600160a01b0382166000908152600f602052604090205460ff16155b156123da5760006123ad601154836125a790919063ffffffff16565b90506123ba843083612a3a565b6123d484846123cf858563ffffffff612a7716565b612a3a565b50611d06565b611d06838383612a3a565b600081848411156124745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612439578181015183820152602001612421565b50505050905090810190601f1680156124665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611b2d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038083166000908152600660205260408120546124fc92169083612ab9565b6115c78282612c02565b61251760198263ffffffff612cfe16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60008261255d57506000610e2d565b8282028284828161256a57fe5b0414611b2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806134766021913960400191505060405180910390fd5b6000611b2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d65565b6001600160a01b03808316600090815260066020526040812054909116906126108461134b565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612678828483612ab9565b50505050565b61268f60198263ffffffff612dca16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6126d082826124d6565b6115c7826126dc6121a6565b610f9d84604051806060016040528060248152602001613521602491396001600160a01b038816600090815260016020526040812090610f766121a6565b600c546001600160a01b0316156127e457600c546127439030906001600160a01b031683612a3a565b600c60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561279357600080fd5b505af11580156127a7573d6000803e3d6000fd5b50506040805184815290517fcf550a3d0a19e4909b27127ccd7acb5f883a8c5490d06e7d62491736b30eceb19350908190036020019150a1611099565b600b546127fc9030906001600160a01b031683612a3a565b600b60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561284c57600080fd5b505af1158015612860573d6000803e3d6000fd5b50506040805184815290517f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d490549350908190036020019150a150565b600b54600a546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156128f757600080fd5b505af115801561290b573d6000803e3d6000fd5b505050506040513d602081101561292157600080fd5b5050600a546018546040805163af2979eb60e01b815230600482015260248101869052600060448201819052606482018190526001600160a01b03610100909404841660848301524260a48301529151929093169263af2979eb9260c48083019360209383900390910190829087803b15801561299d57600080fd5b505af11580156129b1573d6000803e3d6000fd5b505050506040513d60208110156129c757600080fd5b505192915050565b60006001600160a01b038216612a165760405162461bcd60e51b81526004018080602001828103825260228152602001806134bf6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6001600160a01b03808416600090815260066020526040808220548584168352912054612a6c92918216911683612ab9565b611d06838383612e4b565b6000611b2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123e5565b816001600160a01b0316836001600160a01b031614158015612adb5750600081115b15611d06576001600160a01b03831615612b73576001600160a01b03831660009081526008602052604081205463ffffffff169081612b1b576000612b4d565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000612b61828563ffffffff612a7716565b9050612b6f86848484612fa7565b5050505b6001600160a01b03821615611d06576001600160a01b03821660009081526008602052604081205463ffffffff169081612bae576000612be0565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000612bf4828563ffffffff61247c16565b9050611ff485848484612fa7565b6001600160a01b038216612c475760405162461bcd60e51b81526004018080602001828103825260218152602001806135986021913960400191505060405180910390fd5b612c8a81604051806060016040528060228152602001613295602291396001600160a01b038516600090815260208190526040902054919063ffffffff6123e516565b6001600160a01b038316600090815260208190526040902055600254612cb6908263ffffffff612a7716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b612d0882826129cf565b612d435760405162461bcd60e51b81526004018080602001828103825260218152602001806133ac6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008183612db45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612439578181015183820152602001612421565b506000838581612dc057fe5b0495945050505050565b612dd482826129cf565b15612e26576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038316612e905760405162461bcd60e51b81526004018080602001828103825260258152602001806135b96025913960400191505060405180910390fd5b6001600160a01b038216612ed55760405162461bcd60e51b81526004018080602001828103825260238152602001806132726023913960400191505060405180910390fd5b612f1881604051806060016040528060268152602001613335602691396001600160a01b038616600090815260208190526040902054919063ffffffff6123e516565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f4d908263ffffffff61247c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612fcb436040518060600160405280603f81526020016133cd603f913961310c565b905060008463ffffffff1611801561301457506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613051576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556130c2565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106131625760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612439578181015183820152602001612421565b509192915050565b604080518082019091526000808252602082015290565b6001600160a01b0382166131dc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546131ef908263ffffffff61247c16565b6002556001600160a01b03821660009081526020819052604090205461321b908263ffffffff61247c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f2061646472657373495453546f6b656e3a3a73657443616c6c657252657761726444697669736f723a20746f6f20736d616c6c45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365495453546f6b656e3a3a736574556e69737761705632526f757465723a20616c726561647920736574495453546f6b656e3a3a736574526562616c616e636544697669736f723a20746f6f20736d616c6c526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429495453546f6b656e3a3a736574556e69737761705632506169723a20616c726561647920736574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365596f7520617265206e6f742070617274206f66207468652073796e6469636174652e4552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f495453546f6b656e3a3a7365744c69717569646974794c6f636b44697669736f723a20746f6f20736d616c6ca265627a7a7231582097e76221b2f69024e2415dc7d20fcab15b78c8c55c560269663fbbda5a7d760864736f6c634300051100326080604052600180546001600160a01b03191661dead17905534801561002457600080fd5b506040516109193803806109198339818101604052602081101561004757600080fd5b5051600080546001600160a01b03199081163317909155600280546001600160a01b0390931692909116919091179055610893806100866000396000f3fe6080604052600436106100345760003560e01c806361d027b314610036578063d246d41114610067578063f49930181461007c575b005b34801561004257600080fd5b5061004b6100b8565b604080516001600160a01b039092168252519081900360200190f35b34801561007357600080fd5b5061004b6100c7565b34801561008857600080fd5b506100a66004803603602081101561009f57600080fd5b50356100d6565b60408051918252519081900360200190f35b6002546001600160a01b031681565b6001546001600160a01b031681565b600080546001600160a01b03163314610123576040805162461bcd60e51b815260206004820152600a60248201526937b7363c903a37b5b2b760b11b604482015290519081900360640190fd5b61012d47836102fb565b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561017957600080fd5b505afa15801561018d573d6000803e3d6000fd5b505050506040513d60208110156101a357600080fd5b5051905060006101b9828563ffffffff6106d716565b600080546040805163a9059cbb60e01b81523260048201526024810185905290519394506001600160a01b039091169263a9059cbb92604480840193602093929083900390910190829087803b15801561021257600080fd5b505af1158015610226573d6000803e3d6000fd5b505050506040513d602081101561023c57600080fd5b50506000546001546001600160a01b039182169163a9059cbb9116610267858563ffffffff61072016565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156102b657600080fd5b505af11580156102ca573d6000803e3d6000fd5b505050506040513d60208110156102e057600080fd5b506102f39050828263ffffffff61072016565b949350505050565b6040805160028082526060808301845292602083019080388339505060005460408051630b4a282f60e11b815290519394506001600160a01b0390911692631694505e92506004808301926020929190829003018186803b15801561035f57600080fd5b505afa158015610373573d6000803e3d6000fd5b505050506040513d602081101561038957600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163ad5c464891600480820192602092909190829003018186803b1580156103cd57600080fd5b505afa1580156103e1573d6000803e3d6000fd5b505050506040513d60208110156103f757600080fd5b50518151829060009061040657fe5b6001600160a01b03928316602091820292909201015260005482519116908290600190811061043157fe5b6001600160a01b0390921660209283029190910190910152600061045b848463ffffffff6106d716565b6002546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610496573d6000803e3d6000fd5b5060005460408051630b4a282f60e11b815290516001600160a01b039092169163095ea7b3918391631694505e91600480820192602092909190829003018186803b1580156104e457600080fd5b505afa1580156104f8573d6000803e3d6000fd5b505050506040513d602081101561050e57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482018890525160448083019260209291908290030181600087803b15801561055e57600080fd5b505af1158015610572573d6000803e3d6000fd5b505050506040513d602081101561058857600080fd5b505060005460408051630b4a282f60e11b815290516001600160a01b0390921691631694505e91600480820192602092909190829003018186803b1580156105cf57600080fd5b505afa1580156105e3573d6000803e3d6000fd5b505050506040513d60208110156105f957600080fd5b50516001600160a01b031663b6f9de95610619868463ffffffff61072016565b60008530426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015610691578181015183820152602001610679565b50505050905001955050505050506000604051808303818588803b1580156106b857600080fd5b505af11580156106cc573d6000803e3d6000fd5b505050505050505050565b600061071983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610762565b9392505050565b600061071983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610804565b600081836107ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156107b357818101518382015260200161079b565b50505050905090810190601f1680156107e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816107fa57fe5b0495945050505050565b600081848411156108565760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156107b357818101518382015260200161079b565b50505090039056fea265627a7a72315820f27748cb43ee74c3262f4e32d4fcd53ea22b779e360a974872f04a642ff9fb1464736f6c634300051100324552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x6080604052600436106103805760003560e01c80637e0d943e116101d1578063baaa906411610102578063dd62ed3e116100a0578063e84354c51161006f578063e84354c514610c27578063f1127ed814610c3c578063f953797314610c9b578063ffafa0a414610cce57610380565b8063dd62ed3e14610bad578063e161eb5614610be8578063e5ec1d8c14610bfd578063e7a324dc14610c1257610380565b8063ca5c7b91116100dc578063ca5c7b9114610b59578063cafab28914610b6e578063cf30901214610b83578063dc654a7314610b9857610380565b8063baaa906414610a9f578063bb5f747b14610ad2578063c3cda52014610b0557610380565b8063a69df4b51161016f578063b439824411610149578063b439824414610a18578063b4b5ea5714610a2d578063b6833c5914610a60578063b91f3f9714610a8a57610380565b8063a69df4b5146109b5578063a8a5550e146109ca578063a9059cbb146109df57610380565b8063858750ab116101ab578063858750ab1461091f57806395d89b4114610934578063a29a608914610949578063a457c2d71461097c57610380565b80637e0d943e146108ad5780637ecebe00146108d75780637f4aeb1a1461090a57610380565b806342966c68116102b657806361d027b31161025457806370a082311161022357806370a08231146107d55780637362d9c814610808578063782d6fe11461083b57806379cc67901461087457610380565b806361d027b31461071757806367a9fca61461072c5780636fcfff451461075657806370709a7c146107a257610380565b806355d0a1d01161029057806355d0a1d014610672578063587cde1e146106875780635b7dcaed146106ba5780635c19a95c146106e457610380565b806342966c681461061e57806349bd5a5e146106485780634c5a628c1461065d57610380565b806316d1d9161161032357806323b872dd116102fd57806323b872dd146105625780632898cafa146105a5578063313ce567146105ba57806339509351146105e557610380565b806316d1d9161461052357806318160ddd1461053857806320606b701461054d57610380565b8063095ea7b31161035f578063095ea7b31461045d578063106b9ca1146104aa5780631419841d146104bf5780631694505e146104f257610380565b80629a81301461038257806302dd19d9146103ac57806306fdde03146103d3575b005b34801561038e57600080fd5b50610380600480360360208110156103a557600080fd5b5035610ce3565b3480156103b857600080fd5b506103c1610d79565b60408051918252519081900360200190f35b3480156103df57600080fd5b506103e8610d7f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104966004803603604081101561048057600080fd5b506001600160a01b038135169060200135610e15565b604080519115158252519081900360200190f35b3480156104b657600080fd5b506103c1610e33565b3480156104cb57600080fd5b50610380600480360360208110156104e257600080fd5b50356001600160a01b0316610e39565b3480156104fe57600080fd5b50610507610ee9565b604080516001600160a01b039092168252519081900360200190f35b34801561052f57600080fd5b506103c1610ef8565b34801561054457600080fd5b506103c1610efe565b34801561055957600080fd5b506103c1610f04565b34801561056e57600080fd5b506104966004803603606081101561058557600080fd5b506001600160a01b03813581169160208101359091169060400135610f1f565b3480156105b157600080fd5b506103c1610fac565b3480156105c657600080fd5b506105cf61102b565b6040805160ff9092168252519081900360200190f35b3480156105f157600080fd5b506104966004803603604081101561060857600080fd5b506001600160a01b038135169060200135611034565b34801561062a57600080fd5b506103806004803603602081101561064157600080fd5b5035611088565b34801561065457600080fd5b5061050761109c565b34801561066957600080fd5b506103806110ab565b34801561067e57600080fd5b506103c16110bd565b34801561069357600080fd5b50610507600480360360208110156106aa57600080fd5b50356001600160a01b03166111b1565b3480156106c657600080fd5b50610380600480360360208110156106dd57600080fd5b50356111cf565b3480156106f057600080fd5b506103806004803603602081101561070757600080fd5b50356001600160a01b031661121a565b34801561072357600080fd5b50610507611224565b34801561073857600080fd5b506103806004803603602081101561074f57600080fd5b5035611233565b34801561076257600080fd5b506107896004803603602081101561077957600080fd5b50356001600160a01b03166112c4565b6040805163ffffffff9092168252519081900360200190f35b3480156107ae57600080fd5b50610380600480360360208110156107c557600080fd5b50356001600160a01b03166112dc565b3480156107e157600080fd5b506103c1600480360360208110156107f857600080fd5b50356001600160a01b031661134b565b34801561081457600080fd5b506103806004803603602081101561082b57600080fd5b50356001600160a01b0316611366565b34801561084757600080fd5b506103c16004803603604081101561085e57600080fd5b506001600160a01b0381351690602001356113b5565b34801561088057600080fd5b506103806004803603604081101561089757600080fd5b506001600160a01b0381351690602001356115bd565b3480156108b957600080fd5b50610380600480360360208110156108d057600080fd5b50356115cb565b3480156108e357600080fd5b506103c1600480360360208110156108fa57600080fd5b50356001600160a01b031661165c565b34801561091657600080fd5b5061038061166e565b34801561092b57600080fd5b506103c161186f565b34801561094057600080fd5b506103e86118ba565b34801561095557600080fd5b506103806004803603602081101561096c57600080fd5b50356001600160a01b031661191b565b34801561098857600080fd5b506104966004803603604081101561099f57600080fd5b506001600160a01b0381351690602001356119cb565b3480156109c157600080fd5b50610380611a39565b3480156109d657600080fd5b506103c1611a8b565b3480156109eb57600080fd5b5061049660048036036040811015610a0257600080fd5b506001600160a01b038135169060200135611a9b565b348015610a2457600080fd5b506103c1611aaf565b348015610a3957600080fd5b506103c160048036036020811015610a5057600080fd5b50356001600160a01b0316611ad0565b348015610a6c57600080fd5b5061038060048036036020811015610a8357600080fd5b5035611b34565b348015610a9657600080fd5b50610380611b7f565b348015610aab57600080fd5b5061038060048036036020811015610ac257600080fd5b50356001600160a01b0316611d0b565b348015610ade57600080fd5b5061049660048036036020811015610af557600080fd5b50356001600160a01b0316611d73565b348015610b1157600080fd5b50610380600480360360c0811015610b2857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611d86565b348015610b6557600080fd5b506103c1611ffc565b348015610b7a57600080fd5b506103c1612085565b348015610b8f57600080fd5b5061049661208b565b348015610ba457600080fd5b506103c1612094565b348015610bb957600080fd5b506103c160048036036040811015610bd057600080fd5b506001600160a01b038135811691602001351661209a565b348015610bf457600080fd5b506103c16120c5565b348015610c0957600080fd5b506105076120cb565b348015610c1e57600080fd5b506103c16120da565b348015610c3357600080fd5b506103c16120f5565b348015610c4857600080fd5b50610c7b60048036036040811015610c5f57600080fd5b5080356001600160a01b0316906020013563ffffffff166120fb565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610ca757600080fd5b5061038060048036036020811015610cbe57600080fd5b50356001600160a01b0316612128565b348015610cda57600080fd5b50610507612197565b610cf3610cee6121a6565b611d73565b610d2e5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b8015610d7457600a811015610d745760405162461bcd60e51b815260040180806020018281038252602b81526020018061330a602b913960400191505060405180910390fd5b601255565b60125481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b5050505050905090565b6000610e29610e226121a6565b84846121aa565b5060015b92915050565b60155481565b610e44610cee6121a6565b610e7f5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600a546001600160a01b031615610ec75760405162461bcd60e51b815260040180806020018281038252602981526020018061335b6029913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b60165481565b60025490565b60405180604361340c82396043019050604051809103902081565b6000610f2c848484612296565b610fa284610f386121a6565b610f9d85604051806060016040528060288152602001613497602891396001600160a01b038a16600090815260016020526040812090610f766121a6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6123e516565b6121aa565b5060019392505050565b600b54604080516370a0823160e01b8152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b158015610ffa57600080fd5b505afa15801561100e573d6000803e3d6000fd5b505050506040513d602081101561102457600080fd5b5051905090565b60055460ff1690565b6000610e296110416121a6565b84610f9d85600160006110526121a6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61247c16565b6110996110936121a6565b826124d6565b50565b600b546001600160a01b031681565b6110bb6110b66121a6565b612506565b565b600080600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561110e57600080fd5b505afa158015611122573d6000803e3d6000fd5b505050506040513d602081101561113857600080fd5b505190506000611146610fac565b9050600061116f836111638464e8d4a5100063ffffffff61254e16565b9063ffffffff6125a716565b600b5490915060009061118a906001600160a01b031661134b565b905060006111a764e8d4a51000611163848663ffffffff61254e16565b9550505050505090565b6001600160a01b039081166000908152600660205260409020541690565b6111da610cee6121a6565b6112155760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b601655565b61109933826125e9565b600d546001600160a01b031681565b61123e610cee6121a6565b6112795760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b80156112bf57600a8110156112bf5760405162461bcd60e51b815260040180806020018281038252602c8152602001806136c0602c913960400191505060405180910390fd5b601155565b60086020526000908152604090205463ffffffff1681565b6112e7610cee6121a6565b6113225760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b6001600160a01b031660009081526020819052604090205490565b611371610cee6121a6565b6113ac5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6110998161267e565b60004382106113f55760405162461bcd60e51b81526004018080602001828103825260328152602001806135de6032913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff1680611423576000915050610e2d565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310611492576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff16835292905220600101549050610e2d565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156114cd576000915050610e2d565b600060001982015b8163ffffffff168163ffffffff16111561158657600282820363ffffffff160481036114ff61316a565b506001600160a01b038716600090815260076020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561156157602001519450610e2d9350505050565b805163ffffffff168711156115785781935061157f565b6001820392505b50506114d5565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6115c782826126c6565b5050565b6115d6610cee6121a6565b6116115760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b801561165757600a8110156116575760405162461bcd60e51b81526004018080602001828103825260288152602001806133846028913960400191505060405180910390fd5b601355565b60096020526000908152604090205481565b60145461167a3361134b565b10156116b75760405162461bcd60e51b81526004018080602001828103825260228152602001806135456022913960400191505060405180910390fd5b6016546015540142116116fd576040805162461bcd60e51b81526020600482015260096024820152682a37b79029b7b7b71760b91b604482015290519081900360640190fd5b42601555600061170c3061134b565b90506117178161271a565b601354600b54604080516370a0823160e01b815230600482015290516000936117a69390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561176e57600080fd5b505afa158015611782573d6000803e3d6000fd5b505050506040513d602081101561179857600080fd5b50519063ffffffff6125a716565b90506117b18161289b565b5060185460125460408051631e93260360e31b815260048101929092525160009261010090046001600160a01b03169163f499301891602480830192602092919082900301818787803b15801561180757600080fd5b505af115801561181b573d6000803e3d6000fd5b505050506040513d602081101561183157600080fd5b50516040805182815290519192507f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd0919081900360200190a1505050565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610ffa57600080fd5b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e0b5780601f10610de057610100808354040283529160200191610e0b565b611926610cee6121a6565b6119615760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600b546001600160a01b0316156119a95760405162461bcd60e51b815260040180806020018281038252602781526020018061344f6027913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e296119d86121a6565b84610f9d8560405180606001604052806025815260200161369b6025913960016000611a026121a6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6123e516565b611a44610cee6121a6565b611a7f5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6018805460ff19169055565b6000611a963061134b565b905090565b6000610e29611aa86121a6565b8484612296565b6000611a96611abc610fac565b611ac461186f565b9063ffffffff61247c16565b6001600160a01b03811660009081526008602052604081205463ffffffff1680611afb576000611b2d565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b611b3f610cee6121a6565b611b7a5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b601455565b611b8a610cee6121a6565b611bc55760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6017544211611c0e576040805162461bcd60e51b815260206004820152601060248201526f139bdd081d5b9b1bd8dad959081e595d60821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c5957600080fd5b505afa158015611c6d573d6000803e3d6000fd5b505050506040513d6020811015611c8357600080fd5b5051600b546040805163a9059cbb60e01b81523360048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b158015611cdc57600080fd5b505af1158015611cf0573d6000803e3d6000fd5b505050506040513d6020811015611d0657600080fd5b505050565b611d16610cee6121a6565b611d515760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e2d60198363ffffffff6129cf16565b6000604051808061340c6043913960430190506040518091039020611da9610d7f565b80519060200120611db8612a36565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080613661603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015611ef6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f485760405162461bcd60e51b81526004018080602001828103825260318152602001806132b76031913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090208054600181019091558914611fa65760405162461bcd60e51b815260040180806020018281038252602d815260200180613634602d913960400191505060405180910390fd5b87421115611fe55760405162461bcd60e51b81526004018080602001828103825260318152602001806135676031913960400191505060405180910390fd5b611fef818b6125e9565b505050505b505050505050565b600080600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561204d57600080fd5b505afa158015612061573d6000803e3d6000fd5b505050506040513d602081101561207757600080fd5b505190506000611146611aaf565b60175481565b60185460ff1681565b60115481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60135481565b600e546001600160a01b031681565b60405180603a6136618239603a019050604051809103902081565b60145481565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b612133610cee6121a6565b61216e5760405162461bcd60e51b81526004018080602001828103825260408152602001806134e16040913960400191505060405180910390fd5b6001600160a01b03166000908152601060205260409020805460ff19811660ff90911615179055565b600c546001600160a01b031681565b3390565b6001600160a01b0383166121ef5760405162461bcd60e51b81526004018080602001828103825260248152602001806136106024913960400191505060405180910390fd5b6001600160a01b0382166122345760405162461bcd60e51b81526004018080602001828103825260228152602001806132e86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60185460ff1680156122c657506001600160a01b03831660009081526010602052604090205460ff161515600114155b80156122f057506001600160a01b03821660009081526010602052604090205460ff161515600114155b15612342576040805162461bcd60e51b815260206004820152601b60248201527f4c6f636b656420756e74696c20656e64206f662070726573616c650000000000604482015290519081900360640190fd5b6011541580159061236c57506001600160a01b0383166000908152600f602052604090205460ff16155b801561239157506001600160a01b0382166000908152600f602052604090205460ff16155b156123da5760006123ad601154836125a790919063ffffffff16565b90506123ba843083612a3a565b6123d484846123cf858563ffffffff612a7716565b612a3a565b50611d06565b611d06838383612a3a565b600081848411156124745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612439578181015183820152602001612421565b50505050905090810190601f1680156124665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611b2d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038083166000908152600660205260408120546124fc92169083612ab9565b6115c78282612c02565b61251760198263ffffffff612cfe16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60008261255d57506000610e2d565b8282028284828161256a57fe5b0414611b2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806134766021913960400191505060405180910390fd5b6000611b2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d65565b6001600160a01b03808316600090815260066020526040812054909116906126108461134b565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612678828483612ab9565b50505050565b61268f60198263ffffffff612dca16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6126d082826124d6565b6115c7826126dc6121a6565b610f9d84604051806060016040528060248152602001613521602491396001600160a01b038816600090815260016020526040812090610f766121a6565b600c546001600160a01b0316156127e457600c546127439030906001600160a01b031683612a3a565b600c60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561279357600080fd5b505af11580156127a7573d6000803e3d6000fd5b50506040805184815290517fcf550a3d0a19e4909b27127ccd7acb5f883a8c5490d06e7d62491736b30eceb19350908190036020019150a1611099565b600b546127fc9030906001600160a01b031683612a3a565b600b60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561284c57600080fd5b505af1158015612860573d6000803e3d6000fd5b50506040805184815290517f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d490549350908190036020019150a150565b600b54600a546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156128f757600080fd5b505af115801561290b573d6000803e3d6000fd5b505050506040513d602081101561292157600080fd5b5050600a546018546040805163af2979eb60e01b815230600482015260248101869052600060448201819052606482018190526001600160a01b03610100909404841660848301524260a48301529151929093169263af2979eb9260c48083019360209383900390910190829087803b15801561299d57600080fd5b505af11580156129b1573d6000803e3d6000fd5b505050506040513d60208110156129c757600080fd5b505192915050565b60006001600160a01b038216612a165760405162461bcd60e51b81526004018080602001828103825260228152602001806134bf6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6001600160a01b03808416600090815260066020526040808220548584168352912054612a6c92918216911683612ab9565b611d06838383612e4b565b6000611b2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123e5565b816001600160a01b0316836001600160a01b031614158015612adb5750600081115b15611d06576001600160a01b03831615612b73576001600160a01b03831660009081526008602052604081205463ffffffff169081612b1b576000612b4d565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000612b61828563ffffffff612a7716565b9050612b6f86848484612fa7565b5050505b6001600160a01b03821615611d06576001600160a01b03821660009081526008602052604081205463ffffffff169081612bae576000612be0565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000612bf4828563ffffffff61247c16565b9050611ff485848484612fa7565b6001600160a01b038216612c475760405162461bcd60e51b81526004018080602001828103825260218152602001806135986021913960400191505060405180910390fd5b612c8a81604051806060016040528060228152602001613295602291396001600160a01b038516600090815260208190526040902054919063ffffffff6123e516565b6001600160a01b038316600090815260208190526040902055600254612cb6908263ffffffff612a7716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b612d0882826129cf565b612d435760405162461bcd60e51b81526004018080602001828103825260218152602001806133ac6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008183612db45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612439578181015183820152602001612421565b506000838581612dc057fe5b0495945050505050565b612dd482826129cf565b15612e26576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038316612e905760405162461bcd60e51b81526004018080602001828103825260258152602001806135b96025913960400191505060405180910390fd5b6001600160a01b038216612ed55760405162461bcd60e51b81526004018080602001828103825260238152602001806132726023913960400191505060405180910390fd5b612f1881604051806060016040528060268152602001613335602691396001600160a01b038616600090815260208190526040902054919063ffffffff6123e516565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f4d908263ffffffff61247c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612fcb436040518060600160405280603f81526020016133cd603f913961310c565b905060008463ffffffff1611801561301457506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613051576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556130c2565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106131625760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612439578181015183820152602001612421565b509192915050565b604080518082019091526000808252602082015290565b6001600160a01b0382166131dc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546131ef908263ffffffff61247c16565b6002556001600160a01b03821660009081526020819052604090205461321b908263ffffffff61247c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f2061646472657373495453546f6b656e3a3a73657443616c6c657252657761726444697669736f723a20746f6f20736d616c6c45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365495453546f6b656e3a3a736574556e69737761705632526f757465723a20616c726561647920736574495453546f6b656e3a3a736574526562616c616e636544697669736f723a20746f6f20736d616c6c526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429495453546f6b656e3a3a736574556e69737761705632506169723a20616c726561647920736574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365596f7520617265206e6f742070617274206f66207468652073796e6469636174652e4552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f495453546f6b656e3a3a7365744c69717569646974794c6f636b44697669736f723a20746f6f20736d616c6ca265627a7a7231582097e76221b2f69024e2415dc7d20fcab15b78c8c55c560269663fbbda5a7d760864736f6c63430005110032

Deployed Bytecode Sourcemap

40805:2666:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42446:284;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42446:284:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42446:284:0;;:::i;23630:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23630:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;20495:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20495:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20495:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12250:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12250:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12250:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23755:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23755:28:0;;;:::i;41132:227::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41132:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41132:227:0;-1:-1:-1;;;;;41132:227:0;;:::i;23178:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23178:30:0;;;:::i;:::-;;;;-1:-1:-1;;;;;23178:30:0;;;;;;;;;;;;;;23790:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23790:32:0;;;:::i;11271:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11271:91:0;;;:::i;31425:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31425:122:0;;;:::i;12874:304::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12874:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12874:304:0;;;;;;;;;;;;;;;;;:::i;28561:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28561:125:0;;;:::i;21347:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21347:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13587:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13587:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13587:210:0;;;;;;;;:::i;18457:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18457:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18457:83:0;;:::i;23215:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23215:28:0;;;:::i;22425:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22425:95:0;;;:::i;27884:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27884:443:0;;;:::i;32408:149::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32408:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32408:149:0;-1:-1:-1;;;;;32408:149:0;;:::i;42311:123::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42311:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42311:123:0;;:::i;32701:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32701:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32701:104:0;-1:-1:-1;;;;;32701:104:0;;:::i;23280:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23280:31:0;;;:::i;41590:306::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41590:306:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41590:306:0;;:::i;31303:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31303:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31303:49:0;-1:-1:-1;;;;;31303:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;42999:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42999:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42999:123:0;-1:-1:-1;;;;;42999:123:0;;:::i;11425:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11425:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11425:110:0;-1:-1:-1;;;;;11425:110:0;;:::i;22301:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22301:116:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22301:116:0;-1:-1:-1;;;;;22301:116:0;;:::i;35337:1264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35337:1264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35337:1264:0;;;;;;;;:::i;18602:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18602:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18602:103:0;;;;;;;;:::i;41904:286::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41904:286:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41904:286:0;;:::i;31839:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31839:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31839:39:0;-1:-1:-1;;;;;31839:39:0;;:::i;25471:768::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25471:768:0;;;:::i;28379:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28379:130:0;;;:::i;20697:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20697:87:0;;;:::i;41367:215::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41367:215:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41367:215:0;-1:-1:-1;;;;;41367:215:0;;:::i;14300:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14300:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14300:261:0;;;;;;;;:::i;43258:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43258:77:0;;;:::i;27259:108::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27259:108:0;;;:::i;11748:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11748:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11748:158:0;;;;;;;;:::i;28738:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28738:125:0;;;:::i;34651:255::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34651:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34651:255:0;-1:-1:-1;;;;;34651:255:0;;:::i;43347:121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43347:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43347:121:0;;:::i;42742:245::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42742:245:0;;;:::i;42202:97::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42202:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42202:97:0;-1:-1:-1;;;;;42202:97:0;;:::i;22168:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22168:125:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22168:125:0;-1:-1:-1;;;;;22168:125:0;;:::i;33239:1211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33239:1211:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;33239:1211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;27404:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27404:443:0;;;:::i;23835:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23835:25:0;;;:::i;23867:18::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23867:18:0;;;:::i;23588:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23588:35:0;;;:::i;11969:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11969:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11969:134:0;;;;;;;;;;:::i;23671:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23671:31:0;;;:::i;23318:66::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23318:66:0;;;:::i;31641:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31641:117:0;;;:::i;23715:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23715:33:0;;;:::i;31164:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31164:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31164:70:0;;-1:-1:-1;;;;;31164:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;43128:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43128:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43128:120:0;-1:-1:-1;;;;;43128:120:0;;:::i;23250:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23250:23:0;;;:::i;42446:284::-;22041:30;22058:12;:10;:12::i;:::-;22041:16;:30::i;:::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42544:19;;42540:128;;42606:2;42588:14;:20;;42580:76;;;;-1:-1:-1;;;42580:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42686:19;:36;42446:284::o;23630:34::-;;;;:::o;20495:83::-;20565:5;20558:12;;;;;;;;-1:-1:-1;;20558:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20532:13;;20558:12;;20565:5;;20558:12;;20565:5;20558:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20495:83;:::o;12250:152::-;12316:4;12333:39;12342:12;:10;:12::i;:::-;12356:7;12365:6;12333:8;:39::i;:::-;-1:-1:-1;12390:4:0;12250:152;;;;;:::o;23755:28::-;;;;:::o;41132:227::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41231:15;;-1:-1:-1;;;;;41231:15:0;:29;41223:83;;;;-1:-1:-1;;;41223:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41317:15;:34;;-1:-1:-1;;;;;;41317:34:0;-1:-1:-1;;;;;41317:34:0;;;;;;;;;;41132:227::o;23178:30::-;;;-1:-1:-1;;;;;23178:30:0;;:::o;23790:32::-;;;;:::o;11271:91::-;11342:12;;11271:91;:::o;31425:122::-;31467:80;;;;;;;;;;;;;;;;;;31425:122;:::o;12874:304::-;12963:4;12980:36;12990:6;12998:9;13009:6;12980:9;:36::i;:::-;13027:121;13036:6;13044:12;:10;:12::i;:::-;13058:89;13096:6;13058:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13058:19:0;;;;;;:11;:19;;;;;;13078:12;:10;:12::i;:::-;-1:-1:-1;;;;;13058:33:0;;;;;;;;;;;;-1:-1:-1;13058:33:0;;;:89;;:37;:89;:::i;:::-;13027:8;:121::i;:::-;-1:-1:-1;13166:4:0;12874:304;;;;;:::o;28561:125::-;28642:13;;28636:42;;;-1:-1:-1;;;28636:42:0;;28609:7;28636:42;;;;;;;;28609:7;;-1:-1:-1;;;;;28642:13:0;;28636:30;;:42;;;;;;;;;;;;;;;28642:13;28636:42;;;5:2:-1;;;;30:1;27;20:12;5:2;28636:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28636:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28636:42:0;;-1:-1:-1;28561:125:0;:::o;21347:83::-;21413:9;;;;21347:83;:::o;13587:210::-;13667:4;13684:83;13693:12;:10;:12::i;:::-;13707:7;13716:50;13755:10;13716:11;:25;13728:12;:10;:12::i;:::-;-1:-1:-1;;;;;13716:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13716:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18457:83::-;18505:27;18511:12;:10;:12::i;:::-;18525:6;18505:5;:27::i;:::-;18457:83;:::o;23215:28::-;;;-1:-1:-1;;;;;23215:28:0;;:::o;22425:95::-;22477:35;22499:12;:10;:12::i;:::-;22477:21;:35::i;:::-;22425:95::o;27884:443::-;27931:7;27951:21;27981:13;;;;;;;;;-1:-1:-1;;;;;27981:13:0;-1:-1:-1;;;;;27975:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27975:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27975:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27975:34:0;;-1:-1:-1;28020:17:0;28040;:15;:17::i;:::-;28020:37;-1:-1:-1;28068:30:0;28101:38;28125:13;28101:19;28020:37;28115:4;28101:19;:13;:19;:::i;:::-;:23;:38;:23;:38;:::i;:::-;28187:13;;28068:71;;-1:-1:-1;28152:22:0;;28177:24;;-1:-1:-1;;;;;28187:13:0;28177:9;:24::i;:::-;28152:49;-1:-1:-1;28212:21:0;28236:52;28283:4;28236:42;28152:49;28255:22;28236:42;:18;:42;:::i;:52::-;28212:76;-1:-1:-1;;;;;;27884:443:0;:::o;32408:149::-;-1:-1:-1;;;;;32528:21:0;;;32496:7;32528:21;;;:10;:21;;;;;;;;32408:149::o;42311:123::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42397:17;:29;42311:123::o;32701:104::-;32765:32;32775:10;32787:9;32765;:32::i;23280:31::-;;;-1:-1:-1;;;;;23280:31:0;;:::o;41590:306::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41695:26;;41691:143;;41771:2;41746:21;:27;;41738:84;;;;-1:-1:-1;;;41738:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41844:20;:44;41590:306::o;31303:49::-;;;;;;;;;;;;;;;:::o;42999:123::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43096:18:0;;;;;:11;:18;;;;;;;-1:-1:-1;;43074:40:0;;43096:18;;;;43095:19;43074:40;;;42999:123::o;11425:110::-;-1:-1:-1;;;;;11509:18:0;11482:7;11509:18;;;;;;;;;;;;11425:110::o;22301:116::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22382:27;22401:7;22382:18;:27::i;35337:1264::-;35445:7;35492:12;35478:11;:26;35470:89;;;;-1:-1:-1;;;35470:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35594:23:0;;35572:19;35594:23;;;:14;:23;;;;;;;;35632:17;35628:58;;35673:1;35666:8;;;;;35628:58;-1:-1:-1;;;;;35746:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;35767:16:0;;35746:38;;;;;;;;;:48;;:63;-1:-1:-1;35742:147:0;;-1:-1:-1;;;;;35833:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;35854:16:0;;;;35833:38;;;;;;;;35869:1;35833:44;;;-1:-1:-1;35826:51:0;;35742:147;-1:-1:-1;;;;;35950:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;35946:88:0;;;36021:1;36014:8;;;;;35946:88;36046:12;-1:-1:-1;;36088:16:0;;36115:428;36130:5;36122:13;;:5;:13;;;36115:428;;;36194:1;36177:13;;;36176:19;;;36168:27;;36237:20;;:::i;:::-;-1:-1:-1;;;;;;36260:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;36237:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:27;;36303:229;;;36362:8;;;;-1:-1:-1;36355:15:0;;-1:-1:-1;;;;36355:15:0;36303:229;36396:12;;:26;;;-1:-1:-1;36392:140:0;;;36451:6;36443:14;;36392:140;;;36515:1;36506:6;:10;36498:18;;36392:140;36115:428;;;;;-1:-1:-1;;;;;;36560:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;35337:1264:0;;;;:::o;18602:103::-;18671:26;18681:7;18690:6;18671:9;:26::i;:::-;18602:103;;:::o;41904:286::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42001:22;;41997:131;;42069:2;42048:17;:23;;42040:76;;;;-1:-1:-1;;;42040:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42146:16;:36;41904:286::o;31839:39::-;;;;;;;;;;;;;:::o;25471:768::-;25552:18;;25527:21;25537:10;25527:9;:21::i;:::-;:43;;25519:90;;;;-1:-1:-1;;;25519:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25662:17;;25646:13;;:33;25628:15;:51;25620:73;;;;;-1:-1:-1;;;25620:73:0;;;;;;;;;;;;-1:-1:-1;;;25620:73:0;;;;;;;;;;;;;;;25720:15;25704:13;:31;25812:23;25838:24;25856:4;25838:9;:24::i;:::-;25812:50;;25873:42;25899:15;25873:25;:42::i;:::-;26011:16;;25967:13;;25961:45;;;-1:-1:-1;;;25961:45:0;;26000:4;25961:45;;;;;;25936:22;;25961:67;;26011:16;;-1:-1:-1;;;;;25967:13:0;;;;25961:30;;:45;;;;;;;;;;;;;;;25967:13;25961:45;;;5:2:-1;;;;30:1;27;20:12;5:2;25961:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25961:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25961:45:0;;:67;:49;:67;:::i;:::-;25936:92;;26102:28;26115:14;26102:12;:28::i;:::-;-1:-1:-1;26156:8:0;;26175:19;;26156:39;;;-1:-1:-1;;;26156:39:0;;;;;;;;;;-1:-1:-1;;26156:8:0;;;-1:-1:-1;;;;;26156:8:0;;:18;;:39;;;;;;;;;;;;;;-1:-1:-1;26156:8:0;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;26156:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26156:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26156:39:0;26213:18;;;;;;;;26156:39;;-1:-1:-1;26213:18:0;;;;;;26156:39;26213:18;;;25471:768;;;:::o;28379:130::-;28462:13;;28456:45;;;-1:-1:-1;;;28456:45:0;;28495:4;28456:45;;;;;;28429:7;;-1:-1:-1;;;;;28462:13:0;;28456:30;;:45;;;;;;;;;;;;;;28462:13;28456:45;;;5:2:-1;;;;30:1;27;20:12;20697:87:0;20769:7;20762:14;;;;;;;;-1:-1:-1;;20762:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20736:13;;20762:14;;20769:7;;20762:14;;20769:7;20762:14;;;;;;;;;;;;;;;;;;;;;;;;41367:215;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41462:13;;-1:-1:-1;;;;;41462:13:0;:27;41454:79;;;;-1:-1:-1;;;41454:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41544:13;:30;;-1:-1:-1;;;;;;41544:30:0;-1:-1:-1;;;;;41544:30:0;;;;;;;;;;41367:215::o;14300:261::-;14385:4;14402:129;14411:12;:10;:12::i;:::-;14425:7;14434:96;14473:15;14434:96;;;;;;;;;;;;;;;;;:11;:25;14446:12;:10;:12::i;:::-;-1:-1:-1;;;;;14434:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14434:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;43258:77::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43313:6;:14;;-1:-1:-1;;43313:14:0;;;43258:77::o;27259:108::-;27308:7;27335:24;27353:4;27335:9;:24::i;:::-;27328:31;;27259:108;:::o;11748:158::-;11817:4;11834:42;11844:12;:10;:12::i;:::-;11858:9;11869:6;11834:9;:42::i;28738:125::-;28786:7;28813:42;28837:17;:15;:17::i;:::-;28813:19;:17;:19::i;:::-;:23;:42;:23;:42;:::i;34651:255::-;-1:-1:-1;;;;;34790:23:0;;34743:7;34790:23;;;:14;:23;;;;;;;;34831:16;:67;;34897:1;34831:67;;;-1:-1:-1;;;;;34850:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;34871:16:0;;34850:38;;;;;;;;34886:1;34850:44;;34831:67;34824:74;34651:255;-1:-1:-1;;;34651:255:0:o;43347:121::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43432:18;:28;43347:121::o;42742:245::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42813:10;;42807:3;:16;42799:45;;;;;-1:-1:-1;;;42799:45:0;;;;;;;;;;;;-1:-1:-1;;;42799:45:0;;;;;;;;;;;;;;;42879:13;;42872:46;;;-1:-1:-1;;;42872:46:0;;42912:4;42872:46;;;;;;42855:14;;-1:-1:-1;;;;;42879:13:0;;42872:31;;:46;;;;;;;;;;;;;;42879:13;42872:46;;;5:2:-1;;;;30:1;27;20:12;5:2;42872:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42872:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42872:46:0;42936:13;;42929:50;;;-1:-1:-1;;;42929:50:0;;42960:10;42929:50;;;;;;;;;;;;42872:46;;-1:-1:-1;;;;;;42936:13:0;;;;42929:30;;:50;;;;;42872:46;;42929:50;;;;;;;;42936:13;;42929:50;;;5:2:-1;;;;30:1;27;20:12;5:2;42929:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42929:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;42742:245:0:o;42202:97::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42275:8;:16;;-1:-1:-1;;;;;;42275:16:0;-1:-1:-1;;;;;42275:16:0;;;;;;;;;;42202:97::o;22168:125::-;22232:4;22256:29;:16;22277:7;22256:29;:20;:29;:::i;33239:1211::-;33432:23;31467:80;;;;;;;;;;;;;;;;;;;33561:6;:4;:6::i;:::-;33545:24;;;;;;33588:12;:10;:12::i;:::-;33627:4;33482:165;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33482:165:0;-1:-1:-1;;;;;33482:165:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;33482:165:0;;;33458:200;;;;;;33432:226;;33671:18;31687:71;;;;;;;;;;;;;;;;;;;33716:140;;;;;;;;-1:-1:-1;;;;;33716:140:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;33716:140:0;;;;;33692:175;;;;;;-1:-1:-1;;;33921:123:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;33921:123:0;;;;;;33897:158;;;;;;;;;-1:-1:-1;34088:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33692:175;;-1:-1:-1;33897:158:0;;-1:-1:-1;;;34088:26:0;;;;;;;33716:140;-1:-1:-1;;34088:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;34088:26:0;;-1:-1:-1;;34088:26:0;;;-1:-1:-1;;;;;;;34133:23:0;;34125:85;;;;-1:-1:-1;;;34125:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34238:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;34229:28;;34221:86;;;;-1:-1:-1;;;34221:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34333:6;34326:3;:13;;34318:75;;;;-1:-1:-1;;;34318:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34411:31;34421:9;34432;34411;:31::i;:::-;34404:38;;;;33239:1211;;;;;;;:::o;27404:443::-;27451:7;27471:21;27501:13;;;;;;;;;-1:-1:-1;;;;;27501:13:0;-1:-1:-1;;;;;27495:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27495:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27495:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27495:34:0;;-1:-1:-1;27540:17:0;27560;:15;:17::i;23835:25::-;;;;:::o;23867:18::-;;;;;;:::o;23588:35::-;;;;:::o;11969:134::-;-1:-1:-1;;;;;12068:18:0;;;12041:7;12068:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11969:134::o;23671:31::-;;;;:::o;23318:66::-;;;-1:-1:-1;;;;;23318:66:0;;:::o;31641:117::-;31687:71;;;;;;;;;;;;;;;;;;31641:117;:::o;23715:33::-;;;;:::o;31164:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43128:120::-;22041:30;22058:12;:10;:12::i;22041:30::-;22033:107;;;;-1:-1:-1;;;22033:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43225:15:0;;;;;:8;:15;;;;;;;-1:-1:-1;;43206:34:0;;43225:15;;;;43224:16;43206:34;;;43128:120::o;23250:23::-;;;-1:-1:-1;;;;;23250:23:0;;:::o;883:98::-;963:10;883:98;:::o;17231:338::-;-1:-1:-1;;;;;17325:19:0;;17317:68;;;;-1:-1:-1;;;17317:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17404:21:0;;17396:68;;;;-1:-1:-1;;;17396:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17477:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17529:32;;;;;;;;;;;;;;;;;17231:338;;;:::o;24619:767::-;24848:6;;;;:32;;;;-1:-1:-1;;;;;;24858:14:0;;;;;;:8;:14;;;;;;;;:22;;:14;:22;;24848:32;:56;;;;-1:-1:-1;;;;;;24884:12:0;;;;;;:8;:12;;;;;;;;:20;;:12;:20;;24848:56;24845:111;;;24919:37;;;-1:-1:-1;;;24919:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;24845:111;24985:20;;:25;;;;:55;;-1:-1:-1;;;;;;25014:17:0;;;;;;:11;:17;;;;;;;;:26;24985:55;:83;;;;-1:-1:-1;;;;;;25044:15:0;;;;;;:11;:15;;;;;;;;:24;24985:83;24981:398;;;25085:27;25115:32;25126:20;;25115:6;:10;;:32;;;;:::i;:::-;25085:62;;25162:57;25178:4;25192;25199:19;25162:15;:57::i;:::-;25234:58;25250:4;25256:2;25260:31;:6;25271:19;25260:31;:10;:31;:::i;:::-;25234:15;:58::i;:::-;24981:398;;;;25334:33;25350:4;25356:2;25360:6;25334:15;:33::i;5943:192::-;6029:7;6065:12;6057:6;;;;6049:29;;;;-1:-1:-1;;;6049:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6049:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6101:5:0;;;5943:192::o;5014:181::-;5072:7;5104:5;;;5128:6;;;;5120:46;;;;;-1:-1:-1;;;5120:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;30237:170;-1:-1:-1;;;;;30320:19:0;;;;;;;:10;:19;;;;;;30305:55;;30320:19;;30353:6;30305:14;:55::i;:::-;30371:28;30383:7;30392:6;30371:11;:28::i;22682:154::-;22750:32;:16;22774:7;22750:32;:23;:32;:::i;:::-;22798:30;;-1:-1:-1;;;;;22798:30:0;;;;;;;;22682:154;:::o;6386:471::-;6444:7;6689:6;6685:47;;-1:-1:-1;6719:1:0;6712:8;;6685:47;6756:5;;;6760:1;6756;:5;:1;6780:5;;;;;:10;6772:56;;;;-1:-1:-1;;;6772:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7325:132;7383:7;7410:39;7414:1;7417;7410:39;;;;;;;;;;;;;;;;;:3;:39::i;36609:449::-;-1:-1:-1;;;;;36726:21:0;;;36700:23;36726:21;;;:10;:21;;;;;;;;;;36785:20;36737:9;36785;:20::i;:::-;-1:-1:-1;;;;;36872:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;36872:33:0;;;;;;;;;;36923:54;;36758:47;;-1:-1:-1;36872:33:0;36923:54;;;;;;36872:21;36923:54;36990:60;37005:15;37022:9;37033:16;36990:14;:60::i;:::-;36609:449;;;;:::o;22528:146::-;22593:29;:16;22614:7;22593:29;:20;:29;:::i;:::-;22638:28;;-1:-1:-1;;;;;22638:28:0;;;;;;;;22528:146;:::o;17755:232::-;17827:22;17833:7;17842:6;17827:5;:22::i;:::-;17860:119;17869:7;17878:12;:10;:12::i;:::-;17892:86;17931:6;17892:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17892:20:0;;;;;;:11;:20;;;;;;17913:12;:10;:12::i;26247:515::-;26330:8;;-1:-1:-1;;;;;26330:8:0;:22;26327:428;;26400:8;;26369:58;;26393:4;;-1:-1:-1;;;;;26400:8:0;26410:16;26369:15;:58::i;:::-;26457:8;;;;;;;;;-1:-1:-1;;;;;26457:8:0;-1:-1:-1;;;;;26442:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26442:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26493:32:0;;;;;;;;;;-1:-1:-1;26493:32:0;;;;;;;-1:-1:-1;26493:32:0;26327:428;;;26598:13;;26567:63;;26591:4;;-1:-1:-1;;;;;26598:13:0;26613:16;26567:15;:63::i;:::-;26660:13;;;;;;;;;-1:-1:-1;;;;;26660:13:0;-1:-1:-1;;;;;26645:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26645:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26701:42:0;;;;;;;;;;-1:-1:-1;26701:42:0;;;;;;;-1:-1:-1;26701:42:0;26247:515;:::o;26770:452::-;26859:13;;26882:15;;26853:55;;;-1:-1:-1;;;26853:55:0;;-1:-1:-1;;;;;26882:15:0;;;26853:55;;;;;;;;;;;;26826:14;;26859:13;;;;;26853:28;;:55;;;;;;;;;;;;;;;26826:14;26859:13;26853:55;;;5:2:-1;;;;30:1;27;20:12;5:2;26853:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26853:55:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26952:15:0;;27156:8;;26933:281;;;-1:-1:-1;;;26933:281:0;;27057:4;26933:281;;;;;;;;;;-1:-1:-1;26933:281:0;;;;;;;;;;;;-1:-1:-1;;;;;26952:15:0;27156:8;;;;;26933:281;;;;27184:15;26933:281;;;;;;26952:15;;;;;26933:97;;:281;;;;;26853:55;;26933:281;;;;;;;;;26952:15;26933:281;;;5:2:-1;;;;30:1;27;20:12;5:2;26933:281:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26933:281:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26933:281:0;;26770:452;-1:-1:-1;;26770:452:0:o;19575:203::-;19647:4;-1:-1:-1;;;;;19672:21:0;;19664:68;;;;-1:-1:-1;;;19664:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19750:20:0;:11;:20;;;;;;;;;;;;;;;19575:203::o;38913:153::-;39023:9;38913:153;:::o;29862:189::-;-1:-1:-1;;;;;29958:16:0;;;;;;;:10;:16;;;;;;;29976:14;;;;;;;;29943:56;;29958:16;;;;29976:14;29992:6;29943:14;:56::i;:::-;30010:33;30026:4;30032:2;30036:6;30010:15;:33::i;5470:136::-;5528:7;5555:43;5559:1;5562;5555:43;;;;;;;;;;;;;;;;;:3;:43::i;37066:947::-;37172:6;-1:-1:-1;;;;;37162:16:0;:6;-1:-1:-1;;;;;37162:16:0;;;:30;;;;;37191:1;37182:6;:10;37162:30;37158:848;;;-1:-1:-1;;;;;37213:20:0;;;37209:385;;-1:-1:-1;;;;;37321:22:0;;37302:16;37321:22;;;:14;:22;;;;;;;;;37382:13;:60;;37441:1;37382:60;;;-1:-1:-1;;;;;37398:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;37418:13:0;;37398:34;;;;;;;;37430:1;37398:40;;37382:60;37362:80;-1:-1:-1;37461:17:0;37481:21;37362:80;37495:6;37481:21;:13;:21;:::i;:::-;37461:41;;37521:57;37538:6;37546:9;37557;37568;37521:16;:57::i;:::-;37209:385;;;;-1:-1:-1;;;;;37614:20:0;;;37610:385;;-1:-1:-1;;;;;37722:22:0;;37703:16;37722:22;;;:14;:22;;;;;;;;;37783:13;:60;;37842:1;37783:60;;;-1:-1:-1;;;;;37799:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;37819:13:0;;37799:34;;;;;;;;37831:1;37799:40;;37783:60;37763:80;-1:-1:-1;37862:17:0;37882:21;37763:80;37896:6;37882:21;:13;:21;:::i;:::-;37862:41;;37922:57;37939:6;37947:9;37958;37969;37922:16;:57::i;16443:348::-;-1:-1:-1;;;;;16519:21:0;;16511:67;;;;-1:-1:-1;;;16511:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16612:68;16635:6;16612:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16612:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16591:18:0;;:9;:18;;;;;;;;;;:89;16706:12;;:24;;16723:6;16706:24;:16;:24;:::i;:::-;16691:12;:39;16746:37;;;;;;;;16772:1;;-1:-1:-1;;;;;16746:37:0;;;;;;;;;;;;16443:348;;:::o;19297:183::-;19377:18;19381:4;19387:7;19377:3;:18::i;:::-;19369:64;;;;-1:-1:-1;;;19369:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19444:20:0;19467:5;19444:20;;;;;;;;;;;:28;;-1:-1:-1;;19444:28:0;;;19297:183::o;7987:345::-;8073:7;8175:12;8168:5;8160:28;;;;-1:-1:-1;;;8160:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;8160:28:0;;8199:9;8215:1;8211;:5;;;;;;;7987:345;-1:-1:-1;;;;;7987:345:0:o;19039:178::-;19117:18;19121:4;19127:7;19117:3;:18::i;:::-;19116:19;19108:63;;;;;-1:-1:-1;;;19108:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19182:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;19182:27:0;19205:4;19182:27;;;19039:178::o;15051:471::-;-1:-1:-1;;;;;15149:20:0;;15141:70;;;;-1:-1:-1;;;15141:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15230:23:0;;15222:71;;;;-1:-1:-1;;;15222:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15326;15348:6;15326:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15326:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15306:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15431:20;;;;;;;:32;;15456:6;15431:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15408:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15479:35;;;;;;;15408:20;;15479:35;;;;;;;;;;;;;15051:471;;;:::o;38021:715::-;38200:18;38221:87;38228:12;38221:87;;;;;;;;;;;;;;;;;:6;:87::i;:::-;38200:108;;38340:1;38325:12;:16;;;:85;;;;-1:-1:-1;;;;;;38345:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;38368:16:0;;38345:40;;;;;;;;;:50;:65;;;:50;;:65;38325:85;38321:339;;;-1:-1:-1;;;;;38427:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;38450:16:0;;38427:40;;;;;;;;38465:1;38427:46;:57;;;38321:339;;;38556:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38517:22:0;;-1:-1:-1;38517:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;38517:72:0;;;;;;;;;;;;;38604:25;;;:14;:25;;;;;;:44;;38632:16;;;38604:44;;;;;;;;;;38321:339;38677:51;;;;;;;;;;;;;;-1:-1:-1;;;;;38677:51:0;;;;;;;;;;;38021:715;;;;;:::o;38744:161::-;38819:6;38857:12;38850:5;38846:9;;38838:32;;;;-1:-1:-1;;;38838:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;38838:32:0;-1:-1:-1;38895:1:0;;38744:161;-1:-1:-1;;38744:161:0:o;40805:2666::-;;;;;;;;;;-1:-1:-1;40805:2666:0;;;;;;;;:::o;15803:308::-;-1:-1:-1;;;;;15879:21:0;;15871:65;;;;;-1:-1:-1;;;15871:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15964:12;;:24;;15981:6;15964:24;:16;:24;:::i;:::-;15949:12;:39;-1:-1:-1;;;;;16020:18:0;;:9;:18;;;;;;;;;;;:30;;16043:6;16020:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15999:18:0;;:9;:18;;;;;;;;;;;:51;;;;16066:37;;;;;;;15999:18;;:9;;16066:37;;;;;;;;;;15803:308;;:::o

Swarm Source

bzzr://f27748cb43ee74c3262f4e32d4fcd53ea22b779e360a974872f04a642ff9fb14
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.