ETH Price: $3,334.91 (-1.12%)

Token

Keep3r (KPR)
 

Overview

Max Total Supply

10,400 KPR

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25.503267922107981786 KPR

Value
$0.00
0xB49f3426728Cbc8EC3542bD950C2252027154200
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Keep3r

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-20
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @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(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "Uniloan::SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint 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(uint a, uint b) internal pure returns (uint) {
        // 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;
        }

        uint c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // 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;
        }

        uint c = a * b;
        require(c / a == b, errorMessage);

        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(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint 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(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface Governance {
    function proposeJob(address job) external returns (uint);
}

interface WETH9 {
    function deposit() external payable;
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
}

interface Uniswap {
    function factory() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
}

interface UniswapPair {
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
    function totalSupply() external view returns (uint);
}

interface Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract Keep3r {
    using SafeMath for uint;

    /// @notice WETH address to liquidity into UNI
    WETH9 public constant WETH = WETH9(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    /// @notice UniswapV2Router address
    Uniswap public constant UNI = Uniswap(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    /// @notice EIP-20 token name for this token
    string public constant name = "Keep3r";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "KPR";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // Initial 0

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

    /// @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;

    mapping (address => mapping (address => uint)) internal allowances;
    mapping (address => uint) internal balances;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint 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,uint nonce,uint expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint value,uint nonce,uint deadline)");


    /// @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 A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint votes;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        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) public {
        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), "::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "::delegateBySig: invalid nonce");
        require(now <= expiry, "::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 (uint) {
        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) public view returns (uint) {
        require(blockNumber < block.number, "::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];
        uint delegatorBalance = bonds[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint srcRepNew = srcRepOld.sub(amount, "::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

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

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint oldVotes, uint newVotes) internal {
      uint32 blockNumber = safe32(block.number, "::_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);
    }

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint amount);

    /// @notice Submit a job
    event SubmitJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Remove credit for a job
    event RemoveJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Added a Job
    event JobAdded(address indexed job, uint block, address governance);

    /// @notice Removed a job
    event JobRemoved(address indexed job, uint block, address governance);

    /// @notice Worked a job
    event KeeperWorked(address indexed job, address indexed keeper, uint block);

    /// @notice Keeper bonding
    event KeeperBonding(address indexed keeper, uint block, uint active, uint bond);

    /// @notice Keeper bonded
    event KeeperBonded(address indexed keeper, uint block, uint activated, uint bond);

    /// @notice Keeper unbonding
    event KeeperUnbonding(address indexed keeper, uint block, uint deactive, uint bond);

    /// @notice Keeper unbound
    event KeeperUnbound(address indexed keeper, uint block, uint deactivated, uint bond);

    /// @notice Keeper slashed
    event KeeperSlashed(address indexed keeper, address indexed slasher, uint block, uint slash);

    /// @notice Keeper disputed
    event KeeperDispute(address indexed keeper, uint block);

    /// @notice Keeper resolved
    event KeeperResolved(address indexed keeper, uint block);

    /// @notice 1 day to bond to become a keeper
    uint constant public BOND = 3 days;
    /// @notice 14 days to unbond to remove funds from being a keeper
    uint constant public UNBOND = 14 days;
    /// @notice 7 days maximum downtime before being slashed
    uint constant public DOWNTIME = 7 days;

    /// @notice 5% of funds slashed for downtime
    uint constant public DOWNTIMESLASH = 500;
    uint constant public BASE = 10000;

    /// @notice tracks all current bondings (time)
    mapping(address => uint) public bondings;
    /// @notice tracks all current unbondings (time)
    mapping(address => uint) public unbondings;
    /// @notice allows for partial unbonding
    mapping(address => uint) public partialUnbonding;
    /// @notice tracks all current pending bonds (amount)
    mapping(address => uint) public pendingbonds;
    /// @notice tracks how much a keeper has bonded
    mapping(address => uint) public bonds;

    /// @notice total bonded (totalSupply for bonds)
    uint public totalBonded = 0;
    /// @notice tracks when a keeper was first registered
    mapping(address => uint) public firstSeen;

    /// @notice tracks if a keeper has a pending dispute
    mapping(address => bool) public disputes;

    /// @notice tracks last job performed for a keeper
    mapping(address => uint) public lastJob;
    /// @notice tracks the amount of job executions for a keeper
    mapping(address => uint) public work;
    /// @notice tracks the total job executions for a keeper
    mapping(address => uint) public workCompleted;
    /// @notice list of all jobs registered for the keeper system
    mapping(address => bool) public jobs;
    /// @notice the current credit available for a job
    mapping(address => uint) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => uint) public liquidityProviders;
    /// @notice tracks the relationship between a liquidityProvider and their job
    mapping(address => address) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => uint) public liquidityUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => uint) public liquidityApplied;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;
    /// @notice blacklist of keepers not allowed to participate
    mapping(address => bool) public blacklist;

    /// @notice traversable array of keepers to make external management easier
    address[] public keeperList;

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;

    /// @notice the liquidity token supplied by users paying for jobs
    UniswapPair public liquidity;

    constructor() public {
        // Set governance for this token
        governance = msg.sender;
        _mint(msg.sender, 10000e18);
    }

    function setup() public payable {
        require(address(liquidity) == address(0x0), "Keep3r::setup: keep3r already setup");
        WETH.deposit.value(msg.value)();
        WETH.approve(address(UNI), msg.value);
        _mint(address(this), 400e18);
        allowances[address(this)][address(UNI)] = balances[address(this)];

        // Setup liquidity pool with initial liquidity 1 ETH : 400 KPR
        UNI.addLiquidity(address(this), address(WETH), balances[address(this)], WETH.balanceOf(address(this)), 0, 0, msg.sender, now.add(1800));
        liquidity = UniswapPair(Factory(UNI.factory()).getPair(address(this), address(WETH)));
    }

    /**
     * @notice Allows liquidity providers to submit jobs
     * @param amount the amount of tokens to mint to treasury
     * @param job the job to assign credit to
     * @param amount the amount of liquidity tokens to use
     */
    function addLiquidityToJob(address job, uint amount) external {
        require(liquidityProvided[msg.sender]==address(0x0), "Keep3r::submitJob: liquidity already provided, please remove first");
        liquidity.transferFrom(msg.sender, address(this), amount);
        liquidityProviders[msg.sender] = amount;
        liquidityProvided[msg.sender] = job;
        liquidityApplied[msg.sender] = now.add(1 days);
        if (!jobs[job] && jobProposalDelay[job] < now) {
            Governance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, msg.sender, block.number, amount);
    }

    /**
     * @notice Applies the credit provided in addLiquidityToJob to the job
     * @param provider the liquidity provider
     */
    function applyCreditToJob(address provider) external {
        require(liquidityApplied[provider] != 0, "Keep3r::credit: submitJob first");
        require(liquidityApplied[provider] < now, "Keep3r::credit: still bonding");
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(liquidityProviders[provider]).div(liquidity.totalSupply());
        credits[liquidityProvided[msg.sender]] = credits[liquidityProvided[msg.sender]].add(_credit);
    }

    /**
     * @notice Unbond liquidity for a pending keeper job
     */
    function unbondLiquidityFromJob() external {
        liquidityUnbonding[msg.sender] = now.add(UNBOND);

        emit UnbondJob(liquidityProvided[msg.sender], msg.sender, block.number, liquidityProviders[msg.sender]);
    }

    /**
     * @notice Allows liquidity providers to remove liquidity
     */
    function removeLiquidityFromJob() external {
        require(liquidityUnbonding[msg.sender] != 0, "Keep3r::removeJob: unbond first");
        require(liquidityUnbonding[msg.sender] < now, "Keep3r::removeJob: still unbonding");
        uint _provided = liquidityProviders[msg.sender];
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(_provided).div(liquidity.totalSupply());
        address _job = liquidityProvided[msg.sender];
        if (_credit > credits[_job]) {
            credits[_job] = 0;
        } else {
            credits[_job].sub(_credit);
        }
        liquidity.transfer(msg.sender, _provided);
        liquidityProviders[msg.sender] = 0;
        liquidityProvided[msg.sender] = address(0x0);

        emit RemoveJob(_job, msg.sender, block.number, _provided);
    }

    /**
     * @notice Allows governance to mint new tokens to treasury
     * @param amount the amount of tokens to mint to treasury
     */
    function mint(uint amount) external {
        require(msg.sender == governance, "Keep3r::mint: governance only");
        _mint(governance, amount);
    }

    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }

    function _mint(address dst, uint amount) internal {
        // mint the amount
        totalSupply = totalSupply.add(amount);
        // transfer the amount to the recipient
        balances[dst] = balances[dst].add(amount);
        emit Transfer(address(0), dst, amount);
    }

    function _burn(address dst, uint amount) internal {
        require(dst != address(0), "::_burn: burn from the zero address");
        balances[dst] = balances[dst].sub(amount, "::_burn: burn amount exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performend work
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function workReceipt(address keeper, uint amount) external {
        require(jobs[msg.sender], "Keep3r::workReceipt: only jobs can approve work");
        lastJob[keeper] = now;
        credits[msg.sender] = credits[msg.sender].sub(amount, "Keep3r::workReceipt: insuffient funds to pay keeper");
        bonds[keeper] = bonds[keeper].add(amount);
        _moveDelegates(address(0), delegates[keeper], amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(msg.sender, keeper, block.number);
    }

    /**
     * @notice Allows governance to add new job systems
     * @param job address of the contract for which work should be performed
     */
    function addJob(address job) external {
        require(msg.sender == governance, "Keep3r::addJob: only governance can add jobs");
        jobs[job] = true;
        emit JobAdded(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to remove a job from the systems
     * @param job address of the contract for which work should be performed
     */
    function removeJob(address job) external {
        require(msg.sender == governance, "Keep3r::removeJob: only governance can remove jobs");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to change governance (for future upgradability)
     * @param _governance new governance address to set
     */
    function setGovernance(address _governance) external {
        require(msg.sender == governance, "Keep3r::setGovernance: only governance can set");
        pendingGovernance = _governance;
    }
    
    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "Keep3r::acceptGovernance: only pendingGovernance can accept");
        governance = pendingGovernance;
    }

    /**
     * @notice confirms if the current keeper is registered, can be used for general (non critical) functions
     * @return true/false if the address is a keeper
     */
    function isKeeper(address keeper) external view returns (bool) {
        return keepers[keeper];
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isMinKeeper(address keeper, uint minBond, uint completed, uint age) external view returns (bool) {
        return keepers[keeper]
                && bonds[keeper] >= minBond
                && workCompleted[keeper] > completed
                && now.sub(firstSeen[keeper]) > age;
    }

    /**
     * @notice begin the bonding process for a new keeper
     */
    function bond(uint amount) external {
        require(pendingbonds[msg.sender] == 0, "Keep3r::bond: current pending bond");
        require(!blacklist[msg.sender], "Keep3r::bond: keeper is blacklisted");
        bondings[msg.sender] = now.add(BOND);
        pendingbonds[msg.sender] = amount;
        _transferTokens(msg.sender, address(this), amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender], amount);
    }

    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

    /**
     * @notice allows a keeper to activate/register themselves after bonding
     */
    function activate() external {
        require(bondings[msg.sender] != 0, "Keep3r::activate: bond first");
        require(bondings[msg.sender] < now, "Keep3r::activate: still bonding");
        if (!keepers[msg.sender]) {
          firstSeen[msg.sender] = now;
        }
        keepers[msg.sender] = true;
        totalBonded = totalBonded.add(pendingbonds[msg.sender]);
        bonds[msg.sender] = bonds[msg.sender].add(pendingbonds[msg.sender]);
        pendingbonds[msg.sender] = 0;
        if (lastJob[msg.sender] == 0) {
            lastJob[msg.sender] = now;
            keeperList.push(msg.sender);
        }
        emit KeeperBonded(msg.sender, block.number, block.timestamp, bonds[msg.sender]);
    }
    
    /**
     * @notice allows a keeper to deactivate (sub system to avoid down slashing)
     */
    function deactivate() external {
        keepers[msg.sender] = false;
    }

    /**
     * @notice begin the unbonding process to stop being a keeper
     * @param amount allows for partial unbonding
     */
    function unbond(uint amount) external {
        unbondings[msg.sender] = now.add(UNBOND);
        bonds[msg.sender] = bonds[msg.sender].sub(amount);
        partialUnbonding[msg.sender] = partialUnbonding[msg.sender].add(amount);
        totalBonded = totalBonded.sub(amount);
        _moveDelegates(delegates[msg.sender], address(0), amount);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender], amount);
    }

    /**
     * @notice withdraw funds after unbonding has finished
     */
    function withdraw() external {
        require(unbondings[msg.sender] != 0, "Keep3r::withdraw: unbond first");
        require(unbondings[msg.sender] < now, "Keep3r::withdraw: still unbonding");
        require(!disputes[msg.sender], "Keep3r::withdraw: pending disputes");

        _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender]);
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender]);
        partialUnbonding[msg.sender] = 0;
    }

    /**
     * @notice slash a keeper for downtime
     * @param keeper the address being slashed
     */
    function down(address keeper) external {
        require(keepers[keeper], "Keep3r::down: keeper not registered");
        require(lastJob[keeper].add(DOWNTIME) < now, "Keep3r::down: keeper safe");
        uint _slash = bonds[keeper].mul(DOWNTIMESLASH).div(BASE);
        bonds[keeper] = bonds[keeper].sub(_slash);
        _moveDelegates(delegates[msg.sender], address(0), _slash);
        _transferTokens(address(this), msg.sender, _slash);
        lastJob[keeper] = now;
        emit KeeperSlashed(keeper, msg.sender, block.number, _slash);
    }

    /**
     * @notice allows governance to create a dispute for a given keeper
     * @param keeper the address in dispute
     */
    function dispute(address keeper) external returns (uint) {
        require(msg.sender == governance, "Keep3r::dispute: only governance can dispute");
        disputes[keeper] = true;
        emit KeeperDispute(keeper, block.number);
    }

    /**
     * @notice allows governance to slash a keeper based on a dispute
     * @param keeper the address being slashed
     * @param amount the amount being slashed
     */
    function slash(address keeper, uint amount) public {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        _transferTokens(address(this), governance, amount);
        _moveDelegates(delegates[msg.sender], address(0), amount);
        bonds[keeper] = bonds[keeper].sub(amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }
    
    
    /**
     * @notice blacklists a keeper from participating in the network
     * @param keeper the address being slashed
     */
    function revoke(address keeper) external {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        keepers[keeper] = false;
        blacklist[keeper] = true;
        slash(keeper, bonds[keeper]);
    }

    /**
     * @notice allows governance to resolve a dispute on a keeper
     * @param keeper the address cleared
     */
    function resolve(address keeper) external {
        require(msg.sender == governance, "Keep3r::resolve: only governance can resolve");
        disputes[keeper] = false;
        emit KeeperResolved(keeper, block.number);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint amount) public returns (bool) {
        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline 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 permit(address owner, address spender, uint amount, uint deadline, 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(PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "::permit: invalid signature");
        require(signatory == owner, "::permit: unauthorized");
        require(now <= deadline, "::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) public returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint amount) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint(-1)) {
            uint newAllowance = spenderAllowance.sub(amount, "::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        require(src != address(0), "::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "::_transferTokens: cannot transfer to the zero address");

        balances[src] = balances[src].sub(amount, "::_transferTokens: transfer amount exceeds balance");
        balances[dst] = balances[dst].add(amount, "::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"activated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"active","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"address","name":"slasher","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"slash","type":"uint256"}],"name":"KeeperSlashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactivated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"RemoveJob","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"SubmitJob","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"UnbondJob","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIMESLASH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNI","outputs":[{"internalType":"contract Uniswap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract WETH9","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidityToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"applyCreditToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"dispute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disputes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"down","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSeen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getKeepers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"completed","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobProposalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"keeperList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastJob","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"contract UniswapPair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProviders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"partialUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pendingbonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setup","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"work","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"workCompleted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556000600c553480156200001a57600080fd5b50601c80546001600160a01b031916339081179091556200004f9069021e19e0c9bab24000006001600160e01b036200005516565b6200015f565b6200007181600054620000fd60201b62003ebe1790919060201c565b60009081556001600160a01b038316815260056020908152604090912054620000a591839062003ebe620000fd821b17901c565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000158576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b614b1e806200016f6000396000f3fe6080604052600436106104525760003560e01c80637724ff681161023f578063ba0bba4011610139578063ec342ad0116100b6578063f39c38a01161007a578063f39c38a014611185578063f75f9f7b1461119a578063f9f92be4146111cd578063fe10d77414611200578063fe5ff4681461123357610452565b8063ec342ad014611081578063ec4515dd14611096578063ef43e281146110c0578063f1127ed8146110f3578063f1896b541461115257610452565b8063d505accf116100fd578063d505accf14610f6d578063dbd9426714610fcb578063dd62ed3e14610ffe578063e326ac4314611039578063e7a324dc1461106c57610452565b8063ba0bba4014610e96578063c1c1d21814610e9e578063c3cda52014610eb3578063c5198abc14610f07578063d454019d14610f3a57610452565b8063a0712d68116101c7578063aec758c01161018b578063aec758c014610d5f578063b0103b1a14610d98578063b105e39f14610dcb578063b24ae47714610e30578063b4b5ea5714610e6357610452565b8063a0712d6814610c81578063a9059cbb14610cab578063ab033ea914610ce4578063abbb247f14610d17578063ad5c464814610d4a57610452565b806393f6c2ad1161020e57806393f6c2ad14610be5578063950a2ca214610c1857806395d89b4114610c2d578063985348bf14610c425780639940686e14610c5757610452565b80637724ff6814610b13578063782d6fe114610b465780637ecebe0014610b7f5780638071198914610bb257610452565b806342966c68116103505780635aa6e675116102d85780636ba42aaa1161029c5780636ba42aaa146109fb5780636fcfff4514610a2e57806370a0823114610a7a57806374a8f10314610aad57806375d2762914610ae057610452565b80635aa6e675146109565780635bff0cd11461096b5780635c19a95c14610980578063603b4d14146109b357806365119f72146109c857610452565b806351b42b001161031f57806351b42b00146108b1578063541bcb76146108c657806355ea6c47146108db578063587cde1e1461090e57806359e9e2551461094157610452565b806342966c681461080657806344d96e95146108305780634a5c8de8146108455780634b3fde211461087857610452565b8063238efcbc116103de578063313ce567116103a2578063313ce5671461072d57806336df7ea5146107585780633bbd64bc1461078b5780633ccfd60b146107be5780633d1f0bb9146107d357610452565b8063238efcbc1461066357806323b872dd1461067857806327de9e32146106bb578063284cc0a9146106e557806330adf81f1461071857610452565b806318160ddd1161042557806318160ddd1461057e5780631a686502146105a55780631b44555e146105d65780631ff5f3da1461060957806320606b701461064e57610452565b806302fb4d851461045757806306fdde0314610492578063095ea7b31461051c5780630f15f4c014610569575b600080fd5b34801561046357600080fd5b506104906004803603604081101561047a57600080fd5b506001600160a01b038135169060200135611266565b005b34801561049e57600080fd5b506104a7611380565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104e15781810151838201526020016104c9565b50505050905090810190601f16801561050e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561052857600080fd5b506105556004803603604081101561053f57600080fd5b506001600160a01b0381351690602001356113a2565b604080519115158252519081900360200190f35b34801561057557600080fd5b50610490611409565b34801561058a57600080fd5b5061059361162b565b60408051918252519081900360200190f35b3480156105b157600080fd5b506105ba611631565b604080516001600160a01b039092168252519081900360200190f35b3480156105e257600080fd5b50610593600480360360208110156105f957600080fd5b50356001600160a01b0316611640565b34801561061557600080fd5b506105556004803603608081101561062c57600080fd5b506001600160a01b038135169060208101359060408101359060600135611652565b34801561065a57600080fd5b506105936116f3565b34801561066f57600080fd5b5061049061170f565b34801561068457600080fd5b506105556004803603606081101561069b57600080fd5b506001600160a01b0381358116916020810135909116906040013561177c565b3480156106c757600080fd5b50610490600480360360208110156106de57600080fd5b5035611864565b3480156106f157600080fd5b506104906004803603602081101561070857600080fd5b50356001600160a01b031661196d565b34801561072457600080fd5b50610593611b4d565b34801561073957600080fd5b50610742611b68565b6040805160ff9092168252519081900360200190f35b34801561076457600080fd5b506105936004803603602081101561077b57600080fd5b50356001600160a01b0316611b6d565b34801561079757600080fd5b50610555600480360360208110156107ae57600080fd5b50356001600160a01b0316611b7f565b3480156107ca57600080fd5b50610490611b94565b3480156107df57600080fd5b50610555600480360360208110156107f657600080fd5b50356001600160a01b0316611d0f565b34801561081257600080fd5b506104906004803603602081101561082957600080fd5b5035611d24565b34801561083c57600080fd5b50610593611d31565b34801561085157600080fd5b506105936004803603602081101561086857600080fd5b50356001600160a01b0316611d37565b34801561088457600080fd5b506104906004803603604081101561089b57600080fd5b506001600160a01b038135169060200135611d49565b3480156108bd57600080fd5b50610490611ee9565b3480156108d257600080fd5b506105ba611f02565b3480156108e757600080fd5b50610490600480360360208110156108fe57600080fd5b50356001600160a01b0316611f1a565b34801561091a57600080fd5b506105ba6004803603602081101561093157600080fd5b50356001600160a01b0316611fbb565b34801561094d57600080fd5b50610490611fd6565b34801561096257600080fd5b506105ba612292565b34801561097757600080fd5b506104906122a1565b34801561098c57600080fd5b50610490600480360360208110156109a357600080fd5b50356001600160a01b0316612321565b3480156109bf57600080fd5b5061059361232b565b3480156109d457600080fd5b506105ba600480360360208110156109eb57600080fd5b50356001600160a01b0316612332565b348015610a0757600080fd5b5061055560048036036020811015610a1e57600080fd5b50356001600160a01b031661234d565b348015610a3a57600080fd5b50610a6160048036036020811015610a5157600080fd5b50356001600160a01b031661236b565b6040805163ffffffff9092168252519081900360200190f35b348015610a8657600080fd5b5061059360048036036020811015610a9d57600080fd5b50356001600160a01b0316612383565b348015610ab957600080fd5b5061049060048036036020811015610ad057600080fd5b50356001600160a01b031661239e565b348015610aec57600080fd5b5061049060048036036020811015610b0357600080fd5b50356001600160a01b0316612431565b348015610b1f57600080fd5b5061059360048036036020811015610b3657600080fd5b50356001600160a01b0316612616565b348015610b5257600080fd5b5061059360048036036040811015610b6957600080fd5b506001600160a01b038135169060200135612628565b348015610b8b57600080fd5b5061059360048036036020811015610ba257600080fd5b50356001600160a01b0316612830565b348015610bbe57600080fd5b5061049060048036036020811015610bd557600080fd5b50356001600160a01b0316612842565b348015610bf157600080fd5b5061059360048036036020811015610c0857600080fd5b50356001600160a01b03166128ec565b348015610c2457600080fd5b506105936128fe565b348015610c3957600080fd5b506104a7612904565b348015610c4e57600080fd5b50610593612923565b348015610c6357600080fd5b5061049060048036036020811015610c7a57600080fd5b503561292a565b348015610c8d57600080fd5b5061049060048036036020811015610ca457600080fd5b5035612a56565b348015610cb757600080fd5b5061055560048036036040811015610cce57600080fd5b506001600160a01b038135169060200135612acb565b348015610cf057600080fd5b5061049060048036036020811015610d0757600080fd5b50356001600160a01b0316612ae1565b348015610d2357600080fd5b5061059360048036036020811015610d3a57600080fd5b50356001600160a01b0316612b4c565b348015610d5657600080fd5b506105ba612b5e565b348015610d6b57600080fd5b5061049060048036036040811015610d8257600080fd5b506001600160a01b038135169060200135612b76565b348015610da457600080fd5b5061055560048036036020811015610dbb57600080fd5b50356001600160a01b0316612ddc565b348015610dd757600080fd5b50610de0612df1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e1c578181015183820152602001610e04565b505050509050019250505060405180910390f35b348015610e3c57600080fd5b5061059360048036036020811015610e5357600080fd5b50356001600160a01b0316612e53565b348015610e6f57600080fd5b5061059360048036036020811015610e8657600080fd5b50356001600160a01b0316612e65565b610490612ec9565b348015610eaa57600080fd5b506105936132f0565b348015610ebf57600080fd5b50610490600480360360c0811015610ed657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356132f7565b348015610f1357600080fd5b5061049060048036036020811015610f2a57600080fd5b50356001600160a01b03166135b3565b348015610f4657600080fd5b5061059360048036036020811015610f5d57600080fd5b50356001600160a01b0316613660565b348015610f7957600080fd5b50610490600480360360e0811015610f9057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613672565b348015610fd757600080fd5b5061059360048036036020811015610fee57600080fd5b50356001600160a01b03166139c2565b34801561100a57600080fd5b506105936004803603604081101561102157600080fd5b506001600160a01b03813581169160200135166139d4565b34801561104557600080fd5b506105936004803603602081101561105c57600080fd5b50356001600160a01b03166139ff565b34801561107857600080fd5b50610593613a11565b34801561108d57600080fd5b50610593613a2c565b3480156110a257600080fd5b506105ba600480360360208110156110b957600080fd5b5035613a32565b3480156110cc57600080fd5b50610593600480360360208110156110e357600080fd5b50356001600160a01b0316613a59565b3480156110ff57600080fd5b506111326004803603604081101561111657600080fd5b5080356001600160a01b0316906020013563ffffffff16613a6b565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561115e57600080fd5b506105936004803603602081101561117557600080fd5b50356001600160a01b0316613a98565b34801561119157600080fd5b506105ba613aaa565b3480156111a657600080fd5b50610593600480360360208110156111bd57600080fd5b50356001600160a01b0316613ab9565b3480156111d957600080fd5b50610555600480360360208110156111f057600080fd5b50356001600160a01b0316613b62565b34801561120c57600080fd5b506105936004803603602081101561122357600080fd5b50356001600160a01b0316613b77565b34801561123f57600080fd5b506105936004803603602081101561125657600080fd5b50356001600160a01b0316613b89565b601c546001600160a01b031633146112af5760405162461bcd60e51b815260040180806020018281038252602a815260200180614a2a602a913960400191505060405180910390fd5b601c546112c79030906001600160a01b031683613b9b565b336000908152600160205260408120546112ed916001600160a01b039091169083613d30565b6001600160a01b0382166000908152600b6020526040902054611316908263ffffffff613e9916565b6001600160a01b0383166000818152600b6020908152604080832094909455600e815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526007602052604090205461146a576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b3360009081526007602052604090205442116114cd576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526019602052604090205460ff166114f757336000908152600d602052604090204290555b336000908152601960209081526040808320805460ff19166001179055600a909152902054600c5461152e9163ffffffff613ebe16565b600c55336000908152600a6020908152604080832054600b9092529091205461155c9163ffffffff613ebe16565b336000908152600b6020908152604080832093909355600a8152828220829055600f905220546115d857336000818152600f60205260408120429055601b805460018101825591527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b03191690911790555b336000818152600b602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601e546001600160a01b031681565b60116020526000908152604090205481565b6001600160a01b03841660009081526019602052604081205460ff16801561169257506001600160a01b0385166000908152600b60205260409020548411155b80156116b557506001600160a01b03851660009081526011602052604090205483105b80156116ea57506001600160a01b0385166000908152600d602052604090205482906116e890429063ffffffff613e9916565b115b95945050505050565b60405180806147fa604091396040019050604051809103902081565b601d546001600160a01b031633146117585760405162461bcd60e51b815260040180806020018281038252603b815260200180614576603b913960400191505060405180910390fd5b601d54601c80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600460209081526040808320338085529252822054919290919082148015906117b657506000198114155b1561184d5760006117e8856040518060600160405280603981526020016146356039913984919063ffffffff613f1816565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b611858868686613b9b565b50600195945050505050565b611877426212750063ffffffff613ebe16565b33600090815260086020908152604080832093909355600b905220546118a3908263ffffffff613e9916565b336000908152600b60209081526040808320939093556009905220546118cf908263ffffffff613ebe16565b33600090815260096020526040902055600c546118f2908263ffffffff613e9916565b600c553360009081526001602052604081205461191b916001600160a01b039091169083613d30565b336000818152600860209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b03811660009081526019602052604090205460ff166119c45760405162461bcd60e51b81526004018080602001828103825260238152602001806145316023913960400191505060405180910390fd5b6001600160a01b0381166000908152600f602052604090205442906119f29062093a8063ffffffff613ebe16565b10611a44576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600b6020526040812054611a839061271090611a77906101f463ffffffff613faf16565b9063ffffffff61400816565b6001600160a01b0383166000908152600b6020526040902054909150611aaf908263ffffffff613e9916565b6001600160a01b038084166000908152600b60209081526040808320949094553382526001905291822054611ae79291169083613d30565b611af2303383613b9b565b6001600160a01b0382166000818152600f6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060496146e582396049019050604051809103902081565b601281565b60106020526000908152604090205481565b60196020526000908152604090205460ff1681565b33600090815260086020526040902054611bf5576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611c425760405162461bcd60e51b8152600401808060200182810382526021815260200180614aa56021913960400191505060405180910390fd5b336000908152600e602052604090205460ff1615611c915760405162461bcd60e51b81526004018080602001828103825260228152602001806149596022913960400191505060405180910390fd5b33600081815260096020526040902054611cac913091613b9b565b3360008181526009602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a233600090815260096020526040812055565b60126020526000908152604090205460ff1681565b611d2e338261404a565b50565b600c5481565b600a6020526000908152604090205481565b3360009081526012602052604090205460ff16611d975760405162461bcd60e51b815260040180806020018281038252602f815260200180614a76602f913960400191505060405180910390fd5b42600f6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611dfb816040518060600160405280603381526020016149f76033913933600090815260136020526040902054919063ffffffff613f1816565b336000908152601360209081526040808320939093556001600160a01b0385168252600b90522054611e33908263ffffffff613ebe16565b6001600160a01b038084166000908152600b60209081526040808320949094556001905291822054611e6792911683613d30565b6001600160a01b038216600090815260116020526040902054611e90908263ffffffff613ebe16565b6001600160a01b0383166000818152601160209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601960205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601c546001600160a01b03163314611f635760405162461bcd60e51b815260040180806020018281038252602c8152602001806148b1602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600e6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b33600090815260166020526040902054612037576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b3360009081526016602052604090205442116120845760405162461bcd60e51b81526004018080602001828103825260228152602001806145546022913960400191505060405180910390fd5b33600090815260146020908152604080832054601e546001600160a01b0316808552600584528285205483516318160ddd60e01b81529351929590949093612125936318160ddd92600480840193919291829003018186803b1580156120e957600080fd5b505afa1580156120fd573d6000803e3d6000fd5b505050506040513d602081101561211357600080fd5b5051611a77848663ffffffff613faf16565b336000908152601560209081526040808320546001600160a01b031680845260139092529091205491925090821115612176576001600160a01b0381166000908152601360205260408120556121a1565b6001600160a01b03811660009081526013602052604090205461219f908363ffffffff613e9916565b505b601e546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156121f557600080fd5b505af1158015612209573d6000803e3d6000fd5b505050506040513d602081101561221f57600080fd5b5050336000818152601460209081526040808320839055601582529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601c546001600160a01b031681565b6122b4426212750063ffffffff613ebe16565b336000818152601660209081526040808320949094556015815283822054601482529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611d2e3382614147565b6212750081565b6015602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526019602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b601c546001600160a01b031633146123e75760405162461bcd60e51b815260040180806020018281038252602a815260200180614a2a602a913960400191505060405180910390fd5b6001600160a01b0381166000908152601960209081526040808320805460ff19908116909155601a835281842080549091166001179055600b909152902054611d2e908290611266565b6001600160a01b03811660009081526018602052604090205461249b576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b0381166000908152601860205260409020544211612507576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601e546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b8152915190946125b29390926318160ddd9260048083019392829003018186803b15801561255c57600080fd5b505afa158015612570573d6000803e3d6000fd5b505050506040513d602081101561258657600080fd5b50516001600160a01b038516600090815260146020526040902054611a7790859063ffffffff613faf16565b336000908152601560209081526040808320546001600160a01b0316835260139091529020549091506125eb908263ffffffff613ebe16565b336000908152601560209081526040808320546001600160a01b031683526013909152902055505050565b60176020526000908152604090205481565b60004382106126685760405162461bcd60e51b81526004018080602001828103825260238152602001806149366023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680612696576000915050611403565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310612705576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050611403565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015612740576000915050611403565b600060001982015b8163ffffffff168163ffffffff1611156127f957600282820363ffffffff160481036127726144e7565b506001600160a01b038716600090815260026020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156127d4576020015194506114039350505050565b805163ffffffff168711156127eb578193506127f2565b6001820392505b5050612748565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601c546001600160a01b0316331461288b5760405162461bcd60e51b815260040180806020018281038252603281526020018061487f6032913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60166020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600a6020526040902054156129765760405162461bcd60e51b815260040180806020018281038252602281526020018061485d6022913960400191505060405180910390fd5b336000908152601a602052604090205460ff16156129c55760405162461bcd60e51b815260040180806020018281038252602381526020018061483a6023913960400191505060405180910390fd5b6129d8426203f48063ffffffff613ebe16565b33600081815260076020908152604080832094909455600a905291909120829055612a04903083613b9b565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601c546001600160a01b03163314612ab5576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601c54611d2e906001600160a01b0316826141c7565b6000612ad8338484613b9b565b50600192915050565b601c546001600160a01b03163314612b2a5760405162461bcd60e51b815260040180806020018281038252602e81526020018061497b602e913960400191505060405180910390fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601560205260409020546001600160a01b031615612bcb5760405162461bcd60e51b81526004018080602001828103825260428152602001806147b86042913960600191505060405180910390fd5b601e54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612c2557600080fd5b505af1158015612c39573d6000803e3d6000fd5b505050506040513d6020811015612c4f57600080fd5b50503360009081526014602090815260408083208490556015909152902080546001600160a01b0319166001600160a01b038416179055612c934262015180613ebe565b336000908152601860209081526040808320939093556001600160a01b038516825260129052205460ff16158015612ce257506001600160a01b03821660009081526017602052604090205442115b15612d9057601c546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612d3657600080fd5b505af1158015612d4a573d6000803e3d6000fd5b505050506040513d6020811015612d6057600080fd5b50612d769050426212750063ffffffff613ebe16565b6001600160a01b0383166000908152601760205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205460ff1681565b6060601b805480602002602001604051908101604052809291908181526020018280548015612e4957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612e2b575b5050505050905090565b60186020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff1680612e90576000612ec2565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601e546001600160a01b031615612f115760405162461bcd60e51b8152600401808060200182810382526023815260200180614ac66023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015612f6057600080fd5b505af1158015612f74573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b158015612fe457600080fd5b505af1158015612ff8573d6000803e3d6000fd5b505050506040513d602081101561300e57600080fd5b506130249050306815af1d78b58c4000006141c7565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b1580156130bf57600080fd5b505afa1580156130d3573d6000803e3d6000fd5b505050506040513d60208110156130e957600080fd5b5051600080336131014261070863ffffffff613ebe16565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b15801561319e57600080fd5b505af11580156131b2573d6000803e3d6000fd5b505050506040513d60608110156131c857600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b15801561321557600080fd5b505afa158015613229573d6000803e3d6000fd5b505050506040513d602081101561323f57600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b1580156132a357600080fd5b505afa1580156132b7573d6000803e3d6000fd5b505050506040513d60208110156132cd57600080fd5b5051601e80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b600060405180806147fa60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661335961425d565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061460160349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015613497573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134e95760405162461bcd60e51b8152600401808060200182810382526022815260200180614a546022913960400191505060405180910390fd5b6001600160a01b0381166000908152600660205260409020805460018101909155891461355d576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b8742111561359c5760405162461bcd60e51b81526004018080602001828103825260228152602001806149a96022913960400191505060405180910390fd5b6135a6818b614147565b505050505b505050505050565b601c546001600160a01b031633146135fc5760405162461bcd60e51b815260040180806020018281038252602c8152602001806149cb602c913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600f6020526000908152604090205481565b600060405180806147fa60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66136d461425d565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806146e560499139604080519182900360490182206001600160a01b03808e16600081815260066020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa15801561383c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138a4576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613903576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b87421115613958576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60146020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600d6020526000908152604090205481565b60405180603461460182396034019050604051809103902081565b61271081565b601b8181548110613a3f57fe5b6000918252602090912001546001600160a01b0316905081565b60096020526000908152604090205481565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601d546001600160a01b031681565b601c546000906001600160a01b03163314613b055760405162461bcd60e51b815260040180806020018281038252602c81526020018061472e602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600e6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b601a6020526000908152604090205460ff1681565b600b6020526000908152604090205481565b60136020526000908152604090205481565b6001600160a01b038316613be05760405162461bcd60e51b81526004018080602001828103825260388152602001806148fe6038913960400191505060405180910390fd5b6001600160a01b038216613c255760405162461bcd60e51b81526004018080602001828103825260368152602001806147826036913960400191505060405180910390fd5b613c68816040518060600160405280603281526020016144ff603291396001600160a01b038616600090815260056020526040902054919063ffffffff613f1816565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613cd4816040518060600160405280602c81526020016145b1602c91396001600160a01b038516600090815260056020526040902054919063ffffffff61426116565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b816001600160a01b0316836001600160a01b031614158015613d525750600081115b15613e94576001600160a01b03831615613e05576001600160a01b03831660009081526003602052604081205463ffffffff169081613d92576000613dc4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613df38460405180606001604052806024815260200161466e6024913984919063ffffffff613f1816565b9050613e01868484846142bf565b5050505b6001600160a01b03821615613e94576001600160a01b03821660009081526003602052604081205463ffffffff169081613e40576000613e72565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613e86828563ffffffff613ebe16565b90506135ab858484846142bf565b505050565b6000612ec2838360405180606001604052806028815260200161475a60289139613f18565b600082820183811015612ec2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115613fa75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f6c578181015183820152602001613f54565b50505050905090810190601f168015613f995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082613fbe57506000611403565b82820282848281613fcb57fe5b0414612ec25760405162461bcd60e51b81526004018080602001828103825260218152602001806148dd6021913960400191505060405180910390fd5b6000612ec283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614424565b6001600160a01b03821661408f5760405162461bcd60e51b81526004018080602001828103825260238152602001806146926023913960400191505060405180910390fd5b6140d2816040518060600160405280602481526020016145dd602491396001600160a01b038516600090815260056020526040902054919063ffffffff613f1816565b6001600160a01b038316600090815260056020526040812091909155546140ff908263ffffffff613e9916565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600b845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46141c1828483613d30565b50505050565b6000546141da908263ffffffff613ebe16565b60009081556001600160a01b038316815260056020526040902054614205908263ffffffff613ebe16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b600083830182858210156142b65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b50949350505050565b60006142e3436040518060600160405280603081526020016146b560309139614489565b905060008463ffffffff1611801561432c57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15614369576001600160a01b038516600090815260026020908152604080832063ffffffff600019890116845290915290206001018290556143da565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836144735760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b50600083858161447f57fe5b0495945050505050565b60008164010000000084106144df5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a206b656570657220697320626c61636b6c69737465644b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212206d118fce3712cd8baded04a67153e2ae697b48e54186405980b2252f9945aef464736f6c63430006060033

Deployed Bytecode

0x6080604052600436106104525760003560e01c80637724ff681161023f578063ba0bba4011610139578063ec342ad0116100b6578063f39c38a01161007a578063f39c38a014611185578063f75f9f7b1461119a578063f9f92be4146111cd578063fe10d77414611200578063fe5ff4681461123357610452565b8063ec342ad014611081578063ec4515dd14611096578063ef43e281146110c0578063f1127ed8146110f3578063f1896b541461115257610452565b8063d505accf116100fd578063d505accf14610f6d578063dbd9426714610fcb578063dd62ed3e14610ffe578063e326ac4314611039578063e7a324dc1461106c57610452565b8063ba0bba4014610e96578063c1c1d21814610e9e578063c3cda52014610eb3578063c5198abc14610f07578063d454019d14610f3a57610452565b8063a0712d68116101c7578063aec758c01161018b578063aec758c014610d5f578063b0103b1a14610d98578063b105e39f14610dcb578063b24ae47714610e30578063b4b5ea5714610e6357610452565b8063a0712d6814610c81578063a9059cbb14610cab578063ab033ea914610ce4578063abbb247f14610d17578063ad5c464814610d4a57610452565b806393f6c2ad1161020e57806393f6c2ad14610be5578063950a2ca214610c1857806395d89b4114610c2d578063985348bf14610c425780639940686e14610c5757610452565b80637724ff6814610b13578063782d6fe114610b465780637ecebe0014610b7f5780638071198914610bb257610452565b806342966c68116103505780635aa6e675116102d85780636ba42aaa1161029c5780636ba42aaa146109fb5780636fcfff4514610a2e57806370a0823114610a7a57806374a8f10314610aad57806375d2762914610ae057610452565b80635aa6e675146109565780635bff0cd11461096b5780635c19a95c14610980578063603b4d14146109b357806365119f72146109c857610452565b806351b42b001161031f57806351b42b00146108b1578063541bcb76146108c657806355ea6c47146108db578063587cde1e1461090e57806359e9e2551461094157610452565b806342966c681461080657806344d96e95146108305780634a5c8de8146108455780634b3fde211461087857610452565b8063238efcbc116103de578063313ce567116103a2578063313ce5671461072d57806336df7ea5146107585780633bbd64bc1461078b5780633ccfd60b146107be5780633d1f0bb9146107d357610452565b8063238efcbc1461066357806323b872dd1461067857806327de9e32146106bb578063284cc0a9146106e557806330adf81f1461071857610452565b806318160ddd1161042557806318160ddd1461057e5780631a686502146105a55780631b44555e146105d65780631ff5f3da1461060957806320606b701461064e57610452565b806302fb4d851461045757806306fdde0314610492578063095ea7b31461051c5780630f15f4c014610569575b600080fd5b34801561046357600080fd5b506104906004803603604081101561047a57600080fd5b506001600160a01b038135169060200135611266565b005b34801561049e57600080fd5b506104a7611380565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104e15781810151838201526020016104c9565b50505050905090810190601f16801561050e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561052857600080fd5b506105556004803603604081101561053f57600080fd5b506001600160a01b0381351690602001356113a2565b604080519115158252519081900360200190f35b34801561057557600080fd5b50610490611409565b34801561058a57600080fd5b5061059361162b565b60408051918252519081900360200190f35b3480156105b157600080fd5b506105ba611631565b604080516001600160a01b039092168252519081900360200190f35b3480156105e257600080fd5b50610593600480360360208110156105f957600080fd5b50356001600160a01b0316611640565b34801561061557600080fd5b506105556004803603608081101561062c57600080fd5b506001600160a01b038135169060208101359060408101359060600135611652565b34801561065a57600080fd5b506105936116f3565b34801561066f57600080fd5b5061049061170f565b34801561068457600080fd5b506105556004803603606081101561069b57600080fd5b506001600160a01b0381358116916020810135909116906040013561177c565b3480156106c757600080fd5b50610490600480360360208110156106de57600080fd5b5035611864565b3480156106f157600080fd5b506104906004803603602081101561070857600080fd5b50356001600160a01b031661196d565b34801561072457600080fd5b50610593611b4d565b34801561073957600080fd5b50610742611b68565b6040805160ff9092168252519081900360200190f35b34801561076457600080fd5b506105936004803603602081101561077b57600080fd5b50356001600160a01b0316611b6d565b34801561079757600080fd5b50610555600480360360208110156107ae57600080fd5b50356001600160a01b0316611b7f565b3480156107ca57600080fd5b50610490611b94565b3480156107df57600080fd5b50610555600480360360208110156107f657600080fd5b50356001600160a01b0316611d0f565b34801561081257600080fd5b506104906004803603602081101561082957600080fd5b5035611d24565b34801561083c57600080fd5b50610593611d31565b34801561085157600080fd5b506105936004803603602081101561086857600080fd5b50356001600160a01b0316611d37565b34801561088457600080fd5b506104906004803603604081101561089b57600080fd5b506001600160a01b038135169060200135611d49565b3480156108bd57600080fd5b50610490611ee9565b3480156108d257600080fd5b506105ba611f02565b3480156108e757600080fd5b50610490600480360360208110156108fe57600080fd5b50356001600160a01b0316611f1a565b34801561091a57600080fd5b506105ba6004803603602081101561093157600080fd5b50356001600160a01b0316611fbb565b34801561094d57600080fd5b50610490611fd6565b34801561096257600080fd5b506105ba612292565b34801561097757600080fd5b506104906122a1565b34801561098c57600080fd5b50610490600480360360208110156109a357600080fd5b50356001600160a01b0316612321565b3480156109bf57600080fd5b5061059361232b565b3480156109d457600080fd5b506105ba600480360360208110156109eb57600080fd5b50356001600160a01b0316612332565b348015610a0757600080fd5b5061055560048036036020811015610a1e57600080fd5b50356001600160a01b031661234d565b348015610a3a57600080fd5b50610a6160048036036020811015610a5157600080fd5b50356001600160a01b031661236b565b6040805163ffffffff9092168252519081900360200190f35b348015610a8657600080fd5b5061059360048036036020811015610a9d57600080fd5b50356001600160a01b0316612383565b348015610ab957600080fd5b5061049060048036036020811015610ad057600080fd5b50356001600160a01b031661239e565b348015610aec57600080fd5b5061049060048036036020811015610b0357600080fd5b50356001600160a01b0316612431565b348015610b1f57600080fd5b5061059360048036036020811015610b3657600080fd5b50356001600160a01b0316612616565b348015610b5257600080fd5b5061059360048036036040811015610b6957600080fd5b506001600160a01b038135169060200135612628565b348015610b8b57600080fd5b5061059360048036036020811015610ba257600080fd5b50356001600160a01b0316612830565b348015610bbe57600080fd5b5061049060048036036020811015610bd557600080fd5b50356001600160a01b0316612842565b348015610bf157600080fd5b5061059360048036036020811015610c0857600080fd5b50356001600160a01b03166128ec565b348015610c2457600080fd5b506105936128fe565b348015610c3957600080fd5b506104a7612904565b348015610c4e57600080fd5b50610593612923565b348015610c6357600080fd5b5061049060048036036020811015610c7a57600080fd5b503561292a565b348015610c8d57600080fd5b5061049060048036036020811015610ca457600080fd5b5035612a56565b348015610cb757600080fd5b5061055560048036036040811015610cce57600080fd5b506001600160a01b038135169060200135612acb565b348015610cf057600080fd5b5061049060048036036020811015610d0757600080fd5b50356001600160a01b0316612ae1565b348015610d2357600080fd5b5061059360048036036020811015610d3a57600080fd5b50356001600160a01b0316612b4c565b348015610d5657600080fd5b506105ba612b5e565b348015610d6b57600080fd5b5061049060048036036040811015610d8257600080fd5b506001600160a01b038135169060200135612b76565b348015610da457600080fd5b5061055560048036036020811015610dbb57600080fd5b50356001600160a01b0316612ddc565b348015610dd757600080fd5b50610de0612df1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e1c578181015183820152602001610e04565b505050509050019250505060405180910390f35b348015610e3c57600080fd5b5061059360048036036020811015610e5357600080fd5b50356001600160a01b0316612e53565b348015610e6f57600080fd5b5061059360048036036020811015610e8657600080fd5b50356001600160a01b0316612e65565b610490612ec9565b348015610eaa57600080fd5b506105936132f0565b348015610ebf57600080fd5b50610490600480360360c0811015610ed657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356132f7565b348015610f1357600080fd5b5061049060048036036020811015610f2a57600080fd5b50356001600160a01b03166135b3565b348015610f4657600080fd5b5061059360048036036020811015610f5d57600080fd5b50356001600160a01b0316613660565b348015610f7957600080fd5b50610490600480360360e0811015610f9057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613672565b348015610fd757600080fd5b5061059360048036036020811015610fee57600080fd5b50356001600160a01b03166139c2565b34801561100a57600080fd5b506105936004803603604081101561102157600080fd5b506001600160a01b03813581169160200135166139d4565b34801561104557600080fd5b506105936004803603602081101561105c57600080fd5b50356001600160a01b03166139ff565b34801561107857600080fd5b50610593613a11565b34801561108d57600080fd5b50610593613a2c565b3480156110a257600080fd5b506105ba600480360360208110156110b957600080fd5b5035613a32565b3480156110cc57600080fd5b50610593600480360360208110156110e357600080fd5b50356001600160a01b0316613a59565b3480156110ff57600080fd5b506111326004803603604081101561111657600080fd5b5080356001600160a01b0316906020013563ffffffff16613a6b565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561115e57600080fd5b506105936004803603602081101561117557600080fd5b50356001600160a01b0316613a98565b34801561119157600080fd5b506105ba613aaa565b3480156111a657600080fd5b50610593600480360360208110156111bd57600080fd5b50356001600160a01b0316613ab9565b3480156111d957600080fd5b50610555600480360360208110156111f057600080fd5b50356001600160a01b0316613b62565b34801561120c57600080fd5b506105936004803603602081101561122357600080fd5b50356001600160a01b0316613b77565b34801561123f57600080fd5b506105936004803603602081101561125657600080fd5b50356001600160a01b0316613b89565b601c546001600160a01b031633146112af5760405162461bcd60e51b815260040180806020018281038252602a815260200180614a2a602a913960400191505060405180910390fd5b601c546112c79030906001600160a01b031683613b9b565b336000908152600160205260408120546112ed916001600160a01b039091169083613d30565b6001600160a01b0382166000908152600b6020526040902054611316908263ffffffff613e9916565b6001600160a01b0383166000818152600b6020908152604080832094909455600e815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526007602052604090205461146a576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b3360009081526007602052604090205442116114cd576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526019602052604090205460ff166114f757336000908152600d602052604090204290555b336000908152601960209081526040808320805460ff19166001179055600a909152902054600c5461152e9163ffffffff613ebe16565b600c55336000908152600a6020908152604080832054600b9092529091205461155c9163ffffffff613ebe16565b336000908152600b6020908152604080832093909355600a8152828220829055600f905220546115d857336000818152600f60205260408120429055601b805460018101825591527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b03191690911790555b336000818152600b602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601e546001600160a01b031681565b60116020526000908152604090205481565b6001600160a01b03841660009081526019602052604081205460ff16801561169257506001600160a01b0385166000908152600b60205260409020548411155b80156116b557506001600160a01b03851660009081526011602052604090205483105b80156116ea57506001600160a01b0385166000908152600d602052604090205482906116e890429063ffffffff613e9916565b115b95945050505050565b60405180806147fa604091396040019050604051809103902081565b601d546001600160a01b031633146117585760405162461bcd60e51b815260040180806020018281038252603b815260200180614576603b913960400191505060405180910390fd5b601d54601c80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600460209081526040808320338085529252822054919290919082148015906117b657506000198114155b1561184d5760006117e8856040518060600160405280603981526020016146356039913984919063ffffffff613f1816565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b611858868686613b9b565b50600195945050505050565b611877426212750063ffffffff613ebe16565b33600090815260086020908152604080832093909355600b905220546118a3908263ffffffff613e9916565b336000908152600b60209081526040808320939093556009905220546118cf908263ffffffff613ebe16565b33600090815260096020526040902055600c546118f2908263ffffffff613e9916565b600c553360009081526001602052604081205461191b916001600160a01b039091169083613d30565b336000818152600860209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b03811660009081526019602052604090205460ff166119c45760405162461bcd60e51b81526004018080602001828103825260238152602001806145316023913960400191505060405180910390fd5b6001600160a01b0381166000908152600f602052604090205442906119f29062093a8063ffffffff613ebe16565b10611a44576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600b6020526040812054611a839061271090611a77906101f463ffffffff613faf16565b9063ffffffff61400816565b6001600160a01b0383166000908152600b6020526040902054909150611aaf908263ffffffff613e9916565b6001600160a01b038084166000908152600b60209081526040808320949094553382526001905291822054611ae79291169083613d30565b611af2303383613b9b565b6001600160a01b0382166000818152600f6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060496146e582396049019050604051809103902081565b601281565b60106020526000908152604090205481565b60196020526000908152604090205460ff1681565b33600090815260086020526040902054611bf5576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611c425760405162461bcd60e51b8152600401808060200182810382526021815260200180614aa56021913960400191505060405180910390fd5b336000908152600e602052604090205460ff1615611c915760405162461bcd60e51b81526004018080602001828103825260228152602001806149596022913960400191505060405180910390fd5b33600081815260096020526040902054611cac913091613b9b565b3360008181526009602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a233600090815260096020526040812055565b60126020526000908152604090205460ff1681565b611d2e338261404a565b50565b600c5481565b600a6020526000908152604090205481565b3360009081526012602052604090205460ff16611d975760405162461bcd60e51b815260040180806020018281038252602f815260200180614a76602f913960400191505060405180910390fd5b42600f6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611dfb816040518060600160405280603381526020016149f76033913933600090815260136020526040902054919063ffffffff613f1816565b336000908152601360209081526040808320939093556001600160a01b0385168252600b90522054611e33908263ffffffff613ebe16565b6001600160a01b038084166000908152600b60209081526040808320949094556001905291822054611e6792911683613d30565b6001600160a01b038216600090815260116020526040902054611e90908263ffffffff613ebe16565b6001600160a01b0383166000818152601160209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601960205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601c546001600160a01b03163314611f635760405162461bcd60e51b815260040180806020018281038252602c8152602001806148b1602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600e6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b33600090815260166020526040902054612037576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b3360009081526016602052604090205442116120845760405162461bcd60e51b81526004018080602001828103825260228152602001806145546022913960400191505060405180910390fd5b33600090815260146020908152604080832054601e546001600160a01b0316808552600584528285205483516318160ddd60e01b81529351929590949093612125936318160ddd92600480840193919291829003018186803b1580156120e957600080fd5b505afa1580156120fd573d6000803e3d6000fd5b505050506040513d602081101561211357600080fd5b5051611a77848663ffffffff613faf16565b336000908152601560209081526040808320546001600160a01b031680845260139092529091205491925090821115612176576001600160a01b0381166000908152601360205260408120556121a1565b6001600160a01b03811660009081526013602052604090205461219f908363ffffffff613e9916565b505b601e546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156121f557600080fd5b505af1158015612209573d6000803e3d6000fd5b505050506040513d602081101561221f57600080fd5b5050336000818152601460209081526040808320839055601582529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601c546001600160a01b031681565b6122b4426212750063ffffffff613ebe16565b336000818152601660209081526040808320949094556015815283822054601482529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611d2e3382614147565b6212750081565b6015602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526019602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b601c546001600160a01b031633146123e75760405162461bcd60e51b815260040180806020018281038252602a815260200180614a2a602a913960400191505060405180910390fd5b6001600160a01b0381166000908152601960209081526040808320805460ff19908116909155601a835281842080549091166001179055600b909152902054611d2e908290611266565b6001600160a01b03811660009081526018602052604090205461249b576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b0381166000908152601860205260409020544211612507576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601e546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b8152915190946125b29390926318160ddd9260048083019392829003018186803b15801561255c57600080fd5b505afa158015612570573d6000803e3d6000fd5b505050506040513d602081101561258657600080fd5b50516001600160a01b038516600090815260146020526040902054611a7790859063ffffffff613faf16565b336000908152601560209081526040808320546001600160a01b0316835260139091529020549091506125eb908263ffffffff613ebe16565b336000908152601560209081526040808320546001600160a01b031683526013909152902055505050565b60176020526000908152604090205481565b60004382106126685760405162461bcd60e51b81526004018080602001828103825260238152602001806149366023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680612696576000915050611403565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310612705576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050611403565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015612740576000915050611403565b600060001982015b8163ffffffff168163ffffffff1611156127f957600282820363ffffffff160481036127726144e7565b506001600160a01b038716600090815260026020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156127d4576020015194506114039350505050565b805163ffffffff168711156127eb578193506127f2565b6001820392505b5050612748565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601c546001600160a01b0316331461288b5760405162461bcd60e51b815260040180806020018281038252603281526020018061487f6032913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60166020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600a6020526040902054156129765760405162461bcd60e51b815260040180806020018281038252602281526020018061485d6022913960400191505060405180910390fd5b336000908152601a602052604090205460ff16156129c55760405162461bcd60e51b815260040180806020018281038252602381526020018061483a6023913960400191505060405180910390fd5b6129d8426203f48063ffffffff613ebe16565b33600081815260076020908152604080832094909455600a905291909120829055612a04903083613b9b565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601c546001600160a01b03163314612ab5576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601c54611d2e906001600160a01b0316826141c7565b6000612ad8338484613b9b565b50600192915050565b601c546001600160a01b03163314612b2a5760405162461bcd60e51b815260040180806020018281038252602e81526020018061497b602e913960400191505060405180910390fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601560205260409020546001600160a01b031615612bcb5760405162461bcd60e51b81526004018080602001828103825260428152602001806147b86042913960600191505060405180910390fd5b601e54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612c2557600080fd5b505af1158015612c39573d6000803e3d6000fd5b505050506040513d6020811015612c4f57600080fd5b50503360009081526014602090815260408083208490556015909152902080546001600160a01b0319166001600160a01b038416179055612c934262015180613ebe565b336000908152601860209081526040808320939093556001600160a01b038516825260129052205460ff16158015612ce257506001600160a01b03821660009081526017602052604090205442115b15612d9057601c546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612d3657600080fd5b505af1158015612d4a573d6000803e3d6000fd5b505050506040513d6020811015612d6057600080fd5b50612d769050426212750063ffffffff613ebe16565b6001600160a01b0383166000908152601760205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205460ff1681565b6060601b805480602002602001604051908101604052809291908181526020018280548015612e4957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612e2b575b5050505050905090565b60186020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff1680612e90576000612ec2565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601e546001600160a01b031615612f115760405162461bcd60e51b8152600401808060200182810382526023815260200180614ac66023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015612f6057600080fd5b505af1158015612f74573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b158015612fe457600080fd5b505af1158015612ff8573d6000803e3d6000fd5b505050506040513d602081101561300e57600080fd5b506130249050306815af1d78b58c4000006141c7565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b1580156130bf57600080fd5b505afa1580156130d3573d6000803e3d6000fd5b505050506040513d60208110156130e957600080fd5b5051600080336131014261070863ffffffff613ebe16565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b15801561319e57600080fd5b505af11580156131b2573d6000803e3d6000fd5b505050506040513d60608110156131c857600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b15801561321557600080fd5b505afa158015613229573d6000803e3d6000fd5b505050506040513d602081101561323f57600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b1580156132a357600080fd5b505afa1580156132b7573d6000803e3d6000fd5b505050506040513d60208110156132cd57600080fd5b5051601e80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b600060405180806147fa60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661335961425d565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061460160349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015613497573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134e95760405162461bcd60e51b8152600401808060200182810382526022815260200180614a546022913960400191505060405180910390fd5b6001600160a01b0381166000908152600660205260409020805460018101909155891461355d576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b8742111561359c5760405162461bcd60e51b81526004018080602001828103825260228152602001806149a96022913960400191505060405180910390fd5b6135a6818b614147565b505050505b505050505050565b601c546001600160a01b031633146135fc5760405162461bcd60e51b815260040180806020018281038252602c8152602001806149cb602c913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600f6020526000908152604090205481565b600060405180806147fa60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66136d461425d565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806146e560499139604080519182900360490182206001600160a01b03808e16600081815260066020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa15801561383c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138a4576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613903576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b87421115613958576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60146020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600d6020526000908152604090205481565b60405180603461460182396034019050604051809103902081565b61271081565b601b8181548110613a3f57fe5b6000918252602090912001546001600160a01b0316905081565b60096020526000908152604090205481565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601d546001600160a01b031681565b601c546000906001600160a01b03163314613b055760405162461bcd60e51b815260040180806020018281038252602c81526020018061472e602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600e6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b601a6020526000908152604090205460ff1681565b600b6020526000908152604090205481565b60136020526000908152604090205481565b6001600160a01b038316613be05760405162461bcd60e51b81526004018080602001828103825260388152602001806148fe6038913960400191505060405180910390fd5b6001600160a01b038216613c255760405162461bcd60e51b81526004018080602001828103825260368152602001806147826036913960400191505060405180910390fd5b613c68816040518060600160405280603281526020016144ff603291396001600160a01b038616600090815260056020526040902054919063ffffffff613f1816565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613cd4816040518060600160405280602c81526020016145b1602c91396001600160a01b038516600090815260056020526040902054919063ffffffff61426116565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b816001600160a01b0316836001600160a01b031614158015613d525750600081115b15613e94576001600160a01b03831615613e05576001600160a01b03831660009081526003602052604081205463ffffffff169081613d92576000613dc4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613df38460405180606001604052806024815260200161466e6024913984919063ffffffff613f1816565b9050613e01868484846142bf565b5050505b6001600160a01b03821615613e94576001600160a01b03821660009081526003602052604081205463ffffffff169081613e40576000613e72565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613e86828563ffffffff613ebe16565b90506135ab858484846142bf565b505050565b6000612ec2838360405180606001604052806028815260200161475a60289139613f18565b600082820183811015612ec2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115613fa75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f6c578181015183820152602001613f54565b50505050905090810190601f168015613f995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082613fbe57506000611403565b82820282848281613fcb57fe5b0414612ec25760405162461bcd60e51b81526004018080602001828103825260218152602001806148dd6021913960400191505060405180910390fd5b6000612ec283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614424565b6001600160a01b03821661408f5760405162461bcd60e51b81526004018080602001828103825260238152602001806146926023913960400191505060405180910390fd5b6140d2816040518060600160405280602481526020016145dd602491396001600160a01b038516600090815260056020526040902054919063ffffffff613f1816565b6001600160a01b038316600090815260056020526040812091909155546140ff908263ffffffff613e9916565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600b845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46141c1828483613d30565b50505050565b6000546141da908263ffffffff613ebe16565b60009081556001600160a01b038316815260056020526040902054614205908263ffffffff613ebe16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b600083830182858210156142b65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b50949350505050565b60006142e3436040518060600160405280603081526020016146b560309139614489565b905060008463ffffffff1611801561432c57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15614369576001600160a01b038516600090815260026020908152604080832063ffffffff600019890116845290915290206001018290556143da565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836144735760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b50600083858161447f57fe5b0495945050505050565b60008164010000000084106144df5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f6c578181015183820152602001613f54565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a206b656570657220697320626c61636b6c69737465644b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212206d118fce3712cd8baded04a67153e2ae697b48e54186405980b2252f9945aef464736f6c63430006060033

Deployed Bytecode Sourcemap

7742:30547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;32364:436:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32364:436:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;32364:436:0;;;;;;;;:::i;:::-;;8117:38;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8117:38: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;8117:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34480:205;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34480:205:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;34480:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29010:727;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29010:727:0;;;:::i;8415:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8415:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;20520:28;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20520:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;20520:28:0;;;;;;;;;;;;;;19183:45;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19183:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19183:45:0;-1:-1:-1;;;;;19183:45:0;;:::i;27966:299::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27966:299:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;27966:299:0;;;;;;;;;;;;;;;;;;:::i;9030:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9030:119:0;;;:::i;27240:200::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27240:200:0;;;:::i;37026:571::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37026:571:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;37026:571:0;;;;;;;;;;;;;;;;;:::i;30070:444::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30070:444:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30070:444:0;;:::i;31230:556::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31230:556:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31230:556:0;-1:-1:-1;;;;;31230:556:0;;:::i;9444:128::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9444:128:0;;;:::i;8316:35::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8316:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19078:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19078:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19078:36:0;-1:-1:-1;;;;;19078:36:0;;:::i;20034:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20034:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20034:39:0;-1:-1:-1;;;;;20034:39:0;;:::i;30600:512::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30600:512:0;;;:::i;19302:36::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19302:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19302:36:0;-1:-1:-1;;;;;19302:36:0;;:::i;24487:80::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24487:80:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24487:80:0;;:::i;18660:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18660:27:0;;;:::i;18456:44::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18456:44:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18456:44:0;-1:-1:-1;;;;;18456:44:0;;:::i;25416:551::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25416:551:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25416:551:0;;;;;;;;:::i;29849:77::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29849:77:0;;;:::i;7977:81::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7977:81:0;;;:::i;33336:229::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33336:229:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33336:229:0;-1:-1:-1;;;;;33336:229:0;;:::i;8516:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8516:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8516:45:0;-1:-1:-1;;;;;8516:45:0;;:::i;23319:849::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23319:849:0;;;:::i;20376:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20376:25:0;;;:::i;23004:226::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23004:226:0;;;:::i;10381:102::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10381:102:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10381:102:0;-1:-1:-1;;;;;10381:102:0;;:::i;17802:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17802:37:0;;;:::i;19645:52::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19645:52:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19645:52:0;-1:-1:-1;;;;;19645:52:0;;:::i;27631:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27631:104:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27631:104:0;-1:-1:-1;;;;;27631:104:0;;:::i;8783:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8783:49:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8783:49:0;-1:-1:-1;;;;;8783:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;36203:108;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36203:108:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36203:108:0;-1:-1:-1;;;;;36203:108:0;;:::i;32954:247::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32954:247:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32954:247:0;-1:-1:-1;;;;;32954:247:0;;:::i;22429:491::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22429:491:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22429:491:0;-1:-1:-1;;;;;22429:491:0;;:::i;19839:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19839:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19839:48:0;-1:-1:-1;;;;;19839:48:0;;:::i;12546:1212::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12546:1212:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12546:1212:0;;;;;;;;:::i;9655:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9655:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9655:39:0;-1:-1:-1;;;;;9655:39:0;;:::i;26519:232::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26519:232:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26519:232:0;-1:-1:-1;;;;;26519:232:0;;:::i;19746:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19746:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19746:50:0;-1:-1:-1;;;;;19746:50:0;;:::i;18005:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18005:40:0;;;:::i;8216:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8216:37:0;;;:::i;17908:38::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17908:38:0;;;:::i;28350:449::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28350:449:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28350:449:0;;:::i;24322:157::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24322:157:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24322:157:0;;:::i;36572:147::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36572:147:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;36572:147:0;;;;;;;;:::i;26916:197::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26916:197:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26916:197:0;-1:-1:-1;;;;;26916:197:0;;:::i;18247:42::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18247:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18247:42:0;-1:-1:-1;;;;;18247:42:0;;:::i;7849:78::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7849:78:0;;;:::i;21616:664::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21616:664:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21616:664:0;;;;;;;;:::i;18861:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18861:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18861:40:0;-1:-1:-1;;;;;18861:40:0;;:::i;28807:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28807:99: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;28807:99:0;;;;;;;;;;;;;;;;;19932:48;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19932:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19932:48:0;-1:-1:-1;;;;;19932:48:0;;:::i;11895:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11895:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11895:220:0;-1:-1:-1;;;;;11895:220:0;;:::i;20708:654::-;;;:::i;17690:34::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17690:34:0;;;:::i;10917:777::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10917:777:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;10917:777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26128:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26128:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26128:220:0;-1:-1:-1;;;;;26128:220:0;;:::i;18966:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18966:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18966:39:0;-1:-1:-1;;;;;18966:39:0;;:::i;35172:828::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35172:828:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;35172:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19505:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19505:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19505:50:0;-1:-1:-1;;;;;19505:50:0;;:::i;33869:136::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33869:136:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33869:136:0;;;;;;;;;;:::i;18753:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18753:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18753:41:0;-1:-1:-1;;;;;18753:41:0;;:::i;9243:111::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9243:111:0;;;:::i;18052:33::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18052:33:0;;;:::i;20276:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20276:27:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20276:27:0;;:::i;18342:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18342:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18342:48:0;-1:-1:-1;;;;;18342:48:0;;:::i;8644:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8644:70:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8644:70:0;;-1:-1:-1;;;;;8644:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;18146:40;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18146:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18146:40:0;-1:-1:-1;;;;;18146:40:0;;:::i;20408:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20408:32:0;;;:::i;31930:242::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31930:242:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31930:242:0;-1:-1:-1;;;;;31930:242:0;;:::i;20145:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20145:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20145:41:0;-1:-1:-1;;;;;20145:41:0;;:::i;18560:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18560:37:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18560:37:0;-1:-1:-1;;;;;18560:37:0;;:::i;19401:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19401:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19401:39:0;-1:-1:-1;;;;;19401:39:0;;:::i;32364:436::-;32448:10;;-1:-1:-1;;;;;32448:10:0;32434;:24;32426:79;;;;-1:-1:-1;;;32426:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32547:10;;32516:50;;32540:4;;-1:-1:-1;;;;;32547:10:0;32559:6;32516:15;:50::i;:::-;32602:10;32592:21;;;;:9;:21;;;;;;32577:57;;-1:-1:-1;;;;;32592:21:0;;;;32627:6;32577:14;:57::i;:::-;-1:-1:-1;;;;;32661:13:0;;;;;;:5;:13;;;;;;:25;;32679:6;32661:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;32645:13:0;;;;;;:5;:13;;;;;;;;:41;;;;32697:8;:16;;;;;;:24;;-1:-1:-1;;32697:24:0;;;32737:55;;32771:12;32737:55;;;;;;;;;;32759:10;;32737:55;;;;;;;;32364:436;;:::o;8117:38::-;;;;;;;;;;;;;;-1:-1:-1;;;8117:38:0;;;;:::o;34480:205::-;34571:10;34543:4;34560:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;34560:31:0;;;;;;;;;;;:40;;;34618:37;;;;;;;34543:4;;34560:31;;34571:10;;34618:37;;;;;;;;-1:-1:-1;34673:4:0;34480:205;;;;;:::o;29010:727::-;29067:10;29058:20;;;;:8;:20;;;;;;29050:66;;;;;-1:-1:-1;;;29050:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29144:10;29135:20;;;;:8;:20;;;;;;29158:3;-1:-1:-1;29127:70:0;;;;;-1:-1:-1;;;29127:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29221:10;29213:19;;;;:7;:19;;;;;;;;29208:78;;29257:10;29247:21;;;;:9;:21;;;;;29271:3;29247:27;;29208:78;29304:10;29296:19;;;;:7;:19;;;;;;;;:26;;-1:-1:-1;;29296:26:0;29318:4;29296:26;;;29363:12;:24;;;;;;29347:11;;:41;;;:15;:41;:::i;:::-;29333:11;:55;29454:10;29441:24;;;;:12;:24;;;;;;;;;29419:5;:17;;;;;;;:47;;;:21;:47;:::i;:::-;29405:10;29399:17;;;;:5;:17;;;;;;;;:67;;;;29477:12;:24;;;;;:28;;;29520:7;:19;;;;29516:124;;29569:10;29561:19;;;;:7;:19;;;;;29583:3;29561:25;;29601:10;27::-1;;39:1;23:18;;45:23;;29601:27:0;;;;;;-1:-1:-1;;;;;;29601:27:0;;;;;;29516:124;29668:10;29711:17;;;;:5;:17;;;;;;;;;;29655:74;;29680:12;29655:74;;29694:15;29655:74;;;;;;;;;;;;;;;;;;;;;;29010:727::o;8415:27::-;;;;:::o;20520:28::-;;;-1:-1:-1;;;;;20520:28:0;;:::o;19183:45::-;;;;;;;;;;;;;:::o;27966:299::-;-1:-1:-1;;;;;28090:15:0;;28066:4;28090:15;;;:7;:15;;;;;;;;:60;;;;-1:-1:-1;;;;;;28126:13:0;;;;;;:5;:13;;;;;;:24;-1:-1:-1;28126:24:0;28090:60;:114;;;;-1:-1:-1;;;;;;28171:21:0;;;;;;:13;:21;;;;;;:33;-1:-1:-1;28090:114:0;:167;;;;-1:-1:-1;;;;;;28233:17:0;;;;;;:9;:17;;;;;;28254:3;;28225:26;;:3;;:26;:7;:26;:::i;:::-;:32;28090:167;28083:174;27966:299;-1:-1:-1;;;;;27966:299:0:o;9030:119::-;9072:77;;;;;;;;;;;;;;;;;;;9030:119;:::o;27240:200::-;27310:17;;-1:-1:-1;;;;;27310:17:0;27296:10;:31;27288:103;;;;-1:-1:-1;;;27288:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27415:17;;27402:10;:30;;-1:-1:-1;;;;;;27402:30:0;-1:-1:-1;;;;;27415:17:0;;;27402:30;;;;;;27240:200::o;37026:571::-;-1:-1:-1;;;;;37185:15:0;;37105:4;37185:15;;;:10;:15;;;;;;;;37140:10;37185:24;;;;;;;;37105:4;;37140:10;;37185:24;37226:14;;;;;:46;;;-1:-1:-1;;37244:16:0;:28;;37226:46;37222:300;;;37289:17;37309:89;37330:6;37309:89;;;;;;;;;;;;;;;;;:16;;:89;;:20;:89;:::i;:::-;-1:-1:-1;;;;;37413:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;37474:36;;;;;;;37289:109;;-1:-1:-1;37413:24:0;;:15;;37474:36;;;;;;;;;37222:300;;37534:33;37550:3;37555;37560:6;37534:15;:33::i;:::-;-1:-1:-1;37585:4:0;;37026:571;-1:-1:-1;;;;;37026:571:0:o;30070:444::-;30144:15;:3;17832:7;30144:15;:7;:15;:::i;:::-;30130:10;30119:22;;;;:10;:22;;;;;;;;:40;;;;30190:5;:17;;;;:29;;30212:6;30190:29;:21;:29;:::i;:::-;30176:10;30170:17;;;;:5;:17;;;;;;;;:49;;;;30261:16;:28;;;;:40;;30294:6;30261:40;:32;:40;:::i;:::-;30247:10;30230:28;;;;:16;:28;;;;;:71;30326:11;;:23;;30342:6;30326:23;:15;:23;:::i;:::-;30312:11;:37;30385:10;30375:21;;;;:9;:21;;;;;;30360:57;;-1:-1:-1;;;;;30375:21:0;;;;30410:6;30360:14;:57::i;:::-;30449:10;30475:22;;;;:10;:22;;;;;;;;;;30433:73;;30461:12;30433:73;;;;;;;;;;;;;;;;;;;;;;;30070:444;:::o;31230:556::-;-1:-1:-1;;;;;31288:15:0;;;;;;:7;:15;;;;;;;;31280:63;;;;-1:-1:-1;;;31280:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31362:15:0;;;;;;:7;:15;;;;;;31394:3;;31362:29;;17940:6;31362:29;:19;:29;:::i;:::-;:35;31354:73;;;;;-1:-1:-1;;;31354:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31452:13:0;;31438:11;31452:13;;;:5;:13;;;;;;:42;;18080:5;;31452:32;;18042:3;31452:32;:17;:32;:::i;:::-;:36;:42;:36;:42;:::i;:::-;-1:-1:-1;;;;;31521:13:0;;;;;;:5;:13;;;;;;31438:56;;-1:-1:-1;31521:25:0;;31438:56;31521:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;31505:13:0;;;;;;;:5;:13;;;;;;;;:41;;;;31582:10;31572:21;;:9;:21;;;;;;31557:57;;31572:21;;;31607:6;31557:14;:57::i;:::-;31625:50;31649:4;31656:10;31668:6;31625:15;:50::i;:::-;-1:-1:-1;;;;;31686:15:0;;;;;;:7;:15;;;;;;;;;31704:3;31686:21;;31723:55;;31757:12;31723:55;;;;;;;;;;31745:10;;31686:15;31723:55;;;;;;;;31230:556;;:::o;9444:128::-;9486:86;;;;;;;;;;;;;;;;;;9444:128;:::o;8316:35::-;8349:2;8316:35;:::o;19078:36::-;;;;;;;;;;;;;:::o;20034:39::-;;;;;;;;;;;;;;;:::o;30600:512::-;30659:10;30648:22;;;;:10;:22;;;;;;30640:70;;;;;-1:-1:-1;;;30640:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30740:10;30729:22;;;;:10;:22;;;;;;30754:3;-1:-1:-1;30721:74:0;;;;-1:-1:-1;;;30721:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30824:10;30815:20;;;;:8;:20;;;;;;;;30814:21;30806:68;;;;-1:-1:-1;;;30806:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30918:10;30930:28;;;;:16;:28;;;;;;30887:72;;30911:4;;30887:15;:72::i;:::-;30989:10;31032:28;;;;:16;:28;;;;;;;;;;30975:86;;31001:12;30975:86;;31015:15;30975:86;;;;;;;;;;;;;;;;;;;;;;31089:10;31103:1;31072:28;;;:16;:28;;;;;:32;30600:512::o;19302:36::-;;;;;;;;;;;;;;;:::o;24487:80::-;24534:25;24540:10;24552:6;24534:5;:25::i;:::-;24487:80;:::o;18660:27::-;;;;:::o;18456:44::-;;;;;;;;;;;;;:::o;25416:551::-;25499:10;25494:16;;;;:4;:16;;;;;;;;25486:76;;;;-1:-1:-1;;;25486:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25591:3;25573:7;:15;25581:6;-1:-1:-1;;;;;25573:15:0;-1:-1:-1;;;;;25573:15:0;;;;;;;;;;;;:21;;;;25627:86;25651:6;25627:86;;;;;;;;;;;;;;;;;25635:10;25627:19;;;;:7;:19;;;;;;;:86;;:23;:86;:::i;:::-;25613:10;25605:19;;;;:7;:19;;;;;;;;:108;;;;-1:-1:-1;;;;;25740:13:0;;;;:5;:13;;;;:25;;25758:6;25740:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;25724:13:0;;;;;;;:5;:13;;;;;;;;:41;;;;25803:9;:17;;;;;;25776:53;;25724:13;25803:17;25822:6;25776:14;:53::i;:::-;-1:-1:-1;;;;;25864:21:0;;;;;;:13;:21;;;;;;:33;;25890:6;25864:33;:25;:33;:::i;:::-;-1:-1:-1;;;;;25840:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;25913:46;;25946:12;25913:46;;;;25840:21;;25926:10;;25913:46;;;;;;;;;;25416:551;;:::o;29849:77::-;29899:10;29913:5;29891:19;;;:7;:19;;;;;:27;;-1:-1:-1;;29891:27:0;;;29849:77::o;7977:81::-;8015:42;7977:81;:::o;33336:229::-;33411:10;;-1:-1:-1;;;;;33411:10:0;33397;:24;33389:81;;;;-1:-1:-1;;;33389:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33481:16:0;;33500:5;33481:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;33481:24:0;;;33521:36;;33544:12;33521:36;;;;;;;;;;;;;;33336:229;:::o;8516:45::-;;;;;;;;;;;;-1:-1:-1;;;;;8516:45:0;;:::o;23319:849::-;23400:10;23381:30;;;;:18;:30;;;;;;23373:79;;;;;-1:-1:-1;;;23373:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23490:10;23471:30;;;;:18;:30;;;;;;23504:3;-1:-1:-1;23463:83:0;;;;-1:-1:-1;;;23463:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23593:10;23557:14;23574:30;;;:18;:30;;;;;;;;;23650:9;;-1:-1:-1;;;;;23650:9:0;23633:28;;;:8;:28;;;;;;23717:23;;-1:-1:-1;;;23717:23:0;;;;23574:30;;23633:28;;23557:14;;23687:54;;23717:21;;:23;;;;;23574:30;;23717:23;;;;;;23650:9;23717:23;;;2:2:-1;;;;27:1;24;17:12;2:2;23717:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23717:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23717:23:0;23687:25;:10;23702:9;23687:25;:14;:25;:::i;:54::-;23785:10;23752:12;23767:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;23767:29:0;23821:13;;;:7;:13;;;;;;;23672:69;;-1:-1:-1;23767:29:0;23811:23;;23807:132;;;-1:-1:-1;;;;;23851:13:0;;23867:1;23851:13;;;:7;:13;;;;;:17;23807:132;;;-1:-1:-1;;;;;23901:13:0;;;;;;:7;:13;;;;;;:26;;23919:7;23901:26;:17;:26;:::i;:::-;;23807:132;23949:9;;:41;;;-1:-1:-1;;;23949:41:0;;23968:10;23949:41;;;;;;;;;;;;-1:-1:-1;;;;;23949:9:0;;;;:18;;:41;;;;;;;;;;;;;;;:9;;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;23949:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23949:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;24020:10:0;24034:1;24001:30;;;:18;23949:41;24001:30;;;;;;;:34;;;24046:17;:29;;;;;;:44;;-1:-1:-1;;;;;;24046:44:0;;;24108:52;;24136:12;24108:52;;;;;;;;;;-1:-1:-1;;;;;24108:52:0;;;;;;;;;;;23319:849;;;;:::o;20376:25::-;;;-1:-1:-1;;;;;20376:25:0;;:::o;23004:226::-;23091:15;:3;17832:7;23091:15;:7;:15;:::i;:::-;23077:10;23058:30;;;;:18;:30;;;;;;;;:48;;;;23134:17;:29;;;;;;23191:18;:30;;;;;;;23124:98;;23177:12;23124:98;;;;;;;;23077:10;;-1:-1:-1;;;;;23134:29:0;;;;23124:98;;;;;;;;;;;23004:226::o;10381:102::-;10443:32;10453:10;10465:9;10443;:32::i;17802:37::-;17832:7;17802:37;:::o;19645:52::-;;;;;;;;;;;;-1:-1:-1;;;;;19645:52:0;;:::o;27631:104::-;-1:-1:-1;;;;;27712:15:0;27688:4;27712:15;;;:7;:15;;;;;;;;;27631:104::o;8783:49::-;;;;;;;;;;;;;;;:::o;36203:108::-;-1:-1:-1;;;;;36286:17:0;36262:4;36286:17;;;:8;:17;;;;;;;36203:108::o;32954:247::-;33028:10;;-1:-1:-1;;;;;33028:10:0;33014;:24;33006:79;;;;-1:-1:-1;;;33006:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33096:15:0;;33114:5;33096:15;;;:7;:15;;;;;;;;:23;;-1:-1:-1;;33096:23:0;;;;;;33130:9;:17;;;;;:24;;;;;33096:23;33130:24;;;33179:5;:13;;;;;;33165:28;;33104:6;;33165:5;:28::i;22429:491::-;-1:-1:-1;;;;;22501:26:0;;;;;;:16;:26;;;;;;22493:75;;;;;-1:-1:-1;;;22493:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22587:26:0;;;;;;:16;:26;;;;;;22616:3;-1:-1:-1;22579:74:0;;;;;-1:-1:-1;;;22579:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22699:9;;-1:-1:-1;;;;;22699:9:0;22664:15;22682:28;;;:8;:28;;;;;;;;;22785:23;;-1:-1:-1;;;22785:23:0;;;;22682:28;;22736:73;;22699:9;;22785:21;;:23;;;;;22682:28;22785:23;;;;;22699:9;22785:23;;;2:2:-1;;;;27:1;24;17:12;2:2;22785:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22785:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22785:23:0;-1:-1:-1;;;;;22751:28:0;;;;;;:18;22785:23;22751:28;;;;;22736:44;;:10;;:44;:14;:44;:::i;:73::-;22887:10;22861:38;22869:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;22869:29:0;22861:38;;:7;:38;;;;;;22721:88;;-1:-1:-1;22861:51:0;;22721:88;22861:51;:42;:51;:::i;:::-;22846:10;22820:38;22828:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;22828:29:0;22820:38;;:7;:38;;;;;:92;-1:-1:-1;;;22429:491:0:o;19839:48::-;;;;;;;;;;;;;:::o;12546:1212::-;12625:4;12664:12;12650:11;:26;12642:74;;;;-1:-1:-1;;;12642:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12751:23:0;;12729:19;12751:23;;;:14;:23;;;;;;;;12789:17;12785:58;;12830:1;12823:8;;;;;12785:58;-1:-1:-1;;;;;12903:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12924:16:0;;12903:38;;;;;;;;;:48;;:63;-1:-1:-1;12899:147:0;;-1:-1:-1;;;;;12990:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;13011:16:0;;;;12990:38;;;;;;;;13026:1;12990:44;;;-1:-1:-1;12983:51:0;;12899:147;-1:-1:-1;;;;;13107:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;13103:88:0;;;13178:1;13171:8;;;;;13103:88;13203:12;-1:-1:-1;;13245:16:0;;13272:428;13287:5;13279:13;;:5;:13;;;13272:428;;;13351:1;13334:13;;;13333:19;;;13325:27;;13394:20;;:::i;:::-;-1:-1:-1;;;;;;13417:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13394:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13464:27;;13460:229;;;13519:8;;;;-1:-1:-1;13512:15:0;;-1:-1:-1;;;;13512:15:0;13460:229;13553:12;;:26;;;-1:-1:-1;13549:140:0;;;13608:6;13600:14;;13549:140;;;13672:1;13663:6;:10;13655:18;;13549:140;13272:428;;;;;-1:-1:-1;;;;;;13717:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;12546:1212:0;;;;:::o;9655:39::-;;;;;;;;;;;;;:::o;26519:232::-;26593:10;;-1:-1:-1;;;;;26593:10:0;26579;:24;26571:87;;;;-1:-1:-1;;;26571:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26669:9:0;;26681:5;26669:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;26669:17:0;;;26702:41;;26718:12;26702:41;;26732:10;26702:41;;;;;;;;;;;;;;;;;;;;26519:232;:::o;19746:50::-;;;;;;;;;;;;;:::o;18005:40::-;18042:3;18005:40;:::o;8216:37::-;;;;;;;;;;;;;;-1:-1:-1;;;8216:37:0;;;;:::o;17908:38::-;17940:6;17908:38;:::o;28350:449::-;28418:10;28405:24;;;;:12;:24;;;;;;:29;28397:76;;;;-1:-1:-1;;;28397:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28503:10;28493:21;;;;:9;:21;;;;;;;;28492:22;28484:70;;;;-1:-1:-1;;;28484:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28588:13;:3;17718:6;28588:13;:7;:13;:::i;:::-;28574:10;28565:20;;;;:8;:20;;;;;;;;:36;;;;28612:12;:24;;;;;;:33;;;28656:50;;28692:4;28639:6;28656:15;:50::i;:::-;28736:10;28762:20;;;;:8;:20;;;;;;;;;;28722:69;;28748:12;28722:69;;;;;;;;;;;;;;;;;;;;;;;28350:449;:::o;24322:157::-;24391:10;;-1:-1:-1;;;;;24391:10:0;24377;:24;24369:66;;;;;-1:-1:-1;;;24369:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24452:10;;24446:25;;-1:-1:-1;;;;;24452:10:0;24464:6;24446:5;:25::i;36572:147::-;36632:4;36649:40;36665:10;36677:3;36682:6;36649:15;:40::i;:::-;-1:-1:-1;36707:4:0;36572:147;;;;:::o;26916:197::-;27002:10;;-1:-1:-1;;;;;27002:10:0;26988;:24;26980:83;;;;-1:-1:-1;;;26980:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27074:17;:31;;-1:-1:-1;;;;;;27074:31:0;-1:-1:-1;;;;;27074:31:0;;;;;;;;;;26916:197::o;18247:42::-;;;;;;;;;;;;;:::o;7849:78::-;7884:42;7849:78;:::o;21616:664::-;21715:10;21736:3;21697:29;;;:17;:29;;;;;;-1:-1:-1;;;;;21697:29:0;:43;21689:122;;;;-1:-1:-1;;;21689:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21822:9;;:57;;;-1:-1:-1;;;21822:57:0;;21845:10;21822:57;;;;21865:4;21822:57;;;;;;;;;;;;-1:-1:-1;;;;;21822:9:0;;;;:22;;:57;;;;;;;;;;;;;;;:9;;:57;;;2:2:-1;;;;27:1;24;17:12;2:2;21822:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21822:57:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;21909:10:0;21890:30;;;;:18;21822:57;21890:30;;;;;;;:39;;;21940:17;:29;;;;;:35;;-1:-1:-1;;;;;;21940:35:0;-1:-1:-1;;;;;21940:35:0;;;;;22017:15;:3;22025:6;22017:7;:15::i;:::-;22003:10;21986:28;;;;:16;:28;;;;;;;;:46;;;;-1:-1:-1;;;;;22048:9:0;;;;:4;:9;;;;;;22047:10;:41;;;;-1:-1:-1;;;;;;22061:21:0;;;;;;:16;:21;;;;;;22085:3;-1:-1:-1;22047:41:0;22043:166;;;22116:10;;22105:38;;;-1:-1:-1;;;22105:38:0;;-1:-1:-1;;;;;22105:38:0;;;;;;;;;22116:10;;;;;22105:33;;:38;;;;;;;;;;;;;;22116:10;;22105:38;;;2:2:-1;;;;27:1;24;17:12;2:2;22105:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22105:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22182:15:0;;-1:-1:-1;22182:3:0;17832:7;22182:15;:7;:15;:::i;:::-;-1:-1:-1;;;;;22158:21:0;;;;;;:16;:21;;;;;:39;22043:166;22224:48;;;22251:12;22224:48;;;;;;;;;;22239:10;;-1:-1:-1;;;;;22224:48:0;;;;;;;;;;;;;;21616:664;;:::o;18861:40::-;;;;;;;;;;;;;;;:::o;28807:99::-;28852:16;28888:10;28881:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28881:17:0;;;;;;;;;;;;;;;;;;;;;;;28807:99;:::o;19932:48::-;;;;;;;;;;;;;:::o;11895:220::-;-1:-1:-1;;;;;11999:23:0;;11960:4;11999:23;;;:14;:23;;;;;;;;12040:16;:67;;12106:1;12040:67;;;-1:-1:-1;;;;;12059:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12080:16:0;;12059:38;;;;;;;;12095:1;12059:44;;12040:67;12033:74;11895:220;-1:-1:-1;;;11895:220:0:o;20708:654::-;20767:9;;-1:-1:-1;;;;;20767:9:0;20759:34;20751:82;;;;-1:-1:-1;;;20751:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7884:42;-1:-1:-1;;;;;20844:12:0;;20863:9;20844:31;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20844:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;20886:37:0;;;-1:-1:-1;;;20886:37:0;;8015:42;20886:37;;;;20913:9;20886:37;;;;;;7884:42;;-1:-1:-1;20886:12:0;;-1:-1:-1;20886:37:0;;;;;-1:-1:-1;20886:37:0;;;;;;;-1:-1:-1;7884:42:0;20886:37;;;2:2:-1;;;;27:1;24;17:12;2:2;20886:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20886:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20934:28:0;;-1:-1:-1;20948:4:0;20955:6;20934:5;:28::i;:::-;21032:4;21015:23;;;;:8;:23;;;;;;;;;20973:10;:25;;;;;;8015:42;20973:39;;;;;;;;;:65;;;21170:23;;;;;;;21195:29;;-1:-1:-1;;;21195:29:0;;;;;;;;;;8015:42;;21123:16;;21032:4;;7884:42;;;;21195:14;;:29;;;;;21015:23;21195:29;;;;;;7884:42;21195:29;;;2:2:-1;;;;27:1;24;17:12;2:2;21195:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21195:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21195:29:0;21226:1;;21232:10;21244:13;:3;21252:4;21244:13;:7;:13;:::i;:::-;21123:135;;;;;;;;;;;;;-1:-1:-1;;;;;21123:135:0;-1:-1:-1;;;;;21123:135:0;;;;;;-1:-1:-1;;;;;21123:135:0;-1:-1:-1;;;;;21123:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21123:135:0;-1:-1:-1;;;;;21123:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21123:135:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21123:135:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;21123:135:0;21301:13;;-1:-1:-1;;;21301:13:0;;;;8015:42;;21301:11;;:13;;;;;21123:135;;21301:13;;;;;;;8015:42;21301:13;;;2:2:-1;;;;27:1;24;17:12;2:2;21301:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21301:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21301:13:0;21293:60;;;-1:-1:-1;;;21293:60:0;;21332:4;21293:60;;;;7884:42;21293:60;;;;;;-1:-1:-1;;;;;21293:30:0;;;;;;:60;;;;;21301:13;;21293:60;;;;;;;;:30;:60;;;2:2:-1;;;;27:1;24;17:12;2:2;21293:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21293:60:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21293:60:0;21269:9;:85;;-1:-1:-1;;;;;;21269:85:0;-1:-1:-1;;;;;21269:85:0;;;;;;;;;20708:654::o;17690:34::-;17718:6;17690:34;:::o;10917:777::-;11033:23;9072:77;;;;;;;;;;;;;;;;;;;11113:4;;;;;;;;;-1:-1:-1;;;11113:4:0;;;;;;;;9072:77;-1:-1:-1;11097:22:0;11121:12;:10;:12::i;:::-;11143:4;11069:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11069:80:0;-1:-1:-1;;;;;11069:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11069:80:0;;;11059:91;;;;;;11033:117;;11161:18;9289:65;;;;;;;;;;;;;;;;;;;11192:57;;;;;;;;-1:-1:-1;;;;;11192:57:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11192:57:0;;;;;11182:68;;;;;;-1:-1:-1;;;11288:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11288:57:0;;;;;;11278:68;;;;;;;;;-1:-1:-1;11377:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11182:68;;-1:-1:-1;11278:68:0;;-1:-1:-1;;;11377:26:0;;;;;;;11192:57;-1:-1:-1;;11377:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11377:26:0;;-1:-1:-1;;11377:26:0;;;-1:-1:-1;;;;;;;11422:23:0;;11414:70;;;;-1:-1:-1;;;11414:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11512:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11503:28;;11495:71;;;;;-1:-1:-1;;;11495:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11592:6;11585:3;:13;;11577:60;;;;-1:-1:-1;;;11577:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11655:31;11665:9;11676;11655;:31::i;:::-;11648:38;;;;10917:777;;;;;;;:::o;26128:220::-;26199:10;;-1:-1:-1;;;;;26199:10:0;26185;:24;26177:81;;;;-1:-1:-1;;;26177:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26269:9:0;;;;;;:4;:9;;;;;;;;;:16;;-1:-1:-1;;26269:16:0;26281:4;26269:16;;;26301:39;;26315:12;26301:39;;26329:10;26301:39;;;;;;;;;;;;;;;;;;;;26128:220;:::o;18966:39::-;;;;;;;;;;;;;:::o;35172:828::-;35299:23;9072:77;;;;;;;;;;;;;;;;;;;35379:4;;;;;;;;;-1:-1:-1;;;35379:4:0;;;;;;;;9072:77;-1:-1:-1;35363:22:0;35387:12;:10;:12::i;:::-;35409:4;35335:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35335:80:0;-1:-1:-1;;;;;35335:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;35335:80:0;;;35325:91;;;;;;35299:117;;35427:18;9486:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35510:13:0;;;;;;;:6;:13;;;;;;;:15;;;;;;;;;35458:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35458:78:0;;;;;35448:89;;;;;;-1:-1:-1;;;35575:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35575:57:0;;;;;;35565:68;;;;;;;;;35664:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35448:89;;-1:-1:-1;35565:68:0;;-1:-1:-1;35510:13:0;;:15;;35664:26;;;;;-1:-1:-1;;35664:26:0;;;;;;;;;;;35510:15;35664:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;35664:26:0;;-1:-1:-1;;35664:26:0;;;-1:-1:-1;;;;;;;35709:23:0;;35701:63;;;;;-1:-1:-1;;;35701:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35796:5;-1:-1:-1;;;;;35783:18:0;:9;-1:-1:-1;;;;;35783:18:0;;35775:53;;;;;-1:-1:-1;;;35775:53:0;;;;;;;;;;;;-1:-1:-1;;;35775:53:0;;;;;;;;;;;;;;;35854:8;35847:3;:15;;35839:55;;;;;-1:-1:-1;;;35839:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35907:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;35960:32;;;;;;;;;;;;;;;;;35172:828;;;;;;;;;;;:::o;19505:50::-;;;;;;;;;;;;;:::o;33869:136::-;-1:-1:-1;;;;;33969:19:0;;;33945:4;33969:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;33869:136::o;18753:41::-;;;;;;;;;;;;;:::o;9243:111::-;9289:65;;;;;;;;;;;;;;;;;;9243:111;:::o;18052:33::-;18080:5;18052:33;:::o;20276:27::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20276:27:0;;-1:-1:-1;20276:27:0;:::o;18342:48::-;;;;;;;;;;;;;:::o;8644:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18146:40::-;;;;;;;;;;;;;:::o;20408:32::-;;;-1:-1:-1;;;;;20408:32:0;;:::o;31930:242::-;32020:10;;31981:4;;-1:-1:-1;;;;;32020:10:0;32006;:24;31998:81;;;;-1:-1:-1;;;31998:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32090:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;32090:23:0;32109:4;32090:23;;;32129:35;;32151:12;32129:35;;;;;;;;;;;;;;31930:242;;;:::o;20145:41::-;;;;;;;;;;;;;;;:::o;18560:37::-;;;;;;;;;;;;;:::o;19401:39::-;;;;;;;;;;;;;:::o;37605:523::-;-1:-1:-1;;;;;37697:17:0;;37689:86;;;;-1:-1:-1;;;37689:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37794:17:0;;37786:84;;;;-1:-1:-1;;;37786:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37899:79;37917:6;37899:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37899:13:0;;;;;;:8;:13;;;;;;;:79;;:17;:79;:::i;:::-;37883:8;:13;37892:3;-1:-1:-1;;;;;37883:13:0;-1:-1:-1;;;;;37883:13:0;;;;;;;;;;;;:95;;;;38005:73;38023:6;38005:73;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38005:13:0;;;;;;:8;:13;;;;;;;:73;;:17;:73;:::i;:::-;-1:-1:-1;;;;;37989:13:0;;;;;;;:8;:13;;;;;;;;;:89;;;;38094:26;;;;;;;37989:13;;38094:26;;;;;;;;;;;;;37605:523;;;:::o;14144:876::-;14247:6;-1:-1:-1;;;;;14237:16:0;:6;-1:-1:-1;;;;;14237:16:0;;;:30;;;;;14266:1;14257:6;:10;14237:30;14233:780;;;-1:-1:-1;;;;;14288:20:0;;;14284:371;;-1:-1:-1;;;;;14348:22:0;;14329:16;14348:22;;;:14;:22;;;;;;;;;14406:13;:60;;14465:1;14406:60;;;-1:-1:-1;;;;;14422:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14442:13:0;;14422:34;;;;;;;;14454:1;14422:40;;14406:60;14389:77;;14485:14;14502:61;14516:6;14502:61;;;;;;;;;;;;;;;;;:9;;:61;;:13;:61;:::i;:::-;14485:78;;14582:57;14599:6;14607:9;14618;14629;14582:16;:57::i;:::-;14284:371;;;;-1:-1:-1;;;;;14675:20:0;;;14671:331;;-1:-1:-1;;;;;14735:22:0;;14716:16;14735:22;;;:14;:22;;;;;;;;;14793:13;:60;;14852:1;14793:60;;;-1:-1:-1;;;;;14809:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14829:13:0;;14809:34;;;;;;;;14841:1;14809:40;;14793:60;14776:77;-1:-1:-1;14872:14:0;14889:21;14776:77;14903:6;14889:21;:13;:21;:::i;:::-;14872:38;;14929:57;14946:6;14954:9;14965;14976;14929:16;:57::i;14671:331::-;14144:876;;;:::o;1887:137::-;1939:4;1963:53;1967:1;1970;1963:53;;;;;;;;;;;;;;;;;:3;:53::i;1018:169::-;1070:4;1096:5;;;1120:6;;;;1112:46;;;;;-1:-1:-1;;;1112:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2313:180;2393:4;2426:12;2418:6;;;;2410:29;;;;-1:-1:-1;;;2410: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;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2459:5:0;;;2313:180::o;2736:459::-;2788:4;3030:6;3026:47;;-1:-1:-1;3060:1:0;3053:8;;3026:47;3094:5;;;3098:1;3094;:5;:1;3118:5;;;;;:10;3110:56;;;;-1:-1:-1;;;3110:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370:123;4422:4;4446:39;4450:1;4453;4446:39;;;;;;;;;;;;;;;;;:3;:39::i;24867:323::-;-1:-1:-1;;;;;24936:17:0;;24928:65;;;;-1:-1:-1;;;24928:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25020;25038:6;25020:65;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25020:13:0;;;;;;:8;:13;;;;;;;:65;;:17;:65;:::i;:::-;-1:-1:-1;;;;;25004:13:0;;;;;;:8;:13;;;;;:81;;;;25110:11;:23;;25126:6;25110:23;:15;:23;:::i;:::-;25096:11;:37;;;25149:33;;;;;;;;-1:-1:-1;;;;;25149:33:0;;;;;;;;;;;;;24867:323;;:::o;13766:370::-;-1:-1:-1;;;;;13869:20:0;;;13843:23;13869:20;;;:9;:20;;;;;;;;;;13924:5;:16;;;;;;13951:20;;;;:32;;;-1:-1:-1;;;;;;13951:32:0;;;;;;;14001:54;;13869:20;;;;;13924:16;;13951:32;;13869:20;;;14001:54;;13843:23;14001:54;14068:60;14083:15;14100:9;14111:16;14068:14;:60::i;:::-;13766:370;;;;:::o;24575:284::-;24678:11;;:23;;24694:6;24678:23;:15;:23;:::i;:::-;24664:11;:37;;;-1:-1:-1;;;;;24777:13:0;;;;:8;:13;;;;;;:25;;24795:6;24777:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;24761:13:0;;;;;;:8;:13;;;;;;;;:41;;;;24818:33;;;;;;;24761:13;;;;24818:33;;;;;;;;;;24575:284;;:::o;38136:150::-;38243:9;38136:150;:::o;1438:180::-;1518:4;1544:5;;;1576:12;1568:6;;;;1560:29;;;;-1:-1:-1;;;1560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1560:29:0;-1:-1:-1;1609:1:0;1438:180;-1:-1:-1;;;;1438:180:0:o;15028:621::-;15142:18;15163:72;15170:12;15163:72;;;;;;;;;;;;;;;;;:6;:72::i;:::-;15142:93;;15265:1;15250:12;:16;;;:85;;;;-1:-1:-1;;;;;;15270:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15293:16:0;;15270:40;;;;;;;;;:50;:65;;;:50;;:65;15250:85;15246:329;;;-1:-1:-1;;;;;15350:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;15373:16:0;;15350:40;;;;;;;;15388:1;15350:46;:57;;;15246:329;;;15475:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15436:22:0;;-1:-1:-1;15436:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;15436:72:0;;;;;;;;;;;;;15521:25;;;:14;:25;;;;;;:44;;15549:16;;;15521:44;;;;;;;;;;15246:329;15590:51;;;;;;;;;;;;;;-1:-1:-1;;;;;15590:51:0;;;;;;;;;;;15028:621;;;;;:::o;4981:333::-;5061:4;5160:12;5153:5;5145:28;;;;-1:-1:-1;;;5145:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5145:28:0;;5184:6;5197:1;5193;:5;;;;;;;4981:333;-1:-1:-1;;;;;4981:333:0:o;15657:161::-;15732:6;15770:12;15763:5;15759:9;;15751:32;;;;-1:-1:-1;;;15751:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;15751:32:0;-1:-1:-1;15808:1:0;;15657:161;-1:-1:-1;;15657:161:0:o;7742:30547::-;;;;;;;;;;-1:-1:-1;7742:30547:0;;;;;;;;:::o

Swarm Source

ipfs://6d118fce3712cd8baded04a67153e2ae697b48e54186405980b2252f9945aef4
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.