ETH Price: $3,067.06 (-6.84%)
Gas: 9 Gwei

Token

Keep3r (KPR)
 

Overview

Max Total Supply

10,400 KPR

Holders

152

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.484867756415371989 KPR

Value
$0.00
0x8b2d16de6c99ea66e8d93a256cb3105d6e2a3ad9
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.12+commit.27d51765

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-19
*/

// 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 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 traversable array of keepers to make external management easier
    address[] public keeperList;

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

    /// @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 submitJob(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);
    }

    function credit(address provider, address job) 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[job] = credits[job].add(_credit.mul(2)); // Double liquidity to account for 50:50
    }

    /**
     * @notice Unbond liquidity for a pending keeper job
     */
    function unbondJob() 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 removeJob() 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 Allows keepers to claim for work done
     */
    function claim() external {
        _mint(msg.sender, work[msg.sender]);
        work[msg.sender] = 0;
    }

    /**
     * @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");
        work[keeper] = work[keeper].add(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");
        governance = _governance;
    }

    /**
     * @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");
        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 begin the unbonding process to stop being a keeper
     */
    function unbond() external {
        keepers[msg.sender] = false;
        unbondings[msg.sender] = now.add(UNBOND);
        totalBonded = totalBonded.sub(bonds[msg.sender]);
        _moveDelegates(delegates[msg.sender], address(0), bonds[msg.sender]);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender], bonds[msg.sender]);
    }

    /**
     * @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, bonds[msg.sender]);
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, bonds[msg.sender]);
        bonds[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);
        _mint(msg.sender, 1e18);
        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) external {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        bonds[keeper] = bonds[keeper].sub(amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }

    /**
     * @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":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","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":"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":"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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"credit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","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":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"submitJob","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":[],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unbondJob","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"}]

6080604052600080556000600b553480156200001a57600080fd5b50601a80546001600160a01b03191633908117909155620000469069021e19e0c9bab24000006200004c565b62000156565b6200006881600054620000f460201b620037eb1790919060201c565b60009081556001600160a01b0383168152600560209081526040909120546200009c918390620037eb620000f4821b17901c565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200014f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61462380620001666000396000f3fe60806040526004361061041b5760003560e01c8063782d6fe11161021e578063c1c1d21811610123578063e326ac43116100ab578063f1127ed81161007a578063f1127ed814611034578063f1896b5414611093578063f75f9f7b146110c6578063fe10d774146110f9578063fe5ff4681461112c5761041b565b8063e326ac4314610fad578063e7a324dc14610fe0578063ec342ad014610ff5578063ec4515dd1461100a5761041b565b8063ce0e698d116100f2578063ce0e698d14610e75578063d454019d14610eae578063d505accf14610ee1578063dbd9426714610f3f578063dd62ed3e14610f725761041b565b8063c1c1d21814610d9e578063c3cda52014610db3578063c5198abc14610e07578063cc1f0d2d14610e3a5761041b565b8063a9059cbb116101a6578063b0103b1a11610175578063b0103b1a14610c98578063b105e39f14610ccb578063b24ae47714610d30578063b4b5ea5714610d63578063ba0bba4014610d965761041b565b8063a9059cbb14610be4578063ab033ea914610c1d578063abbb247f14610c50578063ad5c464814610c835761041b565b8063950a2ca2116101ed578063950a2ca214610b5157806395d89b4114610b66578063985348bf14610b7b5780639940686e14610b90578063a0712d6814610bba5761041b565b8063782d6fe114610a7f5780637ecebe0014610ab85780638071198914610aeb57806393f6c2ad14610b1e5761041b565b80633d1f0bb9116103245780635aa6e675116102ac57806365119f721161027b57806365119f72146109675780636ba42aaa1461099a5780636fcfff45146109cd57806370a0823114610a195780637724ff6814610a4c5761041b565b80635aa6e675146108f55780635c19a95c1461090a5780635df6a6bc1461093d578063603b4d14146109525761041b565b80634b3fde21116102f35780634b3fde211461082c5780634e71d92d14610865578063541bcb761461087a57806355ea6c471461088f578063587cde1e146108c25761041b565b80633d1f0bb91461078757806342966c68146107ba57806344d96e95146107e45780634a5c8de8146107f95761041b565b806320606b70116103a7578063313ce56711610376578063313ce567146106cc57806336df7ea5146106f75780633850fef01461072a5780633bbd64bc1461073f5780633ccfd60b146107725761041b565b806320606b701461062c57806323b872dd14610641578063284cc0a91461068457806330adf81f146106b75761041b565b80630f15f4c0116103ee5780630f15f4c01461054757806318160ddd1461055c5780631a686502146105835780631b44555e146105b45780631ff5f3da146105e75761041b565b806302fb4d851461042057806306fdde031461045b578063095ea7b3146104e55780630aa4473114610532575b600080fd5b34801561042c57600080fd5b506104596004803603604081101561044357600080fd5b506001600160a01b03813516906020013561115f565b005b34801561046757600080fd5b50610470611235565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104aa578181015183820152602001610492565b50505050905090810190601f1680156104d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f157600080fd5b5061051e6004803603604081101561050857600080fd5b506001600160a01b038135169060200135611257565b604080519115158252519081900360200190f35b34801561053e57600080fd5b506104596112be565b34801561055357600080fd5b50610459611574565b34801561056857600080fd5b5061057161178a565b60408051918252519081900360200190f35b34801561058f57600080fd5b50610598611790565b604080516001600160a01b039092168252519081900360200190f35b3480156105c057600080fd5b50610571600480360360208110156105d757600080fd5b50356001600160a01b031661179f565b3480156105f357600080fd5b5061051e6004803603608081101561060a57600080fd5b506001600160a01b0381351690602081013590604081013590606001356117b1565b34801561063857600080fd5b5061057161184c565b34801561064d57600080fd5b5061051e6004803603606081101561066457600080fd5b506001600160a01b03813581169160208101359091169060400135611870565b34801561069057600080fd5b50610459600480360360208110156106a757600080fd5b50356001600160a01b0316611952565b3480156106c357600080fd5b50610571611afc565b3480156106d857600080fd5b506106e1611b20565b6040805160ff9092168252519081900360200190f35b34801561070357600080fd5b506105716004803603602081101561071a57600080fd5b50356001600160a01b0316611b25565b34801561073657600080fd5b50610459611b37565b34801561074b57600080fd5b5061051e6004803603602081101561076257600080fd5b50356001600160a01b0316611bb1565b34801561077e57600080fd5b50610459611bc6565b34801561079357600080fd5b5061051e600480360360208110156107aa57600080fd5b50356001600160a01b0316611d41565b3480156107c657600080fd5b50610459600480360360208110156107dd57600080fd5b5035611d56565b3480156107f057600080fd5b50610571611d63565b34801561080557600080fd5b506105716004803603602081101561081c57600080fd5b50356001600160a01b0316611d69565b34801561083857600080fd5b506104596004803603604081101561084f57600080fd5b506001600160a01b038135169060200135611d7b565b34801561087157600080fd5b50610459611ee1565b34801561088657600080fd5b50610598611f0d565b34801561089b57600080fd5b50610459600480360360208110156108b257600080fd5b50356001600160a01b0316611f25565b3480156108ce57600080fd5b50610598600480360360208110156108e557600080fd5b50356001600160a01b0316611fc6565b34801561090157600080fd5b50610598611fe1565b34801561091657600080fd5b506104596004803603602081101561092d57600080fd5b50356001600160a01b0316611ff0565b34801561094957600080fd5b50610459611ffa565b34801561095e57600080fd5b506105716120d7565b34801561097357600080fd5b506105986004803603602081101561098a57600080fd5b50356001600160a01b03166120de565b3480156109a657600080fd5b5061051e600480360360208110156109bd57600080fd5b50356001600160a01b03166120f9565b3480156109d957600080fd5b50610a00600480360360208110156109f057600080fd5b50356001600160a01b0316612117565b6040805163ffffffff9092168252519081900360200190f35b348015610a2557600080fd5b5061057160048036036020811015610a3c57600080fd5b50356001600160a01b031661212f565b348015610a5857600080fd5b5061057160048036036020811015610a6f57600080fd5b50356001600160a01b031661214a565b348015610a8b57600080fd5b5061057160048036036040811015610aa257600080fd5b506001600160a01b03813516906020013561215c565b348015610ac457600080fd5b5061057160048036036020811015610adb57600080fd5b50356001600160a01b0316612364565b348015610af757600080fd5b5061045960048036036020811015610b0e57600080fd5b50356001600160a01b0316612376565b348015610b2a57600080fd5b5061057160048036036020811015610b4157600080fd5b50356001600160a01b0316612420565b348015610b5d57600080fd5b50610571612432565b348015610b7257600080fd5b50610470612438565b348015610b8757600080fd5b50610571612457565b348015610b9c57600080fd5b5061045960048036036020811015610bb357600080fd5b503561245e565b348015610bc657600080fd5b5061045960048036036020811015610bdd57600080fd5b5035612535565b348015610bf057600080fd5b5061051e60048036036040811015610c0757600080fd5b506001600160a01b0381351690602001356125aa565b348015610c2957600080fd5b5061045960048036036020811015610c4057600080fd5b50356001600160a01b03166125c0565b348015610c5c57600080fd5b5061057160048036036020811015610c7357600080fd5b50356001600160a01b031661262b565b348015610c8f57600080fd5b5061059861263d565b348015610ca457600080fd5b5061051e60048036036020811015610cbb57600080fd5b50356001600160a01b0316612655565b348015610cd757600080fd5b50610ce061266a565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610d1c578181015183820152602001610d04565b505050509050019250505060405180910390f35b348015610d3c57600080fd5b5061057160048036036020811015610d5357600080fd5b50356001600160a01b03166126cc565b348015610d6f57600080fd5b5061057160048036036020811015610d8657600080fd5b50356001600160a01b03166126de565b610459612742565b348015610daa57600080fd5b50610571612b48565b348015610dbf57600080fd5b50610459600480360360c0811015610dd657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135612b4f565b348015610e1357600080fd5b5061045960048036036020811015610e2a57600080fd5b50356001600160a01b0316612e08565b348015610e4657600080fd5b5061045960048036036040811015610e5d57600080fd5b506001600160a01b0381358116916020013516612eb5565b348015610e8157600080fd5b5061045960048036036040811015610e9857600080fd5b506001600160a01b038135169060200135613081565b348015610eba57600080fd5b5061057160048036036020811015610ed157600080fd5b50356001600160a01b03166132e1565b348015610eed57600080fd5b50610459600480360360e0811015610f0457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356132f3565b348015610f4b57600080fd5b5061057160048036036020811015610f6257600080fd5b50356001600160a01b031661363f565b348015610f7e57600080fd5b5061057160048036036040811015610f9557600080fd5b506001600160a01b0381358116916020013516613651565b348015610fb957600080fd5b5061057160048036036020811015610fd057600080fd5b50356001600160a01b031661367c565b348015610fec57600080fd5b5061057161368e565b34801561100157600080fd5b506105716136b2565b34801561101657600080fd5b506105986004803603602081101561102d57600080fd5b50356136b8565b34801561104057600080fd5b506110736004803603604081101561105757600080fd5b5080356001600160a01b0316906020013563ffffffff166136df565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561109f57600080fd5b50610571600480360360208110156110b657600080fd5b50356001600160a01b031661370c565b3480156110d257600080fd5b50610571600480360360208110156110e957600080fd5b50356001600160a01b031661371e565b34801561110557600080fd5b506105716004803603602081101561111c57600080fd5b50356001600160a01b03166137c7565b34801561113857600080fd5b506105716004803603602081101561114f57600080fd5b50356001600160a01b03166137d9565b601a546001600160a01b031633146111a85760405162461bcd60e51b815260040180806020018281038252602a81526020018061452f602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600a60205260409020546111cb9082613845565b6001600160a01b0383166000818152600a6020908152604080832094909455600d815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526015602052604090205461131f576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b33600090815260156020526040902054421161136c5760405162461bcd60e51b81526004018080602001828103825260228152602001806141746022913960400191505060405180910390fd5b33600090815260136020908152604080832054601b546001600160a01b0316808552600584528285205483516318160ddd60e01b8152935192959094909361140d936318160ddd92600480840193919291829003018186803b1580156113d157600080fd5b505afa1580156113e5573d6000803e3d6000fd5b505050506040513d60208110156113fb57600080fd5b5051611407848661386a565b906138c3565b336000908152601460209081526040808320546001600160a01b03168084526012909252909120549192509082111561145e576001600160a01b038116600090815260126020526040812055611483565b6001600160a01b0381166000908152601260205260409020546114819083613845565b505b601b546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156114d757600080fd5b505af11580156114eb573d6000803e3d6000fd5b505050506040513d602081101561150157600080fd5b5050336000818152601360209081526040808320839055601482529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b336000908152600760205260409020546115d5576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b336000908152600760205260409020544211611638576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526018602052604090205460ff1661166257336000908152600c602052604090204290555b336000908152601860209081526040808320805460ff191660011790556009909152902054600b54611693916137eb565b600b5533600090815260096020908152604080832054600a909252909120546116bb916137eb565b336000908152600a602090815260408083209390935560098152828220829055600e9052205461173757336000818152600e602052604081204290556019805460018101825591527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b03191690911790555b336000818152600a602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601b546001600160a01b031681565b60106020526000908152604090205481565b6001600160a01b03841660009081526018602052604081205460ff1680156117f157506001600160a01b0385166000908152600a60205260409020548411155b801561181457506001600160a01b03851660009081526010602052604090205483105b801561184357506001600160a01b0385166000908152600c60205260409020548290611841904290613845565b115b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6001600160a01b0383166000818152600460209081526040808320338085529252822054919290919082148015906118aa57506000198114155b1561193b5760006118d6856040518060600160405280603981526020016141e660399139849190613905565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61194686868661399c565b50600195945050505050565b6001600160a01b03811660009081526018602052604090205460ff166119a95760405162461bcd60e51b81526004018080602001828103825260238152602001806141516023913960400191505060405180910390fd5b6001600160a01b0381166000908152600e602052604090205442906119d19062093a806137eb565b10611a23576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600a6020526040812054611a509061271090611407906101f461386a565b6001600160a01b0383166000908152600a6020526040902054909150611a769082613845565b6001600160a01b0383166000908152600a6020526040902055611aa133670de0b6b3a7640000613b25565b6001600160a01b0382166000818152600e6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600f6020526000908152604090205481565b611b4442621275006137eb565b336000818152601560209081526040808320949094556014815283822054601382529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b60186020526000908152604090205460ff1681565b33600090815260086020526040902054611c27576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611c745760405162461bcd60e51b81526004018080602001828103825260218152602001806145aa6021913960400191505060405180910390fd5b336000908152600d602052604090205460ff1615611cc35760405162461bcd60e51b815260040180806020018281038252602281526020018061445e6022913960400191505060405180910390fd5b336000818152600a6020526040902054611cde91309161399c565b336000818152600a602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600a6020526040812055565b60116020526000908152604090205460ff1681565b611d603382613baf565b50565b600b5481565b60096020526000908152604090205481565b3360009081526011602052604090205460ff16611dc95760405162461bcd60e51b815260040180806020018281038252602f81526020018061457b602f913960400191505060405180910390fd5b42600e6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611e27816040518060600160405280603381526020016144fc60339139336000908152601260205260409020549190613905565b336000908152601260209081526040808320939093556001600160a01b0385168252600f90522054611e5990826137eb565b6001600160a01b0383166000908152600f6020908152604080832093909355601090522054611e8890826137eb565b6001600160a01b0383166000818152601060209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000818152600f6020526040902054611efb9190613b25565b336000908152600f6020526040812055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601a546001600160a01b03163314611f6e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806143b6602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600d6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b601a546001600160a01b031681565b611d603382613ca0565b336000908152601860205260409020805460ff1916905561201e42621275006137eb565b33600090815260086020908152604080832093909355600a90522054600b5461204691613845565b600b5533600090815260016020908152604080832054600a90925282205461207a926001600160a01b039092169190613d20565b33600081815260086020908152604080832054600a835292819020548151438152928301939093528181019290925290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a2565b6212750081565b6014602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526018602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b60166020526000908152604090205481565b600043821061219c5760405162461bcd60e51b815260040180806020018281038252602381526020018061443b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff16806121ca5760009150506112b8565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310612239576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff168352929052206001015490506112b8565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff168310156122745760009150506112b8565b600060001982015b8163ffffffff168163ffffffff16111561232d57600282820363ffffffff160481036122a6614107565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612308576020015194506112b89350505050565b805163ffffffff1687111561231f57819350612326565b6001820392505b505061227c565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601a546001600160a01b031633146123bf5760405162461bcd60e51b81526004018080602001828103825260328152602001806143846032913960400191505060405180910390fd5b6001600160a01b038116600081815260116020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60156020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b33600090815260096020526040902054156124aa5760405162461bcd60e51b81526004018080602001828103825260228152602001806143626022913960400191505060405180910390fd5b6124b7426203f4806137eb565b3360008181526007602090815260408083209490945560099052919091208290556124e390308361399c565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601a546001600160a01b03163314612594576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601a54611d60906001600160a01b031682613b25565b60006125b733848461399c565b50600192915050565b601a546001600160a01b031633146126095760405162461bcd60e51b815260040180806020018281038252602e815260200180614480602e913960400191505060405180910390fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600d6020526000908152604090205460ff1681565b606060198054806020026020016040519081016040528092919081815260200182805480156126c257602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116126a4575b5050505050905090565b60176020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff168061270957600061273b565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601b546001600160a01b03161561278a5760405162461bcd60e51b81526004018080602001828103825260238152602001806145cb6023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b15801561285d57600080fd5b505af1158015612871573d6000803e3d6000fd5b505050506040513d602081101561288757600080fd5b5061289d9050306815af1d78b58c400000613b25565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b15801561293857600080fd5b505afa15801561294c573d6000803e3d6000fd5b505050506040513d602081101561296257600080fd5b505160008033612974426107086137eb565b6040518963ffffffff1660e01b815260040180896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b505050506040513d6060811015612a2057600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b158015612a6d57600080fd5b505afa158015612a81573d6000803e3d6000fd5b505050506040513d6020811015612a9757600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b158015612afb57600080fd5b505afa158015612b0f573d6000803e3d6000fd5b505050506040513d6020811015612b2557600080fd5b5051601b80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b60408051808201909152600681526525b2b2b819b960d11b60209091015260007f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf6612bb9613e7d565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015612cec573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612d3e5760405162461bcd60e51b81526004018080602001828103825260228152602001806145596022913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090208054600181019091558914612db2576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b87421115612df15760405162461bcd60e51b81526004018080602001828103825260228152602001806144ae6022913960400191505060405180910390fd5b612dfb818b613ca0565b505050505b505050505050565b601a546001600160a01b03163314612e515760405162461bcd60e51b815260040180806020018281038252602c8152602001806144d0602c913960400191505060405180910390fd5b6001600160a01b038116600081815260116020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b6001600160a01b038216600090815260176020526040902054612f1f576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b0382166000908152601760205260409020544211612f8b576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601b546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b8152915190946130309390926318160ddd9260048083019392829003018186803b158015612fe057600080fd5b505afa158015612ff4573d6000803e3d6000fd5b505050506040513d602081101561300a57600080fd5b50516001600160a01b03861660009081526013602052604090205461140790859061386a565b905061305f61304082600261386a565b6001600160a01b038516600090815260126020526040902054906137eb565b6001600160a01b03909316600090815260126020526040902092909255505050565b336000908152601460205260409020546001600160a01b0316156130d65760405162461bcd60e51b81526004018080602001828103825260428152602001806143206042913960600191505060405180910390fd5b601b54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561313057600080fd5b505af1158015613144573d6000803e3d6000fd5b505050506040513d602081101561315a57600080fd5b50503360009081526013602090815260408083208490556014909152902080546001600160a01b0319166001600160a01b03841617905561319e42620151806137eb565b336000908152601760209081526040808320939093556001600160a01b038516825260119052205460ff161580156131ed57506001600160a01b03821660009081526016602052604090205442115b1561329557601a546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b15801561324157600080fd5b505af1158015613255573d6000803e3d6000fd5b505050506040513d602081101561326b57600080fd5b5061327b905042621275006137eb565b6001600160a01b0383166000908152601660205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205481565b60408051808201909152600681526525b2b2b819b960d11b60209091015260007f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661335d613e7d565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038c8116600081815260068752848120805460018082019092557f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e960c089015260e0880193909352928e1661010087015261012086018d90526101408601919091526101608086018c9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8c1661022288015261024287018b905261026287018a90529451939750959394909391926102828083019392601f198301929081900390910190855afa1580156134b9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613521576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613580576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b874211156135d5576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60136020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600c6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b61271081565b601981815481106136c557fe5b6000918252602090912001546001600160a01b0316905081565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601a546000906001600160a01b0316331461376a5760405162461bcd60e51b815260040180806020018281038252602c815260200180614296602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600d6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b600a6020526000908152604090205481565b60126020526000908152604090205481565b60008282018381101561273b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061273b83836040518060600160405280602881526020016142c260289139613905565b600082613879575060006112b8565b8282028284828161388657fe5b041461273b5760405162461bcd60e51b81526004018080602001828103825260218152602001806143e26021913960400191505060405180910390fd5b600061273b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e81565b600081848411156139945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613959578181015183820152602001613941565b50505050905090810190601f1680156139865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166139e15760405162461bcd60e51b81526004018080602001828103825260388152602001806144036038913960400191505060405180910390fd5b6001600160a01b038216613a265760405162461bcd60e51b81526004018080602001828103825260368152602001806142ea6036913960400191505060405180910390fd5b613a638160405180606001604052806032815260200161411f603291396001600160a01b0386166000908152600560205260409020549190613905565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613ac9816040518060600160405280602c8152602001614196602c91396001600160a01b0385166000908152600560205260409020549190613ee6565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600054613b3290826137eb565b60009081556001600160a01b038316815260056020526040902054613b5790826137eb565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216613bf45760405162461bcd60e51b81526004018080602001828103825260238152602001806142436023913960400191505060405180910390fd5b613c31816040518060600160405280602481526020016141c2602491396001600160a01b0385166000908152600560205260409020549190613905565b6001600160a01b03831660009081526005602052604081209190915554613c589082613845565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600a845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4613d1a828483613d20565b50505050565b816001600160a01b0316836001600160a01b031614158015613d425750600081115b15613e78576001600160a01b03831615613def576001600160a01b03831660009081526003602052604081205463ffffffff169081613d82576000613db4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613ddd8460405180606001604052806024815260200161421f60249139849190613905565b9050613deb86848484613f44565b5050505b6001600160a01b03821615613e78576001600160a01b03821660009081526003602052604081205463ffffffff169081613e2a576000613e5c565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613e6a82856137eb565b9050612e0085848484613f44565b505050565b4690565b60008183613ed05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b506000838581613edc57fe5b0495945050505050565b60008383018285821015613f3b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b50949350505050565b6000613f6843604051806060016040528060308152602001614266603091396140a9565b905060008463ffffffff16118015613fb157506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613fee576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561405f565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106140ff5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e63653a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f76652066697273744b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212202d2f5e4ba81ad403323c8f8f82ade899913daf718f18668602fe7ec1fbe74c0a64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061041b5760003560e01c8063782d6fe11161021e578063c1c1d21811610123578063e326ac43116100ab578063f1127ed81161007a578063f1127ed814611034578063f1896b5414611093578063f75f9f7b146110c6578063fe10d774146110f9578063fe5ff4681461112c5761041b565b8063e326ac4314610fad578063e7a324dc14610fe0578063ec342ad014610ff5578063ec4515dd1461100a5761041b565b8063ce0e698d116100f2578063ce0e698d14610e75578063d454019d14610eae578063d505accf14610ee1578063dbd9426714610f3f578063dd62ed3e14610f725761041b565b8063c1c1d21814610d9e578063c3cda52014610db3578063c5198abc14610e07578063cc1f0d2d14610e3a5761041b565b8063a9059cbb116101a6578063b0103b1a11610175578063b0103b1a14610c98578063b105e39f14610ccb578063b24ae47714610d30578063b4b5ea5714610d63578063ba0bba4014610d965761041b565b8063a9059cbb14610be4578063ab033ea914610c1d578063abbb247f14610c50578063ad5c464814610c835761041b565b8063950a2ca2116101ed578063950a2ca214610b5157806395d89b4114610b66578063985348bf14610b7b5780639940686e14610b90578063a0712d6814610bba5761041b565b8063782d6fe114610a7f5780637ecebe0014610ab85780638071198914610aeb57806393f6c2ad14610b1e5761041b565b80633d1f0bb9116103245780635aa6e675116102ac57806365119f721161027b57806365119f72146109675780636ba42aaa1461099a5780636fcfff45146109cd57806370a0823114610a195780637724ff6814610a4c5761041b565b80635aa6e675146108f55780635c19a95c1461090a5780635df6a6bc1461093d578063603b4d14146109525761041b565b80634b3fde21116102f35780634b3fde211461082c5780634e71d92d14610865578063541bcb761461087a57806355ea6c471461088f578063587cde1e146108c25761041b565b80633d1f0bb91461078757806342966c68146107ba57806344d96e95146107e45780634a5c8de8146107f95761041b565b806320606b70116103a7578063313ce56711610376578063313ce567146106cc57806336df7ea5146106f75780633850fef01461072a5780633bbd64bc1461073f5780633ccfd60b146107725761041b565b806320606b701461062c57806323b872dd14610641578063284cc0a91461068457806330adf81f146106b75761041b565b80630f15f4c0116103ee5780630f15f4c01461054757806318160ddd1461055c5780631a686502146105835780631b44555e146105b45780631ff5f3da146105e75761041b565b806302fb4d851461042057806306fdde031461045b578063095ea7b3146104e55780630aa4473114610532575b600080fd5b34801561042c57600080fd5b506104596004803603604081101561044357600080fd5b506001600160a01b03813516906020013561115f565b005b34801561046757600080fd5b50610470611235565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104aa578181015183820152602001610492565b50505050905090810190601f1680156104d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f157600080fd5b5061051e6004803603604081101561050857600080fd5b506001600160a01b038135169060200135611257565b604080519115158252519081900360200190f35b34801561053e57600080fd5b506104596112be565b34801561055357600080fd5b50610459611574565b34801561056857600080fd5b5061057161178a565b60408051918252519081900360200190f35b34801561058f57600080fd5b50610598611790565b604080516001600160a01b039092168252519081900360200190f35b3480156105c057600080fd5b50610571600480360360208110156105d757600080fd5b50356001600160a01b031661179f565b3480156105f357600080fd5b5061051e6004803603608081101561060a57600080fd5b506001600160a01b0381351690602081013590604081013590606001356117b1565b34801561063857600080fd5b5061057161184c565b34801561064d57600080fd5b5061051e6004803603606081101561066457600080fd5b506001600160a01b03813581169160208101359091169060400135611870565b34801561069057600080fd5b50610459600480360360208110156106a757600080fd5b50356001600160a01b0316611952565b3480156106c357600080fd5b50610571611afc565b3480156106d857600080fd5b506106e1611b20565b6040805160ff9092168252519081900360200190f35b34801561070357600080fd5b506105716004803603602081101561071a57600080fd5b50356001600160a01b0316611b25565b34801561073657600080fd5b50610459611b37565b34801561074b57600080fd5b5061051e6004803603602081101561076257600080fd5b50356001600160a01b0316611bb1565b34801561077e57600080fd5b50610459611bc6565b34801561079357600080fd5b5061051e600480360360208110156107aa57600080fd5b50356001600160a01b0316611d41565b3480156107c657600080fd5b50610459600480360360208110156107dd57600080fd5b5035611d56565b3480156107f057600080fd5b50610571611d63565b34801561080557600080fd5b506105716004803603602081101561081c57600080fd5b50356001600160a01b0316611d69565b34801561083857600080fd5b506104596004803603604081101561084f57600080fd5b506001600160a01b038135169060200135611d7b565b34801561087157600080fd5b50610459611ee1565b34801561088657600080fd5b50610598611f0d565b34801561089b57600080fd5b50610459600480360360208110156108b257600080fd5b50356001600160a01b0316611f25565b3480156108ce57600080fd5b50610598600480360360208110156108e557600080fd5b50356001600160a01b0316611fc6565b34801561090157600080fd5b50610598611fe1565b34801561091657600080fd5b506104596004803603602081101561092d57600080fd5b50356001600160a01b0316611ff0565b34801561094957600080fd5b50610459611ffa565b34801561095e57600080fd5b506105716120d7565b34801561097357600080fd5b506105986004803603602081101561098a57600080fd5b50356001600160a01b03166120de565b3480156109a657600080fd5b5061051e600480360360208110156109bd57600080fd5b50356001600160a01b03166120f9565b3480156109d957600080fd5b50610a00600480360360208110156109f057600080fd5b50356001600160a01b0316612117565b6040805163ffffffff9092168252519081900360200190f35b348015610a2557600080fd5b5061057160048036036020811015610a3c57600080fd5b50356001600160a01b031661212f565b348015610a5857600080fd5b5061057160048036036020811015610a6f57600080fd5b50356001600160a01b031661214a565b348015610a8b57600080fd5b5061057160048036036040811015610aa257600080fd5b506001600160a01b03813516906020013561215c565b348015610ac457600080fd5b5061057160048036036020811015610adb57600080fd5b50356001600160a01b0316612364565b348015610af757600080fd5b5061045960048036036020811015610b0e57600080fd5b50356001600160a01b0316612376565b348015610b2a57600080fd5b5061057160048036036020811015610b4157600080fd5b50356001600160a01b0316612420565b348015610b5d57600080fd5b50610571612432565b348015610b7257600080fd5b50610470612438565b348015610b8757600080fd5b50610571612457565b348015610b9c57600080fd5b5061045960048036036020811015610bb357600080fd5b503561245e565b348015610bc657600080fd5b5061045960048036036020811015610bdd57600080fd5b5035612535565b348015610bf057600080fd5b5061051e60048036036040811015610c0757600080fd5b506001600160a01b0381351690602001356125aa565b348015610c2957600080fd5b5061045960048036036020811015610c4057600080fd5b50356001600160a01b03166125c0565b348015610c5c57600080fd5b5061057160048036036020811015610c7357600080fd5b50356001600160a01b031661262b565b348015610c8f57600080fd5b5061059861263d565b348015610ca457600080fd5b5061051e60048036036020811015610cbb57600080fd5b50356001600160a01b0316612655565b348015610cd757600080fd5b50610ce061266a565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610d1c578181015183820152602001610d04565b505050509050019250505060405180910390f35b348015610d3c57600080fd5b5061057160048036036020811015610d5357600080fd5b50356001600160a01b03166126cc565b348015610d6f57600080fd5b5061057160048036036020811015610d8657600080fd5b50356001600160a01b03166126de565b610459612742565b348015610daa57600080fd5b50610571612b48565b348015610dbf57600080fd5b50610459600480360360c0811015610dd657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135612b4f565b348015610e1357600080fd5b5061045960048036036020811015610e2a57600080fd5b50356001600160a01b0316612e08565b348015610e4657600080fd5b5061045960048036036040811015610e5d57600080fd5b506001600160a01b0381358116916020013516612eb5565b348015610e8157600080fd5b5061045960048036036040811015610e9857600080fd5b506001600160a01b038135169060200135613081565b348015610eba57600080fd5b5061057160048036036020811015610ed157600080fd5b50356001600160a01b03166132e1565b348015610eed57600080fd5b50610459600480360360e0811015610f0457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356132f3565b348015610f4b57600080fd5b5061057160048036036020811015610f6257600080fd5b50356001600160a01b031661363f565b348015610f7e57600080fd5b5061057160048036036040811015610f9557600080fd5b506001600160a01b0381358116916020013516613651565b348015610fb957600080fd5b5061057160048036036020811015610fd057600080fd5b50356001600160a01b031661367c565b348015610fec57600080fd5b5061057161368e565b34801561100157600080fd5b506105716136b2565b34801561101657600080fd5b506105986004803603602081101561102d57600080fd5b50356136b8565b34801561104057600080fd5b506110736004803603604081101561105757600080fd5b5080356001600160a01b0316906020013563ffffffff166136df565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561109f57600080fd5b50610571600480360360208110156110b657600080fd5b50356001600160a01b031661370c565b3480156110d257600080fd5b50610571600480360360208110156110e957600080fd5b50356001600160a01b031661371e565b34801561110557600080fd5b506105716004803603602081101561111c57600080fd5b50356001600160a01b03166137c7565b34801561113857600080fd5b506105716004803603602081101561114f57600080fd5b50356001600160a01b03166137d9565b601a546001600160a01b031633146111a85760405162461bcd60e51b815260040180806020018281038252602a81526020018061452f602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600a60205260409020546111cb9082613845565b6001600160a01b0383166000818152600a6020908152604080832094909455600d815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526015602052604090205461131f576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b33600090815260156020526040902054421161136c5760405162461bcd60e51b81526004018080602001828103825260228152602001806141746022913960400191505060405180910390fd5b33600090815260136020908152604080832054601b546001600160a01b0316808552600584528285205483516318160ddd60e01b8152935192959094909361140d936318160ddd92600480840193919291829003018186803b1580156113d157600080fd5b505afa1580156113e5573d6000803e3d6000fd5b505050506040513d60208110156113fb57600080fd5b5051611407848661386a565b906138c3565b336000908152601460209081526040808320546001600160a01b03168084526012909252909120549192509082111561145e576001600160a01b038116600090815260126020526040812055611483565b6001600160a01b0381166000908152601260205260409020546114819083613845565b505b601b546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156114d757600080fd5b505af11580156114eb573d6000803e3d6000fd5b505050506040513d602081101561150157600080fd5b5050336000818152601360209081526040808320839055601482529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b336000908152600760205260409020546115d5576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b336000908152600760205260409020544211611638576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526018602052604090205460ff1661166257336000908152600c602052604090204290555b336000908152601860209081526040808320805460ff191660011790556009909152902054600b54611693916137eb565b600b5533600090815260096020908152604080832054600a909252909120546116bb916137eb565b336000908152600a602090815260408083209390935560098152828220829055600e9052205461173757336000818152600e602052604081204290556019805460018101825591527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b03191690911790555b336000818152600a602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601b546001600160a01b031681565b60106020526000908152604090205481565b6001600160a01b03841660009081526018602052604081205460ff1680156117f157506001600160a01b0385166000908152600a60205260409020548411155b801561181457506001600160a01b03851660009081526010602052604090205483105b801561184357506001600160a01b0385166000908152600c60205260409020548290611841904290613845565b115b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6001600160a01b0383166000818152600460209081526040808320338085529252822054919290919082148015906118aa57506000198114155b1561193b5760006118d6856040518060600160405280603981526020016141e660399139849190613905565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61194686868661399c565b50600195945050505050565b6001600160a01b03811660009081526018602052604090205460ff166119a95760405162461bcd60e51b81526004018080602001828103825260238152602001806141516023913960400191505060405180910390fd5b6001600160a01b0381166000908152600e602052604090205442906119d19062093a806137eb565b10611a23576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600a6020526040812054611a509061271090611407906101f461386a565b6001600160a01b0383166000908152600a6020526040902054909150611a769082613845565b6001600160a01b0383166000908152600a6020526040902055611aa133670de0b6b3a7640000613b25565b6001600160a01b0382166000818152600e6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600f6020526000908152604090205481565b611b4442621275006137eb565b336000818152601560209081526040808320949094556014815283822054601382529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b60186020526000908152604090205460ff1681565b33600090815260086020526040902054611c27576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611c745760405162461bcd60e51b81526004018080602001828103825260218152602001806145aa6021913960400191505060405180910390fd5b336000908152600d602052604090205460ff1615611cc35760405162461bcd60e51b815260040180806020018281038252602281526020018061445e6022913960400191505060405180910390fd5b336000818152600a6020526040902054611cde91309161399c565b336000818152600a602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600a6020526040812055565b60116020526000908152604090205460ff1681565b611d603382613baf565b50565b600b5481565b60096020526000908152604090205481565b3360009081526011602052604090205460ff16611dc95760405162461bcd60e51b815260040180806020018281038252602f81526020018061457b602f913960400191505060405180910390fd5b42600e6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611e27816040518060600160405280603381526020016144fc60339139336000908152601260205260409020549190613905565b336000908152601260209081526040808320939093556001600160a01b0385168252600f90522054611e5990826137eb565b6001600160a01b0383166000908152600f6020908152604080832093909355601090522054611e8890826137eb565b6001600160a01b0383166000818152601060209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000818152600f6020526040902054611efb9190613b25565b336000908152600f6020526040812055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601a546001600160a01b03163314611f6e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806143b6602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600d6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b601a546001600160a01b031681565b611d603382613ca0565b336000908152601860205260409020805460ff1916905561201e42621275006137eb565b33600090815260086020908152604080832093909355600a90522054600b5461204691613845565b600b5533600090815260016020908152604080832054600a90925282205461207a926001600160a01b039092169190613d20565b33600081815260086020908152604080832054600a835292819020548151438152928301939093528181019290925290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a2565b6212750081565b6014602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526018602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b60166020526000908152604090205481565b600043821061219c5760405162461bcd60e51b815260040180806020018281038252602381526020018061443b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff16806121ca5760009150506112b8565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310612239576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff168352929052206001015490506112b8565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff168310156122745760009150506112b8565b600060001982015b8163ffffffff168163ffffffff16111561232d57600282820363ffffffff160481036122a6614107565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612308576020015194506112b89350505050565b805163ffffffff1687111561231f57819350612326565b6001820392505b505061227c565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601a546001600160a01b031633146123bf5760405162461bcd60e51b81526004018080602001828103825260328152602001806143846032913960400191505060405180910390fd5b6001600160a01b038116600081815260116020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60156020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b33600090815260096020526040902054156124aa5760405162461bcd60e51b81526004018080602001828103825260228152602001806143626022913960400191505060405180910390fd5b6124b7426203f4806137eb565b3360008181526007602090815260408083209490945560099052919091208290556124e390308361399c565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601a546001600160a01b03163314612594576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601a54611d60906001600160a01b031682613b25565b60006125b733848461399c565b50600192915050565b601a546001600160a01b031633146126095760405162461bcd60e51b815260040180806020018281038252602e815260200180614480602e913960400191505060405180910390fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600d6020526000908152604090205460ff1681565b606060198054806020026020016040519081016040528092919081815260200182805480156126c257602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116126a4575b5050505050905090565b60176020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff168061270957600061273b565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601b546001600160a01b03161561278a5760405162461bcd60e51b81526004018080602001828103825260238152602001806145cb6023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b15801561285d57600080fd5b505af1158015612871573d6000803e3d6000fd5b505050506040513d602081101561288757600080fd5b5061289d9050306815af1d78b58c400000613b25565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b15801561293857600080fd5b505afa15801561294c573d6000803e3d6000fd5b505050506040513d602081101561296257600080fd5b505160008033612974426107086137eb565b6040518963ffffffff1660e01b815260040180896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b505050506040513d6060811015612a2057600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b158015612a6d57600080fd5b505afa158015612a81573d6000803e3d6000fd5b505050506040513d6020811015612a9757600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b158015612afb57600080fd5b505afa158015612b0f573d6000803e3d6000fd5b505050506040513d6020811015612b2557600080fd5b5051601b80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b60408051808201909152600681526525b2b2b819b960d11b60209091015260007f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf6612bb9613e7d565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015612cec573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612d3e5760405162461bcd60e51b81526004018080602001828103825260228152602001806145596022913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090208054600181019091558914612db2576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b87421115612df15760405162461bcd60e51b81526004018080602001828103825260228152602001806144ae6022913960400191505060405180910390fd5b612dfb818b613ca0565b505050505b505050505050565b601a546001600160a01b03163314612e515760405162461bcd60e51b815260040180806020018281038252602c8152602001806144d0602c913960400191505060405180910390fd5b6001600160a01b038116600081815260116020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b6001600160a01b038216600090815260176020526040902054612f1f576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b0382166000908152601760205260409020544211612f8b576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601b546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b8152915190946130309390926318160ddd9260048083019392829003018186803b158015612fe057600080fd5b505afa158015612ff4573d6000803e3d6000fd5b505050506040513d602081101561300a57600080fd5b50516001600160a01b03861660009081526013602052604090205461140790859061386a565b905061305f61304082600261386a565b6001600160a01b038516600090815260126020526040902054906137eb565b6001600160a01b03909316600090815260126020526040902092909255505050565b336000908152601460205260409020546001600160a01b0316156130d65760405162461bcd60e51b81526004018080602001828103825260428152602001806143206042913960600191505060405180910390fd5b601b54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561313057600080fd5b505af1158015613144573d6000803e3d6000fd5b505050506040513d602081101561315a57600080fd5b50503360009081526013602090815260408083208490556014909152902080546001600160a01b0319166001600160a01b03841617905561319e42620151806137eb565b336000908152601760209081526040808320939093556001600160a01b038516825260119052205460ff161580156131ed57506001600160a01b03821660009081526016602052604090205442115b1561329557601a546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b15801561324157600080fd5b505af1158015613255573d6000803e3d6000fd5b505050506040513d602081101561326b57600080fd5b5061327b905042621275006137eb565b6001600160a01b0383166000908152601660205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205481565b60408051808201909152600681526525b2b2b819b960d11b60209091015260007f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661335d613e7d565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038c8116600081815260068752848120805460018082019092557f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e960c089015260e0880193909352928e1661010087015261012086018d90526101408601919091526101608086018c9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8c1661022288015261024287018b905261026287018a90529451939750959394909391926102828083019392601f198301929081900390910190855afa1580156134b9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613521576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613580576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b874211156135d5576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60136020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600c6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b61271081565b601981815481106136c557fe5b6000918252602090912001546001600160a01b0316905081565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601a546000906001600160a01b0316331461376a5760405162461bcd60e51b815260040180806020018281038252602c815260200180614296602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600d6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b600a6020526000908152604090205481565b60126020526000908152604090205481565b60008282018381101561273b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061273b83836040518060600160405280602881526020016142c260289139613905565b600082613879575060006112b8565b8282028284828161388657fe5b041461273b5760405162461bcd60e51b81526004018080602001828103825260218152602001806143e26021913960400191505060405180910390fd5b600061273b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e81565b600081848411156139945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613959578181015183820152602001613941565b50505050905090810190601f1680156139865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166139e15760405162461bcd60e51b81526004018080602001828103825260388152602001806144036038913960400191505060405180910390fd5b6001600160a01b038216613a265760405162461bcd60e51b81526004018080602001828103825260368152602001806142ea6036913960400191505060405180910390fd5b613a638160405180606001604052806032815260200161411f603291396001600160a01b0386166000908152600560205260409020549190613905565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613ac9816040518060600160405280602c8152602001614196602c91396001600160a01b0385166000908152600560205260409020549190613ee6565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600054613b3290826137eb565b60009081556001600160a01b038316815260056020526040902054613b5790826137eb565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216613bf45760405162461bcd60e51b81526004018080602001828103825260238152602001806142436023913960400191505060405180910390fd5b613c31816040518060600160405280602481526020016141c2602491396001600160a01b0385166000908152600560205260409020549190613905565b6001600160a01b03831660009081526005602052604081209190915554613c589082613845565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600a845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4613d1a828483613d20565b50505050565b816001600160a01b0316836001600160a01b031614158015613d425750600081115b15613e78576001600160a01b03831615613def576001600160a01b03831660009081526003602052604081205463ffffffff169081613d82576000613db4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613ddd8460405180606001604052806024815260200161421f60249139849190613905565b9050613deb86848484613f44565b5050505b6001600160a01b03821615613e78576001600160a01b03821660009081526003602052604081205463ffffffff169081613e2a576000613e5c565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613e6a82856137eb565b9050612e0085848484613f44565b505050565b4690565b60008183613ed05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b506000838581613edc57fe5b0495945050505050565b60008383018285821015613f3b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b50949350505050565b6000613f6843604051806060016040528060308152602001614266603091396140a9565b905060008463ffffffff16118015613fb157506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613fee576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561405f565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106140ff5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613959578181015183820152602001613941565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e63653a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f76652066697273744b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212202d2f5e4ba81ad403323c8f8f82ade899913daf718f18668602fe7ec1fbe74c0a64736f6c634300060c0033

Deployed Bytecode Sourcemap

7742:28882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31227:309;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31227:309:0;;;;;;;;:::i;:::-;;8117:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32815:205;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32815:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22935:836;;;;;;;;;;;;;:::i;28323:727::-;;;;;;;;;;;;;:::i;8415:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20299:28;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;20299:28:0;;;;;;;;;;;;;;19114:45;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19114:45:0;-1:-1:-1;;;;;19114:45:0;;:::i;27360:299::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27360:299:0;;;;;;;;;;;;;;;;;;:::i;9038:119::-;;;;;;;;;;;;;:::i;35361:571::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35361:571:0;;;;;;;;;;;;;;;;;:::i;30188:461::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30188:461:0;-1:-1:-1;;;;;30188:461:0;;:::i;9452:128::-;;;;;;;;;;;;;:::i;8316:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19009:36;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19009:36:0;-1:-1:-1;;;;;19009:36:0;;:::i;22633:213::-;;;;;;;;;;;;;:::i;19965:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19965:39:0;-1:-1:-1;;;;;19965:39:0;;:::i;29591:479::-;;;;;;;;;;;;;:::i;19233:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19233:36:0;-1:-1:-1;;;;;19233:36:0;;:::i;24090:80::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24090:80:0;;:::i;18591:27::-;;;;;;;;;;;;;:::i;18383:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18383:44:0;-1:-1:-1;;;;;18383:44:0;;:::i;25210:485::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25210:485:0;;;;;;;;:::i;24873:111::-;;;;;;;;;;;;;:::i;7977:81::-;;;;;;;;;;;;;:::i;31671:229::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31671:229:0;-1:-1:-1;;;;;31671:229:0;;:::i;8520:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8520:45:0;-1:-1:-1;;;;;8520:45:0;;:::i;20194:25::-;;;;;;;;;;;;;:::i;10405:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10405:102:0;-1:-1:-1;;;;;10405:102:0;;:::i;29143:362::-;;;;;;;;;;;;;:::i;17830:37::-;;;;;;;;;;;;;:::i;19576:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19576:52:0;-1:-1:-1;;;;;19576:52:0;;:::i;27025:104::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27025:104:0;-1:-1:-1;;;;;27025:104:0;;:::i;8791:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8791:49:0;-1:-1:-1;;;;;8791:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;34538:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34538:108:0;-1:-1:-1;;;;;34538:108:0;;:::i;19770:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19770:48:0;-1:-1:-1;;;;;19770:48:0;;:::i;12574:1212::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12574:1212:0;;;;;;;;:::i;9671:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9671:39:0;-1:-1:-1;;;;;9671:39:0;;:::i;26247:232::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26247:232:0;-1:-1:-1;;;;;26247:232:0;;:::i;19677:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19677:50:0;-1:-1:-1;;;;;19677:50:0;;:::i;18033:40::-;;;;;;;;;;;;;:::i;8216:37::-;;;;;;;;;;;;;:::i;17936:38::-;;;;;;;;;;;;;:::i;27744:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27744:368:0;;:::i;23925:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23925:157:0;;:::i;34907:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34907:147:0;;;;;;;;:::i;26644:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26644:190:0;-1:-1:-1;;;;;26644:190:0;;:::i;18275:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18275:42:0;-1:-1:-1;;;;;18275:42:0;;:::i;7849:78::-;;;;;;;;;;;;;:::i;18792:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18792:40:0;-1:-1:-1;;;;;18792:40:0;;:::i;28120:99::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19863:48;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19863:48:0;-1:-1:-1;;;;;19863:48:0;;:::i;11923:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11923:220:0;-1:-1:-1;;;;;11923:220:0;;:::i;20487:654::-;;;:::i;17718:34::-;;;;;;;;;;;;;:::i;10945:777::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10945:777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;25856:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25856:220:0;-1:-1:-1;;;;;25856:220:0;;:::i;22059:490::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22059:490:0;;;;;;;;;;:::i;21395:656::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21395:656:0;;;;;;;;:::i;18897:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18897:39:0;-1:-1:-1;;;;;18897:39:0;;:::i;33507:828::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33507:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19436:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19436:50:0;-1:-1:-1;;;;;19436:50:0;;:::i;32204:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32204:136:0;;;;;;;;;;:::i;18684:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18684:41:0;-1:-1:-1;;;;;18684:41:0;;:::i;9251:111::-;;;;;;;;;;;;;:::i;18080:33::-;;;;;;;;;;;;;:::i;20094:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20094:27:0;;:::i;8652:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8652:70:0;;-1:-1:-1;;;;;8652:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;18174:40;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18174:40:0;-1:-1:-1;;;;;18174:40:0;;:::i;30793:242::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30793:242:0;-1:-1:-1;;;;;30793:242:0;;:::i;18487:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18487:37:0;-1:-1:-1;;;;;18487:37:0;;:::i;19332:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19332:39:0;-1:-1:-1;;;;;19332:39:0;;:::i;31227:309::-;31313:10;;-1:-1:-1;;;;;31313:10:0;31299;:24;31291:79;;;;-1:-1:-1;;;31291:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31397:13:0;;;;;;:5;:13;;;;;;:25;;31415:6;31397:17;:25::i;:::-;-1:-1:-1;;;;;31381:13:0;;;;;;:5;:13;;;;;;;;:41;;;;31433:8;:16;;;;;;:24;;-1:-1:-1;;31433:24:0;;;31473:55;;31507:12;31473:55;;;;;;;;;;31495:10;;31473:55;;;;;;;;31227:309;;:::o;8117:38::-;;;;;;;;;;;;;;-1:-1:-1;;;8117:38:0;;;;:::o;32815:205::-;32906:10;32878:4;32895:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;32895:31:0;;;;;;;;;;;:40;;;32953:37;;;;;;;32878:4;;32895:31;;32906:10;;32953:37;;;;;;;;-1:-1:-1;33008:4:0;32815:205;;;;;:::o;22935:836::-;23003:10;22984:30;;;;:18;:30;;;;;;22976:79;;;;;-1:-1:-1;;;22976:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23093:10;23074:30;;;;:18;:30;;;;;;23107:3;-1:-1:-1;23066:83:0;;;;-1:-1:-1;;;23066:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23196:10;23160:14;23177:30;;;:18;:30;;;;;;;;;23253:9;;-1:-1:-1;;;;;23253:9:0;23236:28;;;:8;:28;;;;;;23320:23;;-1:-1:-1;;;23320:23:0;;;;23177:30;;23236:28;;23160:14;;23290:54;;23320:21;;:23;;;;;23177:30;;23320:23;;;;;;23253:9;23320:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23320:23:0;23290:25;:10;23305:9;23290:14;:25::i;:::-;:29;;:54::i;:::-;23388:10;23355:12;23370:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;23370:29:0;23424:13;;;:7;:13;;;;;;;23275:69;;-1:-1:-1;23370:29:0;23414:23;;23410:132;;;-1:-1:-1;;;;;23454:13:0;;23470:1;23454:13;;;:7;:13;;;;;:17;23410:132;;;-1:-1:-1;;;;;23504:13:0;;;;;;:7;:13;;;;;;:26;;23522:7;23504:17;:26::i;:::-;;23410:132;23552:9;;:41;;;-1:-1:-1;;;23552:41:0;;23571:10;23552:41;;;;;;;;;;;;-1:-1:-1;;;;;23552:9:0;;;;:18;;:41;;;;;;;;;;;;;;;:9;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23623:10:0;23637:1;23604:30;;;:18;23552:41;23604:30;;;;;;;:34;;;23649:17;:29;;;;;;:44;;-1:-1:-1;;;;;;23649:44:0;;;23711:52;;23739:12;23711:52;;;;;;;;;;-1:-1:-1;;;;;23711:52:0;;;;;;;;;;;22935:836;;;;:::o;28323:727::-;28380:10;28371:20;;;;:8;:20;;;;;;28363:66;;;;;-1:-1:-1;;;28363:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28457:10;28448:20;;;;:8;:20;;;;;;28471:3;-1:-1:-1;28440:70:0;;;;;-1:-1:-1;;;28440:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28534:10;28526:19;;;;:7;:19;;;;;;;;28521:78;;28570:10;28560:21;;;;:9;:21;;;;;28584:3;28560:27;;28521:78;28617:10;28609:19;;;;:7;:19;;;;;;;;:26;;-1:-1:-1;;28609:26:0;28631:4;28609:26;;;28676:12;:24;;;;;;28660:11;;:41;;:15;:41::i;:::-;28646:11;:55;28767:10;28754:24;;;;:12;:24;;;;;;;;;28732:5;:17;;;;;;;:47;;:21;:47::i;:::-;28718:10;28712:17;;;;:5;:17;;;;;;;;:67;;;;28790:12;:24;;;;;:28;;;28833:7;:19;;;;28829:124;;28882:10;28874:19;;;;:7;:19;;;;;28896:3;28874:25;;28914:10;:27;;;;;;;;;;;;;-1:-1:-1;;;;;;28914:27:0;;;;;;28829:124;28981:10;29024:17;;;;:5;:17;;;;;;;;;;28968:74;;28993:12;28968:74;;29007:15;28968:74;;;;;;;;;;;;;;;;;;;;;;28323:727::o;8415:27::-;;;;:::o;20299:28::-;;;-1:-1:-1;;;;;20299:28:0;;:::o;19114:45::-;;;;;;;;;;;;;:::o;27360:299::-;-1:-1:-1;;;;;27484:15:0;;27460:4;27484:15;;;:7;:15;;;;;;;;:60;;;;-1:-1:-1;;;;;;27520:13:0;;;;;;:5;:13;;;;;;:24;-1:-1:-1;27520:24:0;27484:60;:114;;;;-1:-1:-1;;;;;;27565:21:0;;;;;;:13;:21;;;;;;:33;-1:-1:-1;27484:114:0;:167;;;;-1:-1:-1;;;;;;27627:17:0;;;;;;:9;:17;;;;;;27648:3;;27619:26;;:3;;:7;:26::i;:::-;:32;27484:167;27477:174;27360:299;-1:-1:-1;;;;;27360:299:0:o;9038:119::-;9080:77;9038:119;:::o;35361:571::-;-1:-1:-1;;;;;35520:15:0;;35440:4;35520:15;;;:10;:15;;;;;;;;35475:10;35520:24;;;;;;;;35440:4;;35475:10;;35520:24;35561:14;;;;;:46;;;-1:-1:-1;;35579:16:0;:28;;35561:46;35557:300;;;35624:17;35644:89;35665:6;35644:89;;;;;;;;;;;;;;;;;:16;;:89;:20;:89::i;:::-;-1:-1:-1;;;;;35748:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;35809:36;;;;;;;35624:109;;-1:-1:-1;35748:24:0;;:15;;35809:36;;;;;;;;;35557:300;;35869:33;35885:3;35890;35895:6;35869:15;:33::i;:::-;-1:-1:-1;35920:4:0;;35361:571;-1:-1:-1;;;;;35361:571:0:o;30188:461::-;-1:-1:-1;;;;;30246:15:0;;;;;;:7;:15;;;;;;;;30238:63;;;;-1:-1:-1;;;30238:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30320:15:0;;;;;;:7;:15;;;;;;30352:3;;30320:29;;17968:6;30320:19;:29::i;:::-;:35;30312:73;;;;;-1:-1:-1;;;30312:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30410:13:0;;30396:11;30410:13;;;:5;:13;;;;;;:42;;18108:5;;30410:32;;18070:3;30410:17;:32::i;:42::-;-1:-1:-1;;;;;30479:13:0;;;;;;:5;:13;;;;;;30396:56;;-1:-1:-1;30479:25:0;;30396:56;30479:17;:25::i;:::-;-1:-1:-1;;;;;30463:13:0;;;;;;:5;:13;;;;;:41;30515:23;30521:10;30533:4;30515:5;:23::i;:::-;-1:-1:-1;;;;;30549:15:0;;;;;;:7;:15;;;;;;;;;30567:3;30549:21;;30586:55;;30620:12;30586:55;;;;;;;;;;30608:10;;30549:15;30586:55;;;;;;;;30188:461;;:::o;9452:128::-;9494:86;9452:128;:::o;8316:35::-;8349:2;8316:35;:::o;19009:36::-;;;;;;;;;;;;;:::o;22633:213::-;22707:15;:3;17860:7;22707;:15::i;:::-;22693:10;22674:30;;;;:18;:30;;;;;;;;:48;;;;22750:17;:29;;;;;;22807:18;:30;;;;;;;22740:98;;22793:12;22740:98;;;;;;;;22693:10;;-1:-1:-1;;;;;22750:29:0;;;;22740:98;;;;;;;;;;;22633:213::o;19965:39::-;;;;;;;;;;;;;;;:::o;29591:479::-;29650:10;29639:22;;;;:10;:22;;;;;;29631:70;;;;;-1:-1:-1;;;29631:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29731:10;29720:22;;;;:10;:22;;;;;;29745:3;-1:-1:-1;29712:74:0;;;;-1:-1:-1;;;29712:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29815:10;29806:20;;;;:8;:20;;;;;;;;29805:21;29797:68;;;;-1:-1:-1;;;29797:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29909:10;29921:17;;;;:5;:17;;;;;;29878:61;;29902:4;;29878:15;:61::i;:::-;29969:10;30012:17;;;;:5;:17;;;;;;;;;;29955:75;;29981:12;29955:75;;29995:15;29955:75;;;;;;;;;;;;;;;;;;;;;;30047:10;30061:1;30041:17;;;:5;:17;;;;;:21;29591:479::o;19233:36::-;;;;;;;;;;;;;;;:::o;24090:80::-;24137:25;24143:10;24155:6;24137:5;:25::i;:::-;24090:80;:::o;18591:27::-;;;;:::o;18383:44::-;;;;;;;;;;;;;:::o;25210:485::-;25293:10;25288:16;;;;:4;:16;;;;;;;;25280:76;;;;-1:-1:-1;;;25280:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25385:3;25367:7;:15;25375:6;-1:-1:-1;;;;;25367:15:0;-1:-1:-1;;;;;25367:15:0;;;;;;;;;;;;:21;;;;25421:86;25445:6;25421:86;;;;;;;;;;;;;;;;;25429:10;25421:19;;;;:7;:19;;;;;;;:86;:23;:86::i;:::-;25407:10;25399:19;;;;:7;:19;;;;;;;;:108;;;;-1:-1:-1;;;;;25533:12:0;;;;:4;:12;;;;:24;;25550:6;25533:16;:24::i;:::-;-1:-1:-1;;;;;25518:12:0;;;;;;:4;:12;;;;;;;;:39;;;;25592:13;:21;;;;:33;;25618:6;25592:25;:33::i;:::-;-1:-1:-1;;;;;25568:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;25641:46;;25674:12;25641:46;;;;25568:21;;25654:10;;25641:46;;;;;;;;;;25210:485;;:::o;24873:111::-;24916:10;24928:16;;;;:4;:16;;;;;;24910:35;;24916:10;24910:5;:35::i;:::-;24961:10;24975:1;24956:16;;;:4;:16;;;;;:20;24873:111::o;7977:81::-;8015:42;7977:81;:::o;31671:229::-;31746:10;;-1:-1:-1;;;;;31746:10:0;31732;:24;31724:81;;;;-1:-1:-1;;;31724:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31816:16:0;;31835:5;31816:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;31816:24:0;;;31856:36;;31879:12;31856:36;;;;;;;;;;;;;;31671:229;:::o;8520:45::-;;;;;;;;;;;;-1:-1:-1;;;;;8520:45:0;;:::o;20194:25::-;;;-1:-1:-1;;;;;20194:25:0;;:::o;10405:102::-;10467:32;10477:10;10489:9;10467;:32::i;29143:362::-;29189:10;29203:5;29181:19;;;:7;:19;;;;;:27;;-1:-1:-1;;29181:27:0;;;29244:15;:3;17860:7;29244;:15::i;:::-;29230:10;29219:22;;;;:10;:22;;;;;;;;:40;;;;29300:5;:17;;;;29284:11;;:34;;:15;:34::i;:::-;29270:11;:48;29354:10;29344:21;;;;:9;:21;;;;;;;;;29379:5;:17;;;;;;29329:68;;-1:-1:-1;;;;;29344:21:0;;;;;29329:14;:68::i;:::-;29429:10;29455:22;;;;:10;:22;;;;;;;;;29479:5;:17;;;;;;;29413:84;;29441:12;29413:84;;;;;;;;;;;;;;;;;;;;;;;;;;;29143:362::o;17830:37::-;17860:7;17830:37;:::o;19576:52::-;;;;;;;;;;;;-1:-1:-1;;;;;19576:52:0;;:::o;27025:104::-;-1:-1:-1;;;;;27106:15:0;27082:4;27106:15;;;:7;:15;;;;;;;;;27025:104::o;8791:49::-;;;;;;;;;;;;;;;:::o;34538:108::-;-1:-1:-1;;;;;34621:17:0;34597:4;34621:17;;;:8;:17;;;;;;;34538:108::o;19770:48::-;;;;;;;;;;;;;:::o;12574:1212::-;12653:4;12692:12;12678:11;:26;12670:74;;;;-1:-1:-1;;;12670:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12779:23:0;;12757:19;12779:23;;;:14;:23;;;;;;;;12817:17;12813:58;;12858:1;12851:8;;;;;12813:58;-1:-1:-1;;;;;12931:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12952:16:0;;12931:38;;;;;;;;;:48;;:63;-1:-1:-1;12927:147:0;;-1:-1:-1;;;;;13018:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;13039:16:0;;;;13018:38;;;;;;;;13054:1;13018:44;;;-1:-1:-1;13011:51:0;;12927:147;-1:-1:-1;;;;;13135:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;13131:88:0;;;13206:1;13199:8;;;;;13131:88;13231:12;-1:-1:-1;;13273:16:0;;13300:428;13315:5;13307:13;;:5;:13;;;13300:428;;;13379:1;13362:13;;;13361:19;;;13353:27;;13422:20;;:::i;:::-;-1:-1:-1;;;;;;13445:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13422:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13492:27;;13488:229;;;13547:8;;;;-1:-1:-1;13540:15:0;;-1:-1:-1;;;;13540:15:0;13488:229;13581:12;;:26;;;-1:-1:-1;13577:140:0;;;13636:6;13628:14;;13577:140;;;13700:1;13691:6;:10;13683:18;;13577:140;13300:428;;;;;-1:-1:-1;;;;;;13745:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;12574:1212:0;;;;:::o;9671:39::-;;;;;;;;;;;;;:::o;26247:232::-;26321:10;;-1:-1:-1;;;;;26321:10:0;26307;:24;26299:87;;;;-1:-1:-1;;;26299:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26397:9:0;;26409:5;26397:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;26397:17:0;;;26430:41;;26446:12;26430:41;;26460:10;26430:41;;;;;;;;;;;;;;;;;;;;26247:232;:::o;19677:50::-;;;;;;;;;;;;;:::o;18033:40::-;18070:3;18033:40;:::o;8216:37::-;;;;;;;;;;;;;;-1:-1:-1;;;8216:37:0;;;;:::o;17936:38::-;17968:6;17936:38;:::o;27744:368::-;27812:10;27799:24;;;;:12;:24;;;;;;:29;27791:76;;;;-1:-1:-1;;;27791:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27901:13;:3;17746:6;27901:7;:13::i;:::-;27887:10;27878:20;;;;:8;:20;;;;;;;;:36;;;;27925:12;:24;;;;;;:33;;;27969:50;;28005:4;27952:6;27969:15;:50::i;:::-;28049:10;28075:20;;;;:8;:20;;;;;;;;;;28035:69;;28061:12;28035:69;;;;;;;;;;;;;;;;;;;;;;;27744:368;:::o;23925:157::-;23994:10;;-1:-1:-1;;;;;23994:10:0;23980;:24;23972:66;;;;;-1:-1:-1;;;23972:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24055:10;;24049:25;;-1:-1:-1;;;;;24055:10:0;24067:6;24049:5;:25::i;34907:147::-;34967:4;34984:40;35000:10;35012:3;35017:6;34984:15;:40::i;:::-;-1:-1:-1;35042:4:0;34907:147;;;;:::o;26644:190::-;26730:10;;-1:-1:-1;;;;;26730:10:0;26716;:24;26708:83;;;;-1:-1:-1;;;26708:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26802:10;:24;;-1:-1:-1;;;;;;26802:24:0;-1:-1:-1;;;;;26802:24:0;;;;;;;;;;26644:190::o;18275:42::-;;;;;;;;;;;;;:::o;7849:78::-;7884:42;7849:78;:::o;18792:40::-;;;;;;;;;;;;;;;:::o;28120:99::-;28165:16;28201:10;28194:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28194:17:0;;;;;;;;;;;;;;;;;;;;;;;28120:99;:::o;19863:48::-;;;;;;;;;;;;;:::o;11923:220::-;-1:-1:-1;;;;;12027:23:0;;11988:4;12027:23;;;:14;:23;;;;;;;;12068:16;:67;;12134:1;12068:67;;;-1:-1:-1;;;;;12087:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12108:16:0;;12087:38;;;;;;;;12123:1;12087:44;;12068:67;12061:74;11923:220;-1:-1:-1;;;11923:220:0:o;20487:654::-;20546:9;;-1:-1:-1;;;;;20546:9:0;20538:34;20530:82;;;;-1:-1:-1;;;20530:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7884:42;-1:-1:-1;;;;;20623:12:0;;20642:9;20623:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20665:37:0;;;-1:-1:-1;;;20665:37:0;;8015:42;20665:37;;;;20692:9;20665:37;;;;;;7884:42;;-1:-1:-1;20665:12:0;;-1:-1:-1;20665:37:0;;;;;-1:-1:-1;20665:37:0;;;;;;;-1:-1:-1;7884:42:0;20665:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20713:28:0;;-1:-1:-1;20727:4:0;20734:6;20713:5;:28::i;:::-;20811:4;20794:23;;;;:8;:23;;;;;;;;;20752:10;:25;;;;;;8015:42;20752:39;;;;;;;;;:65;;;20949:23;;;;;;;20974:29;;-1:-1:-1;;;20974:29:0;;;;;;;;;;8015:42;;20902:16;;20811:4;;7884:42;;;;20974:14;;:29;;;;;20794:23;20974:29;;;;;;7884:42;20974:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20974:29:0;21005:1;;21011:10;21023:13;:3;21031:4;21023:7;:13::i;:::-;20902:135;;;;;;;;;;;;;-1:-1:-1;;;;;20902:135:0;;;;;;-1:-1:-1;;;;;20902:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20902:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20902:135:0;21080:13;;-1:-1:-1;;;21080:13:0;;;;8015:42;;21080:11;;:13;;;;;20902:135;;21080:13;;;;;;;8015:42;21080:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21080:13:0;21072:60;;;-1:-1:-1;;;21072:60:0;;21111:4;21072:60;;;;7884:42;21072:60;;;;;;-1:-1:-1;;;;;21072:30:0;;;;;;:60;;;;;21080:13;;21072:60;;;;;;;;:30;:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21072:60:0;21048:9;:85;;-1:-1:-1;;;;;;21048:85:0;-1:-1:-1;;;;;21048:85:0;;;;;;;;;20487:654::o;17718:34::-;17746:6;17718:34;:::o;10945:777::-;11141:4;;;;;;;;;;;;-1:-1:-1;;;11141:4:0;;;;;11061:23;9080:77;11125:22;11149:12;:10;:12::i;:::-;11097:80;;;;;;;;;;;;;;;;;;;;;;;;;11171:4;11097:80;;;;;;;;;;;;;;;;;;;;;;;11087:91;;;;;;9297:65;11220:57;;;;-1:-1:-1;;;;;11220:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11210:68;;;;;;-1:-1:-1;;;11316:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11306:68;;;;;;;;;-1:-1:-1;11405:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11087:91;;-1:-1:-1;11210:68:0;;11306;;-1:-1:-1;;11405:26:0;;;;;;;-1:-1:-1;;11405:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11405:26:0;;-1:-1:-1;;11405:26:0;;;-1:-1:-1;;;;;;;11450:23:0;;11442:70;;;;-1:-1:-1;;;11442:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11540:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11531:28;;11523:71;;;;;-1:-1:-1;;;11523:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11620:6;11613:3;:13;;11605:60;;;;-1:-1:-1;;;11605:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11683:31;11693:9;11704;11683;:31::i;:::-;11676:38;;;;10945:777;;;;;;;:::o;25856:220::-;25927:10;;-1:-1:-1;;;;;25927:10:0;25913;:24;25905:81;;;;-1:-1:-1;;;25905:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25997:9:0;;;;;;:4;:9;;;;;;;;;:16;;-1:-1:-1;;25997:16:0;26009:4;25997:16;;;26029:39;;26043:12;26029:39;;26057:10;26029:39;;;;;;;;;;;;;;;;;;;;25856:220;:::o;22059:490::-;-1:-1:-1;;;;;22134:26:0;;;;;;:16;:26;;;;;;22126:75;;;;;-1:-1:-1;;;22126:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22220:26:0;;;;;;:16;:26;;;;;;22249:3;-1:-1:-1;22212:74:0;;;;;-1:-1:-1;;;22212:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22332:9;;-1:-1:-1;;;;;22332:9:0;22297:15;22315:28;;;:8;:28;;;;;;;;;22418:23;;-1:-1:-1;;;22418:23:0;;;;22315:28;;22369:73;;22332:9;;22418:21;;:23;;;;;22315:28;22418:23;;;;;22332:9;22418:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22418:23:0;-1:-1:-1;;;;;22384:28:0;;;;;;:18;22418:23;22384:28;;;;;22369:44;;:10;;:14;:44::i;:73::-;22354:88;-1:-1:-1;22468:32:0;22485:14;22354:88;22497:1;22485:11;:14::i;:::-;-1:-1:-1;;;;;22468:12:0;;;;;;:7;:12;;;;;;;:16;:32::i;:::-;-1:-1:-1;;;;;22453:12:0;;;;;;;:7;:12;;;;;:47;;;;-1:-1:-1;;;22059:490:0:o;21395:656::-;21486:10;21507:3;21468:29;;;:17;:29;;;;;;-1:-1:-1;;;;;21468:29:0;:43;21460:122;;;;-1:-1:-1;;;21460:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21593:9;;:57;;;-1:-1:-1;;;21593:57:0;;21616:10;21593:57;;;;21636:4;21593:57;;;;;;;;;;;;-1:-1:-1;;;;;21593:9:0;;;;:22;;:57;;;;;;;;;;;;;;;:9;;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21680:10:0;21661:30;;;;:18;21593:57;21661:30;;;;;;;:39;;;21711:17;:29;;;;;:35;;-1:-1:-1;;;;;;21711:35:0;-1:-1:-1;;;;;21711:35:0;;;;;21788:15;:3;21796:6;21788:7;:15::i;:::-;21774:10;21757:28;;;;:16;:28;;;;;;;;:46;;;;-1:-1:-1;;;;;21819:9:0;;;;:4;:9;;;;;;21818:10;:41;;;;-1:-1:-1;;;;;;21832:21:0;;;;;;:16;:21;;;;;;21856:3;-1:-1:-1;21818:41:0;21814:166;;;21887:10;;21876:38;;;-1:-1:-1;;;21876:38:0;;-1:-1:-1;;;;;21876:38:0;;;;;;;;;21887:10;;;;;21876:33;;:38;;;;;;;;;;;;;;21887:10;;21876:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21953:15:0;;-1:-1:-1;21953:3:0;17860:7;21953;:15::i;:::-;-1:-1:-1;;;;;21929:21:0;;;;;;:16;:21;;;;;:39;21814:166;21995:48;;;22022:12;21995:48;;;;;;;;;;22010:10;;-1:-1:-1;;;;;21995:48:0;;;;;;;;;;;;;;21395:656;;:::o;18897:39::-;;;;;;;;;;;;;:::o;33507:828::-;33714:4;;;;;;;;;;;;-1:-1:-1;;;33714:4:0;;;;;33634:23;9080:77;33698:22;33722:12;:10;:12::i;:::-;33670:80;;;;;;;;;;;;;;;;;;;;;;;;;33744:4;33670:80;;;;;;;;;;;;;;;;;;;;;;;33660:91;;;;;;-1:-1:-1;;;;;33845:13:0;;;-1:-1:-1;33845:13:0;;;:6;:13;;;;;:15;;;;;;;;;9494:86;33793:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33783:89;;;;;;-1:-1:-1;;;33910:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33900:68;;;;;;;;;33999:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33660:91;;-1:-1:-1;33783:89:0;33900:68;;-1:-1:-1;;33845:15:0;;33999:26;;;;;33670:80;-1:-1:-1;;33999:26:0;;;;;;;;;;;33845:15;33999:26;;;;;;;;;;;;;;;-1:-1:-1;;33999:26:0;;-1:-1:-1;;33999:26:0;;;-1:-1:-1;;;;;;;34044:23:0;;34036:63;;;;;-1:-1:-1;;;34036:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34131:5;-1:-1:-1;;;;;34118:18:0;:9;-1:-1:-1;;;;;34118:18:0;;34110:53;;;;;-1:-1:-1;;;34110:53:0;;;;;;;;;;;;-1:-1:-1;;;34110:53:0;;;;;;;;;;;;;;;34189:8;34182:3;:15;;34174:55;;;;;-1:-1:-1;;;34174:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34242:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;34295:32;;;;;;;;;;;;;;;;;33507:828;;;;;;;;;;;:::o;19436:50::-;;;;;;;;;;;;;:::o;32204:136::-;-1:-1:-1;;;;;32304:19:0;;;32280:4;32304:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;32204:136::o;18684:41::-;;;;;;;;;;;;;:::o;9251:111::-;9297:65;9251:111;:::o;18080:33::-;18108:5;18080:33;:::o;20094:27::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20094:27:0;;-1:-1:-1;20094:27:0;:::o;8652:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18174:40::-;;;;;;;;;;;;;:::o;30793:242::-;30883:10;;30844:4;;-1:-1:-1;;;;;30883:10:0;30869;:24;30861:81;;;;-1:-1:-1;;;30861:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30953:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;30953:23:0;30972:4;30953:23;;;30992:35;;31014:12;30992:35;;;;;;;;;;;;;;30793:242;;;:::o;18487:37::-;;;;;;;;;;;;;:::o;19332:39::-;;;;;;;;;;;;;:::o;1018:169::-;1070:4;1096:5;;;1120:6;;;;1112:46;;;;;-1:-1:-1;;;1112:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1887:137;1939:4;1963:53;1967:1;1970;1963:53;;;;;;;;;;;;;;;;;:3;:53::i;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;2313:180::-;2393:4;2426:12;2418:6;;;;2410:29;;;;-1:-1:-1;;;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2459:5:0;;;2313:180::o;35940:523::-;-1:-1:-1;;;;;36032:17:0;;36024:86;;;;-1:-1:-1;;;36024:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36129:17:0;;36121:84;;;;-1:-1:-1;;;36121:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36234:79;36252:6;36234:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36234:13:0;;;;;;:8;:13;;;;;;;:79;:17;:79::i;:::-;36218:8;:13;36227:3;-1:-1:-1;;;;;36218:13:0;-1:-1:-1;;;;;36218:13:0;;;;;;;;;;;;:95;;;;36340:73;36358:6;36340:73;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36340:13:0;;;;;;:8;:13;;;;;;;:73;:17;:73::i;:::-;-1:-1:-1;;;;;36324:13:0;;;;;;;:8;:13;;;;;;;;;:89;;;;36429:26;;;;;;;36324:13;;36429:26;;;;;;;;;;;;;35940:523;;;:::o;24178:284::-;24281:11;;:23;;24297:6;24281:15;:23::i;:::-;24267:11;:37;;;-1:-1:-1;;;;;24380:13:0;;;;:8;:13;;;;;;:25;;24398:6;24380:17;:25::i;:::-;-1:-1:-1;;;;;24364:13:0;;;;;;:8;:13;;;;;;;;:41;;;;24421:33;;;;;;;24364:13;;;;24421:33;;;;;;;;;;24178:284;;:::o;24470:323::-;-1:-1:-1;;;;;24539:17:0;;24531:65;;;;-1:-1:-1;;;24531:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24623;24641:6;24623:65;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24623:13:0;;;;;;:8;:13;;;;;;;:65;:17;:65::i;:::-;-1:-1:-1;;;;;24607:13:0;;;;;;:8;:13;;;;;:81;;;;24713:11;:23;;24729:6;24713:15;:23::i;:::-;24699:11;:37;;;24752:33;;;;;;;;-1:-1:-1;;;;;24752:33:0;;;;;;;;;;;;;24470:323;;:::o;13794:370::-;-1:-1:-1;;;;;13897:20:0;;;13871:23;13897:20;;;:9;:20;;;;;;;;;;13952:5;:16;;;;;;13979:20;;;;:32;;;-1:-1:-1;;;;;;13979:32:0;;;;;;;14029:54;;13897:20;;;;;13952:16;;13979:32;;13897:20;;;14029:54;;13871:23;14029:54;14096:60;14111:15;14128:9;14139:16;14096:14;:60::i;:::-;13794:370;;;;:::o;14172:876::-;14275:6;-1:-1:-1;;;;;14265:16:0;:6;-1:-1:-1;;;;;14265:16:0;;;:30;;;;;14294:1;14285:6;:10;14265:30;14261:780;;;-1:-1:-1;;;;;14316:20:0;;;14312:371;;-1:-1:-1;;;;;14376:22:0;;14357:16;14376:22;;;:14;:22;;;;;;;;;14434:13;:60;;14493:1;14434:60;;;-1:-1:-1;;;;;14450:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14470:13:0;;14450:34;;;;;;;;14482:1;14450:40;;14434:60;14417:77;;14513:14;14530:61;14544:6;14530:61;;;;;;;;;;;;;;;;;:9;;:61;:13;:61::i;:::-;14513:78;;14610:57;14627:6;14635:9;14646;14657;14610:16;:57::i;:::-;14312:371;;;;-1:-1:-1;;;;;14703:20:0;;;14699:331;;-1:-1:-1;;;;;14763:22:0;;14744:16;14763:22;;;:14;:22;;;;;;;;;14821:13;:60;;14880:1;14821:60;;;-1:-1:-1;;;;;14837:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14857:13:0;;14837:34;;;;;;;;14869:1;14837:40;;14821:60;14804:77;-1:-1:-1;14900:14:0;14917:21;14804:77;14931:6;14917:13;:21::i;:::-;14900:38;;14957:57;14974:6;14982:9;14993;15004;14957:16;:57::i;14699:331::-;14172:876;;;:::o;36471:150::-;36578:9;36471:150;:::o;4981:333::-;5061:4;5160:12;5153:5;5145:28;;;;-1:-1:-1;;;5145:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5184:6;5197:1;5193;:5;;;;;;;4981:333;-1:-1:-1;;;;;4981:333:0:o;1438:180::-;1518:4;1544:5;;;1576:12;1568:6;;;;1560:29;;;;-1:-1:-1;;;1560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1609:1:0;1438:180;-1:-1:-1;;;;1438:180:0:o;15056:621::-;15170:18;15191:72;15198:12;15191:72;;;;;;;;;;;;;;;;;:6;:72::i;:::-;15170:93;;15293:1;15278:12;:16;;;:85;;;;-1:-1:-1;;;;;;15298:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15321:16:0;;15298:40;;;;;;;;;:50;:65;;;:50;;:65;15278:85;15274:329;;;-1:-1:-1;;;;;15378:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;15401:16:0;;15378:40;;;;;;;;15416:1;15378:46;:57;;;15274:329;;;15503:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15464:22:0;;-1:-1:-1;15464:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;15464:72:0;;;;;;;;;;;;;15549:25;;;:14;:25;;;;;;:44;;15577:16;;;15549:44;;;;;;;;;;15274:329;15618:51;;;;;;;;;;;;;;-1:-1:-1;;;;;15618:51:0;;;;;;;;;;;15056:621;;;;;:::o;15685:161::-;15760:6;15798:12;15791:5;15787:9;;15779:32;;;;-1:-1:-1;;;15779:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15836:1:0;;15685:161;-1:-1:-1;;15685:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://2d2f5e4ba81ad403323c8f8f82ade899913daf718f18668602fe7ec1fbe74c0a
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.