ETH Price: $2,926.71 (+4.76%)
 

Overview

Max Total Supply

2,737,904.023267436506086227 sdveCRV-DAO

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,122.105852485697515215 sdveCRV-DAO

Value
$0.00
0x14647973d093256920ce9c6c8a6646b3a4e43869
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:
veCurveVault

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 2021-03-01
*/

/**
 *Submitted for verification at Etherscan.io on 2020-11-05
 */

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "add: +");

        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(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "sub: -");
    }

    /**
     * @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(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "mul: *");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "div: /");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

interface StrategyProxy {
    function lock() external;
}

interface FeeDistribution {
    function claim(address) external;
}

contract veCurveVault {
    using SafeMath for uint256;

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

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

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

    /// @notice Total number of tokens in circulation
    uint256 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 => uint256)) internal allowances;
    mapping(address => uint256) 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)"
        );
    bytes32 public immutable DOMAINSEPARATOR;

    /// @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 => uint256) 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,
        uint256 previousBalance,
        uint256 newBalance
    );

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

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        _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,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        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: sig");
        require(nonce == nonces[signatory]++, "delegateBySig: nonce");
        require(now <= expiry, "delegateBySig: expired");
        _delegate(signatory, delegatee);
    }

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

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

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

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

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

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

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

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

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

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

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

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

    IERC20 public constant CRV =
        IERC20(0xD533a949740bb3306d119CC777fa900bA034cd52);
    /* address public constant LOCK = address(0xF147b8125d2ef93FB6965Db97D6746952a133934); */
    address public constant LOCK =
        address(0x52f541764E6e90eeBc5c21Ff570De0e2D63766B6);
    address public proxy = address(0x7A1848e7847F3f5FfB4d8e63BdB9569db535A4f0);
    address public feeDistribution;

    IERC20 public constant rewards =
        IERC20(0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490);

    uint256 public index = 0;
    uint256 public bal = 0;

    mapping(address => uint256) public supplyIndex;

    function update() external {
        _update();
    }

    function _update() internal {
        if (totalSupply > 0) {
            _claim();
            uint256 _bal = rewards.balanceOf(address(this));
            if (_bal > bal) {
                uint256 _diff = _bal.sub(bal, "veCRV::_update: bal _diff");
                if (_diff > 0) {
                    uint256 _ratio = _diff.mul(1e18).div(totalSupply);
                    if (_ratio > 0) {
                        index = index.add(_ratio);
                        bal = _bal;
                    }
                }
            }
        }
    }

    function _claim() internal {
        if (feeDistribution != address(0x0)) {
            FeeDistribution(feeDistribution).claim(address(this));
        }
    }

    function updateFor(address recipient) public {
        _update();
        uint256 _supplied = balances[recipient];
        if (_supplied > 0) {
            uint256 _supplyIndex = supplyIndex[recipient];
            supplyIndex[recipient] = index;
            uint256 _delta =
                index.sub(_supplyIndex, "veCRV::_claimFor: index delta");
            if (_delta > 0) {
                uint256 _share = _supplied.mul(_delta).div(1e18);
                claimable[recipient] = claimable[recipient].add(_share);
            }
        } else {
            supplyIndex[recipient] = index;
        }
    }

    mapping(address => uint256) public claimable;

    function claim() external {
        _claimFor(msg.sender);
    }

    function claimFor(address recipient) external {
        _claimFor(recipient);
    }

    function _claimFor(address recipient) internal {
        updateFor(recipient);
        rewards.transfer(recipient, claimable[recipient]);
        claimable[recipient] = 0;
        bal = rewards.balanceOf(address(this));
    }

    constructor() public {
        // Set governance for this token
        governance = msg.sender;
        DOMAINSEPARATOR = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                _getChainId(),
                address(this)
            )
        );
    }

    function _mint(address dst, uint256 amount) internal {
        updateFor(dst);
        // 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);

        // move delegates
        _moveDelegates(address(0), delegates[dst], amount);
    }

    function depositAll() external {
        _deposit(CRV.balanceOf(msg.sender));
    }

    function deposit(uint256 _amount) external {
        _deposit(_amount);
    }

    function _deposit(uint256 _amount) internal {
        CRV.transferFrom(msg.sender, LOCK, _amount);
        _mint(msg.sender, _amount);
        StrategyProxy(proxy).lock();
    }

    function setProxy(address _proxy) external {
        require(msg.sender == governance, "setGovernance: !gov");
        proxy = _proxy;
    }

    function setFeeDistribution(address _feeDistribution) external {
        require(msg.sender == governance, "setGovernance: !gov");
        feeDistribution = _feeDistribution;
    }

    /**
     * @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, "setGovernance: !gov");
        pendingGovernance = _governance;
    }

    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(
            msg.sender == pendingGovernance,
            "acceptGovernance: !pendingGov"
        );
        governance = pendingGovernance;
    }

    /**
     * @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 (uint256)
    {
        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, uint256 amount) external 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,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        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: signature");
        require(signatory == owner, "permit: unauthorized");
        require(now <= deadline, "permit: 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 (uint256) {
        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, uint256 amount) external 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,
        uint256 amount
    ) external returns (bool) {
        address spender = msg.sender;
        uint256 spenderAllowance = allowances[src][spender];

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

            emit Approval(src, spender, newAllowance);
        }

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

    function _transferTokens(
        address src,
        address dst,
        uint256 amount
    ) internal {
        require(src != address(0), "_transferTokens: zero address");
        require(dst != address(0), "_transferTokens: zero address");

        updateFor(src);
        updateFor(dst);

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

    function _getChainId() internal pure returns (uint256) {
        uint256 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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CRV","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAINSEPARATOR","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":"LOCK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","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":[],"name":"bal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"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":"recipient","type":"address"}],"name":"claimFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimable","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":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"proxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeDistribution","type":"address"}],"name":"setFeeDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplyIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"updateFor","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000808055600980546001600160a01b031916737a1848e7847f3f5ffb4d8e63bdb9569db535a4f0179055600b819055600c5534801561004357600080fd5b50600780546001600160a01b0319163317905560408051808201909152600f81526e7665435256205374616b652044414f60881b6020909101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357f7fb7ce80eeb01ffbf10faff0e5e1d2d8c01a5456bc815578bd8f32a2244603316100c7610118565b3060405160200180858152602001848152602001838152602001826001600160a01b03168152602001945050505050604051602081830303815290604052805190602001206080818152505061011c565b4690565b6080516123a66101406000398061098b52806110f5528061135c52506123a66000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c8063782d6fe111610151578063b6b55f25116100c3578063de5f626811610087578063de5f626814610743578063e380fcad1461074b578063e7a324dc14610771578063ec55688914610779578063f1127ed814610781578063f39c38a0146107d357610269565b8063b6b55f251461063a578063c3cda52014610657578063d505accf1461069e578063dd62ed3e146106ef578063ddeae0331461071d57610269565b80639ec5a894116101155780639ec5a894146105aa578063a2e62045146105b2578063a4f0d7d0146105ba578063a9059cbb146105c2578063ab033ea9146105ee578063b4b5ea571461061457610269565b8063782d6fe1146105225780637ecebe001461054e578063945c91421461057457806395d89b411461057c57806397107d6d1461058457610269565b80632986c0e5116101ea5780634e71d92d116101ae5780634e71d92d14610461578063587cde1e146104695780635aa6e6751461048f5780635c19a95c146104975780636fcfff45146104bd57806370a08231146104fc57610269565b80632986c0e51461040557806330adf81f1461040d578063313ce567146104155780633d79d1c814610433578063402914f51461043b57610269565b80631919db33116102315780631919db331461037557806320606b701461039b578063238efcbc146103a357806323b872dd146103ab5780632479b177146103e157610269565b806306fdde031461026e578063095ea7b3146102eb5780630e0a59681461032b5780631778e29c1461035357806318160ddd1461036d575b600080fd5b6102766107db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610806565b604080519115158252519081900360200190f35b6103516004803603602081101561034157600080fd5b50356001600160a01b031661086d565b005b61035b610989565b60408051918252519081900360200190f35b61035b6109ad565b6103516004803603602081101561038b57600080fd5b50356001600160a01b03166109b3565b61035b610a2a565b610351610a4e565b610317600480360360608110156103c157600080fd5b506001600160a01b03813581169160208101359091169060400135610ad1565b6103e9610bb3565b604080516001600160a01b039092168252519081900360200190f35b61035b610bc2565b61035b610bc8565b61041d610bec565b6040805160ff9092168252519081900360200190f35b61035b610bf1565b61035b6004803603602081101561045157600080fd5b50356001600160a01b0316610bf7565b610351610c09565b6103e96004803603602081101561047f57600080fd5b50356001600160a01b0316610c14565b6103e9610c2f565b610351600480360360208110156104ad57600080fd5b50356001600160a01b0316610c3e565b6104e3600480360360208110156104d357600080fd5b50356001600160a01b0316610c4b565b6040805163ffffffff9092168252519081900360200190f35b61035b6004803603602081101561051257600080fd5b50356001600160a01b0316610c63565b61035b6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610c7e565b61035b6004803603602081101561056457600080fd5b50356001600160a01b0316610e8d565b6103e9610e9f565b610276610eb7565b6103516004803603602081101561059a57600080fd5b50356001600160a01b0316610ede565b6103e9610f55565b610351610f6d565b6103e9610f75565b610317600480360360408110156105d857600080fd5b506001600160a01b038135169060200135610f8d565b6103516004803603602081101561060457600080fd5b50356001600160a01b0316610fa3565b61035b6004803603602081101561062a57600080fd5b50356001600160a01b031661101a565b6103516004803603602081101561065057600080fd5b503561107e565b610351600480360360c081101561066d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611087565b610351600480360360e08110156106b457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356112c5565b61035b6004803603604081101561070557600080fd5b506001600160a01b0381358116916020013516611569565b6103516004803603602081101561073357600080fd5b50356001600160a01b0316611594565b61035161159d565b61035b6004803603602081101561076157600080fd5b50356001600160a01b0316611624565b61035b611636565b6103e961165a565b6107b36004803603604081101561079757600080fd5b5080356001600160a01b0316906020013563ffffffff16611669565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103e9611696565b6040518060400160405280600f81526020016e7665435256205374616b652044414f60881b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6108756116a5565b6001600160a01b0381166000908152600560205260409020548015610968576001600160a01b0382166000908152600d602090815260408083208054600b54918290558251808401909352601d83527f76654352563a3a5f636c61696d466f723a20696e6465782064656c7461000000938301939093529192916108fa9184906117d6565b90508015610961576000610920670de0b6b3a764000061091a868561186d565b906118c5565b6001600160a01b0386166000908152600e602052604090205490915061094690826118f0565b6001600160a01b0386166000908152600e6020526040902055505b5050610985565b600b546001600160a01b0383166000908152600d60205260409020555b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005481565b6007546001600160a01b03163314610a08576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6008546001600160a01b03163314610aad576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b600854600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260046020908152604080832033808552925282205491929091908214801590610b0b57506000198114155b15610b9c576000610b378560405180606001604052806027815260200161234a602791398491906117d6565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610ba7868686611933565b50600195945050505050565b600a546001600160a01b031681565b600b5481565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600c5481565b600e6020526000908152604090205481565b610c1233611b14565b565b6001602052600090815260409020546001600160a01b031681565b6007546001600160a01b031681565b610c483382611c56565b50565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6000438210610cc5576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680610cf3576000915050610867565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310610d62576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050610867565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015610d9d576000915050610867565b600060001982015b8163ffffffff168163ffffffff161115610e5657600282820363ffffffff16048103610dcf612332565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e31576020015194506108679350505050565b805163ffffffff16871115610e4857819350610e4f565b6001820392505b5050610da5565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6040518060400160405280600b81526020016a736476654352562d44414f60a81b81525081565b6007546001600160a01b03163314610f33576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b610c126116a5565b7352f541764e6e90eebc5c21ff570de0e2d63766b681565b6000610f9a338484611933565b50600192915050565b6007546001600160a01b03163314610ff8576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526003602052604081205463ffffffff1680611045576000611077565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c4881611cd6565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561119a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111f7576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090208054600181019091558814611262576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156112b0576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6112ba818a611c56565b505050505050505050565b6001600160a01b0380881660008181526006602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015611400573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145c576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146114b9576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115611500576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600460209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610c4881611b14565b604080516370a0823160e01b81523360048201529051610c129173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b1580156115f357600080fd5b505afa158015611607573d6000803e3d6000fd5b505050506040513d602081101561161d57600080fd5b5051611cd6565b600d6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b6009546001600160a01b031681565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6008546001600160a01b031681565b60005415610c12576116b5611dec565b604080516370a0823160e01b81523060048201529051600091736c3f90f043a72fa612cbac8115ee7e52bde6e490916370a0823191602480820192602092909190829003018186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d602081101561173457600080fd5b5051600c54909150811115610c48576000611791600c546040518060400160405280601981526020017f76654352563a3a5f7570646174653a2062616c205f6469666600000000000000815250846117d69092919063ffffffff16565b9050801561098557600080546117b39061091a84670de0b6b3a764000061186d565b905080156117d157600b546117c890826118f0565b600b55600c8390555b505050565b600081848411156118655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561182a578181015183820152602001611812565b50505050905090810190601f1680156118575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261187c57506000610867565b8282028284828161188957fe5b0414611077576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006110778383604051806040016040528060068152602001656469763a202f60d01b815250611e5d565b600082820183811015611077576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6001600160a01b03831661198e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166119e9576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6119f28361086d565b6119fb8261086d565b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b038616600090815260059091529190912054611a529183906117d6565b6001600160a01b0380851660009081526005602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f7773000000000000818301529387168352529190912054611ab8918390611ec2565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611b1d8161086d565b6001600160a01b0381166000818152600e6020908152604080832054815163a9059cbb60e01b81526004810195909552602485015251736c3f90f043a72fa612cbac8115ee7e52bde6e4909363a9059cbb9360448083019493928390030190829087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b50506001600160a01b0381166000908152600e602090815260408083209290925581516370a0823160e01b81523060048201529151736c3f90f043a72fa612cbac8115ee7e52bde6e490926370a08231926024808301939192829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051600c5550565b6001600160a01b03808316600081815260016020818152604080842080546005845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611cd0828483611f20565b50505050565b604080516323b872dd60e01b81523360048201527352f541764e6e90eebc5c21ff570de0e2d63766b6602482015260448101839052905173d533a949740bb3306d119cc777fa900ba034cd52916323b872dd9160648083019260209291908290030181600087803b158015611d4a57600080fd5b505af1158015611d5e573d6000803e3d6000fd5b505050506040513d6020811015611d7457600080fd5b50611d819050338261209e565b600960009054906101000a90046001600160a01b03166001600160a01b031663f83d08ba6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b5050505050565b600a546001600160a01b031615610c1257600a5460408051630f41a04d60e11b815230600482015290516001600160a01b0390921691631e83409a9160248082019260009290919082900301818387803b158015611e4957600080fd5b505af1158015611cd0573d6000803e3d6000fd5b60008183611eac5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b506000838581611eb857fe5b0495945050505050565b60008383018285821015611f175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b50949350505050565b816001600160a01b0316836001600160a01b031614158015611f425750600081115b156117d1576001600160a01b0383161561200d576001600160a01b03831660009081526003602052604081205463ffffffff169081611f82576000611fb4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000611ffb84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846117d69092919063ffffffff16565b905061200986848484612152565b5050505b6001600160a01b038216156117d1576001600160a01b03821660009081526003602052604081205463ffffffff16908161204857600061207a565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b9050600061208882856118f0565b905061209685848484612152565b505050505050565b6120a78261086d565b6000546120b490826118f0565b60009081556001600160a01b0383168152600560205260409020546120d990826118f0565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001600160a01b03808316600090815260016020526040812054610985921683611f20565b6000612193436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a2033322062697473000000000000008152506122d4565b905060008463ffffffff161180156121dc57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612219576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561228a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061232a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b509192915050565b60408051808201909152600080825260208201529056fe7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212201d280ec22618317adc242c57ec9a9bfdc9688b17d4a1efaafd63ed4de102e20264736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c8063782d6fe111610151578063b6b55f25116100c3578063de5f626811610087578063de5f626814610743578063e380fcad1461074b578063e7a324dc14610771578063ec55688914610779578063f1127ed814610781578063f39c38a0146107d357610269565b8063b6b55f251461063a578063c3cda52014610657578063d505accf1461069e578063dd62ed3e146106ef578063ddeae0331461071d57610269565b80639ec5a894116101155780639ec5a894146105aa578063a2e62045146105b2578063a4f0d7d0146105ba578063a9059cbb146105c2578063ab033ea9146105ee578063b4b5ea571461061457610269565b8063782d6fe1146105225780637ecebe001461054e578063945c91421461057457806395d89b411461057c57806397107d6d1461058457610269565b80632986c0e5116101ea5780634e71d92d116101ae5780634e71d92d14610461578063587cde1e146104695780635aa6e6751461048f5780635c19a95c146104975780636fcfff45146104bd57806370a08231146104fc57610269565b80632986c0e51461040557806330adf81f1461040d578063313ce567146104155780633d79d1c814610433578063402914f51461043b57610269565b80631919db33116102315780631919db331461037557806320606b701461039b578063238efcbc146103a357806323b872dd146103ab5780632479b177146103e157610269565b806306fdde031461026e578063095ea7b3146102eb5780630e0a59681461032b5780631778e29c1461035357806318160ddd1461036d575b600080fd5b6102766107db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610806565b604080519115158252519081900360200190f35b6103516004803603602081101561034157600080fd5b50356001600160a01b031661086d565b005b61035b610989565b60408051918252519081900360200190f35b61035b6109ad565b6103516004803603602081101561038b57600080fd5b50356001600160a01b03166109b3565b61035b610a2a565b610351610a4e565b610317600480360360608110156103c157600080fd5b506001600160a01b03813581169160208101359091169060400135610ad1565b6103e9610bb3565b604080516001600160a01b039092168252519081900360200190f35b61035b610bc2565b61035b610bc8565b61041d610bec565b6040805160ff9092168252519081900360200190f35b61035b610bf1565b61035b6004803603602081101561045157600080fd5b50356001600160a01b0316610bf7565b610351610c09565b6103e96004803603602081101561047f57600080fd5b50356001600160a01b0316610c14565b6103e9610c2f565b610351600480360360208110156104ad57600080fd5b50356001600160a01b0316610c3e565b6104e3600480360360208110156104d357600080fd5b50356001600160a01b0316610c4b565b6040805163ffffffff9092168252519081900360200190f35b61035b6004803603602081101561051257600080fd5b50356001600160a01b0316610c63565b61035b6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610c7e565b61035b6004803603602081101561056457600080fd5b50356001600160a01b0316610e8d565b6103e9610e9f565b610276610eb7565b6103516004803603602081101561059a57600080fd5b50356001600160a01b0316610ede565b6103e9610f55565b610351610f6d565b6103e9610f75565b610317600480360360408110156105d857600080fd5b506001600160a01b038135169060200135610f8d565b6103516004803603602081101561060457600080fd5b50356001600160a01b0316610fa3565b61035b6004803603602081101561062a57600080fd5b50356001600160a01b031661101a565b6103516004803603602081101561065057600080fd5b503561107e565b610351600480360360c081101561066d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611087565b610351600480360360e08110156106b457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356112c5565b61035b6004803603604081101561070557600080fd5b506001600160a01b0381358116916020013516611569565b6103516004803603602081101561073357600080fd5b50356001600160a01b0316611594565b61035161159d565b61035b6004803603602081101561076157600080fd5b50356001600160a01b0316611624565b61035b611636565b6103e961165a565b6107b36004803603604081101561079757600080fd5b5080356001600160a01b0316906020013563ffffffff16611669565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103e9611696565b6040518060400160405280600f81526020016e7665435256205374616b652044414f60881b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6108756116a5565b6001600160a01b0381166000908152600560205260409020548015610968576001600160a01b0382166000908152600d602090815260408083208054600b54918290558251808401909352601d83527f76654352563a3a5f636c61696d466f723a20696e6465782064656c7461000000938301939093529192916108fa9184906117d6565b90508015610961576000610920670de0b6b3a764000061091a868561186d565b906118c5565b6001600160a01b0386166000908152600e602052604090205490915061094690826118f0565b6001600160a01b0386166000908152600e6020526040902055505b5050610985565b600b546001600160a01b0383166000908152600d60205260409020555b5050565b7fd2926f089cf3f146ec2c97570424a16e88341107e1f99afe19ffefc3293dd2d481565b60005481565b6007546001600160a01b03163314610a08576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6008546001600160a01b03163314610aad576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b600854600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260046020908152604080832033808552925282205491929091908214801590610b0b57506000198114155b15610b9c576000610b378560405180606001604052806027815260200161234a602791398491906117d6565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610ba7868686611933565b50600195945050505050565b600a546001600160a01b031681565b600b5481565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600c5481565b600e6020526000908152604090205481565b610c1233611b14565b565b6001602052600090815260409020546001600160a01b031681565b6007546001600160a01b031681565b610c483382611c56565b50565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6000438210610cc5576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680610cf3576000915050610867565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310610d62576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050610867565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015610d9d576000915050610867565b600060001982015b8163ffffffff168163ffffffff161115610e5657600282820363ffffffff16048103610dcf612332565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e31576020015194506108679350505050565b805163ffffffff16871115610e4857819350610e4f565b6001820392505b5050610da5565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6040518060400160405280600b81526020016a736476654352562d44414f60a81b81525081565b6007546001600160a01b03163314610f33576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b610c126116a5565b7352f541764e6e90eebc5c21ff570de0e2d63766b681565b6000610f9a338484611933565b50600192915050565b6007546001600160a01b03163314610ff8576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526003602052604081205463ffffffff1680611045576000611077565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c4881611cd6565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527fd2926f089cf3f146ec2c97570424a16e88341107e1f99afe19ffefc3293dd2d460c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561119a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111f7576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090208054600181019091558814611262576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156112b0576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6112ba818a611c56565b505050505050505050565b6001600160a01b0380881660008181526006602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527fd2926f089cf3f146ec2c97570424a16e88341107e1f99afe19ffefc3293dd2d461010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015611400573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145c576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146114b9576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115611500576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600460209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610c4881611b14565b604080516370a0823160e01b81523360048201529051610c129173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b1580156115f357600080fd5b505afa158015611607573d6000803e3d6000fd5b505050506040513d602081101561161d57600080fd5b5051611cd6565b600d6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b6009546001600160a01b031681565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6008546001600160a01b031681565b60005415610c12576116b5611dec565b604080516370a0823160e01b81523060048201529051600091736c3f90f043a72fa612cbac8115ee7e52bde6e490916370a0823191602480820192602092909190829003018186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d602081101561173457600080fd5b5051600c54909150811115610c48576000611791600c546040518060400160405280601981526020017f76654352563a3a5f7570646174653a2062616c205f6469666600000000000000815250846117d69092919063ffffffff16565b9050801561098557600080546117b39061091a84670de0b6b3a764000061186d565b905080156117d157600b546117c890826118f0565b600b55600c8390555b505050565b600081848411156118655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561182a578181015183820152602001611812565b50505050905090810190601f1680156118575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261187c57506000610867565b8282028284828161188957fe5b0414611077576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006110778383604051806040016040528060068152602001656469763a202f60d01b815250611e5d565b600082820183811015611077576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6001600160a01b03831661198e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166119e9576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6119f28361086d565b6119fb8261086d565b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b038616600090815260059091529190912054611a529183906117d6565b6001600160a01b0380851660009081526005602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f7773000000000000818301529387168352529190912054611ab8918390611ec2565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611b1d8161086d565b6001600160a01b0381166000818152600e6020908152604080832054815163a9059cbb60e01b81526004810195909552602485015251736c3f90f043a72fa612cbac8115ee7e52bde6e4909363a9059cbb9360448083019493928390030190829087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b50506001600160a01b0381166000908152600e602090815260408083209290925581516370a0823160e01b81523060048201529151736c3f90f043a72fa612cbac8115ee7e52bde6e490926370a08231926024808301939192829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051600c5550565b6001600160a01b03808316600081815260016020818152604080842080546005845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611cd0828483611f20565b50505050565b604080516323b872dd60e01b81523360048201527352f541764e6e90eebc5c21ff570de0e2d63766b6602482015260448101839052905173d533a949740bb3306d119cc777fa900ba034cd52916323b872dd9160648083019260209291908290030181600087803b158015611d4a57600080fd5b505af1158015611d5e573d6000803e3d6000fd5b505050506040513d6020811015611d7457600080fd5b50611d819050338261209e565b600960009054906101000a90046001600160a01b03166001600160a01b031663f83d08ba6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b5050505050565b600a546001600160a01b031615610c1257600a5460408051630f41a04d60e11b815230600482015290516001600160a01b0390921691631e83409a9160248082019260009290919082900301818387803b158015611e4957600080fd5b505af1158015611cd0573d6000803e3d6000fd5b60008183611eac5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b506000838581611eb857fe5b0495945050505050565b60008383018285821015611f175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b50949350505050565b816001600160a01b0316836001600160a01b031614158015611f425750600081115b156117d1576001600160a01b0383161561200d576001600160a01b03831660009081526003602052604081205463ffffffff169081611f82576000611fb4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000611ffb84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846117d69092919063ffffffff16565b905061200986848484612152565b5050505b6001600160a01b038216156117d1576001600160a01b03821660009081526003602052604081205463ffffffff16908161204857600061207a565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b9050600061208882856118f0565b905061209685848484612152565b505050505050565b6120a78261086d565b6000546120b490826118f0565b60009081556001600160a01b0383168152600560205260409020546120d990826118f0565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001600160a01b03808316600090815260016020526040812054610985921683611f20565b6000612193436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a2033322062697473000000000000008152506122d4565b905060008463ffffffff161180156121dc57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612219576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561228a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061232a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b509192915050565b60408051808201909152600080825260208201529056fe7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212201d280ec22618317adc242c57ec9a9bfdc9688b17d4a1efaafd63ed4de102e20264736f6c634300060c0033

Deployed Bytecode Sourcemap

9592:18604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24042:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24042:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19883:624;;;;;;;;;;;;;;;;-1:-1:-1;19883:624:0;-1:-1:-1;;;;;19883:624:0;;:::i;:::-;;10797:40;;;:::i;:::-;;;;;;;;;;;;;;;;10021:30;;;:::i;22244:183::-;;;;;;;;;;;;;;;;-1:-1:-1;22244:183:0;-1:-1:-1;;;;;22244:183:0;;:::i;10638:152::-;;;:::i;22885:207::-;;;:::i;26760:677::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26760:677:0;;;;;;;;;;;;;;;;;:::i;18822:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;18822:30:0;;;;;;;;;;;;;;18962:24;;;:::i;11141:161::-;;;:::i;9922:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18993:22;;;:::i;20515:44::-;;;;;;;;;;;;;;;;-1:-1:-1;20515:44:0;-1:-1:-1;;;;;20515:44:0;;:::i;20568:66::-;;;:::i;10125:44::-;;;;;;;;;;;;;;;;-1:-1:-1;10125:44:0;-1:-1:-1;;;;;10125:44:0;;:::i;18380:25::-;;;:::i;12188:95::-;;;;;;;;;;;;;;;;-1:-1:-1;12188:95:0;-1:-1:-1;;;;;12188:95:0;;:::i;10389:48::-;;;;;;;;;;;;;;;;-1:-1:-1;10389:48:0;-1:-1:-1;;;;;10389:48:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;25929:111;;;;;;;;;;;;;;;;-1:-1:-1;25929:111:0;-1:-1:-1;;;;;25929:111:0;;:::i;14346:1229::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14346:1229:0;;;;;;;;:::i;11383:41::-;;;;;;;;;;;;;;;;-1:-1:-1;11383:41:0;-1:-1:-1;;;;;11383:41:0;;:::i;18453:88::-;;;:::i;9814:45::-;;;:::i;22093:143::-;;;;;;;;;;;;;;;;-1:-1:-1;22093:143:0;-1:-1:-1;;;;;22093:143:0;;:::i;18861:92::-;;;:::i;19079:55::-;;;:::i;18643:91::-;;;:::i;26301:152::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26301:152:0;;;;;;;;:::i;22592:170::-;;;;;;;;;;;;;;;;-1:-1:-1;22592:170:0;-1:-1:-1;;;;;22592:170:0;;:::i;13679:236::-;;;;;;;;;;;;;;;;-1:-1:-1;13679:236:0;-1:-1:-1;;;;;13679:236:0;;:::i;21817:79::-;;;;;;;;;;;;;;;;-1:-1:-1;21817:79:0;;:::i;12717:761::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12717:761:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24739:987::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24739:987:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23396:171::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23396:171:0;;;;;;;;;;:::i;20642:85::-;;;;;;;;;;;;;;;;-1:-1:-1;20642:85:0;-1:-1:-1;;;;;20642:85:0;;:::i;21724:::-;;;:::i;19024:46::-;;;;;;;;;;;;;;;;-1:-1:-1;19024:46:0;-1:-1:-1;;;;;19024:46:0;;:::i;10931:120::-;;;:::i;18741:74::-;;;:::i;10252:68::-;;;;;;;;;;;;;;;;-1:-1:-1;10252:68:0;;-1:-1:-1;;;;;10252:68:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;18412:32;;;:::i;9706:47::-;;;;;;;;;;;;;;-1:-1:-1;;;9706:47:0;;;;:::o;24042:210::-;24138:10;24110:4;24127:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;24127:31:0;;;;;;;;;;;:40;;;24185:37;;;;;;;24110:4;;24127:31;;24138:10;;24185:37;;;;;;;;-1:-1:-1;24240:4:0;24042:210;;;;;:::o;19883:624::-;19939:9;:7;:9::i;:::-;-1:-1:-1;;;;;19979:19:0;;19959:17;19979:19;;;:8;:19;;;;;;20013:13;;20009:491;;-1:-1:-1;;;;;20066:22:0;;20043:20;20066:22;;;:11;:22;;;;;;;;;;20128:5;;20103:30;;;;20182:56;;;;;;;;;;;;;;;;;;;20066:22;;20043:20;20182:56;;20066:22;;20182:9;:56::i;:::-;20148:90;-1:-1:-1;20257:10:0;;20253:173;;20288:14;20305:31;20331:4;20305:21;:9;20319:6;20305:13;:21::i;:::-;:25;;:31::i;:::-;-1:-1:-1;;;;;20378:20:0;;;;;;:9;:20;;;;;;20288:48;;-1:-1:-1;20378:32:0;;20288:48;20378:24;:32::i;:::-;-1:-1:-1;;;;;20355:20:0;;;;;;:9;:20;;;;;:55;-1:-1:-1;20253:173:0;20009:491;;;;;20483:5;;-1:-1:-1;;;;;20458:22:0;;;;;;:11;:22;;;;;:30;20009:491;19883:624;;:::o;10797:40::-;;;:::o;10021:30::-;;;;:::o;22244:183::-;22340:10;;-1:-1:-1;;;;;22340:10:0;22326;:24;22318:56;;;;;-1:-1:-1;;;22318:56:0;;;;;;;;;;;;-1:-1:-1;;;22318:56:0;;;;;;;;;;;;;;;22385:15;:34;;-1:-1:-1;;;;;;22385:34:0;-1:-1:-1;;;;;22385:34:0;;;;;;;;;;22244:183::o;10638:152::-;10689:101;10638:152;:::o;22885:207::-;22969:17;;-1:-1:-1;;;;;22969:17:0;22955:10;:31;22933:110;;;;;-1:-1:-1;;;22933:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23067:17;;23054:10;:30;;-1:-1:-1;;;;;;23054:30:0;-1:-1:-1;;;;;23067:17:0;;;23054:30;;;;;;22885:207::o;26760:677::-;-1:-1:-1;;;;;26959:15:0;;26876:4;26959:15;;;:10;:15;;;;;;;;26911:10;26959:24;;;;;;;;26876:4;;26911:10;;26959:24;27000:14;;;;;:49;;;-1:-1:-1;;27018:16:0;:31;;27000:49;26996:366;;;27066:20;27106:132;27149:6;27106:132;;;;;;;;;;;;;;;;;:16;;:132;:20;:132::i;:::-;-1:-1:-1;;;;;27253:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;27314:36;;;;;;;27066:172;;-1:-1:-1;27253:24:0;;:15;;27314:36;;;;;;;;;26996:366;;27374:33;27390:3;27395;27400:6;27374:15;:33::i;:::-;-1:-1:-1;27425:4:0;;26760:677;-1:-1:-1;;;;;26760:677:0:o;18822:30::-;;;-1:-1:-1;;;;;18822:30:0;;:::o;18962:24::-;;;;:::o;11141:161::-;11192:110;11141:161;:::o;9922:35::-;9955:2;9922:35;:::o;18993:22::-;;;;:::o;20515:44::-;;;;;;;;;;;;;:::o;20568:66::-;20605:21;20615:10;20605:9;:21::i;:::-;20568:66::o;10125:44::-;;;;;;;;;;;;-1:-1:-1;;;;;10125:44:0;;:::o;18380:25::-;;;-1:-1:-1;;;;;18380:25:0;;:::o;12188:95::-;12243:32;12253:10;12265:9;12243;:32::i;:::-;12188:95;:::o;10389:48::-;;;;;;;;;;;;;;;:::o;25929:111::-;-1:-1:-1;;;;;26015:17:0;25988:7;26015:17;;;:8;:17;;;;;;;25929:111::o;14346:1229::-;14455:7;14502:12;14488:11;:26;14480:53;;;;;-1:-1:-1;;;14480:53:0;;;;;;;;;;;;-1:-1:-1;;;14480:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;14568:23:0;;14546:19;14568:23;;;:14;:23;;;;;;;;14606:17;14602:58;;14647:1;14640:8;;;;;14602:58;-1:-1:-1;;;;;14720:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;14741:16:0;;14720:38;;;;;;;;;:48;;:63;-1:-1:-1;14716:147:0;;-1:-1:-1;;;;;14807:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;14828:16:0;;;;14807:38;;;;;;;;14843:1;14807:44;;;-1:-1:-1;14800:51:0;;14716:147;-1:-1:-1;;;;;14924:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;14920:88:0;;;14995:1;14988:8;;;;;14920:88;15020:12;-1:-1:-1;;15062:16:0;;15089:428;15104:5;15096:13;;:5;:13;;;15089:428;;;15168:1;15151:13;;;15150:19;;;15142:27;;15211:20;;:::i;:::-;-1:-1:-1;;;;;;15234:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;15211:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15281:27;;15277:229;;;15336:8;;;;-1:-1:-1;15329:15:0;;-1:-1:-1;;;;15329:15:0;15277:229;15370:12;;:26;;;-1:-1:-1;15366:140:0;;;15425:6;15417:14;;15366:140;;;15489:1;15480:6;:10;15472:18;;15366:140;15089:428;;;;;-1:-1:-1;;;;;;15534:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;14346:1229:0;;;;:::o;11383:41::-;;;;;;;;;;;;;:::o;18453:88::-;18498:42;18453:88;:::o;9814:45::-;;;;;;;;;;;;;;-1:-1:-1;;;9814:45:0;;;;:::o;22093:143::-;22169:10;;-1:-1:-1;;;;;22169:10:0;22155;:24;22147:56;;;;;-1:-1:-1;;;22147:56:0;;;;;;;;;;;;-1:-1:-1;;;22147:56:0;;;;;;;;;;;;;;;22214:5;:14;;-1:-1:-1;;;;;;22214:14:0;-1:-1:-1;;;;;22214:14:0;;;;;;;;;;22093:143::o;18861:92::-;18910:42;18861:92;:::o;19079:55::-;19117:9;:7;:9::i;18643:91::-;18691:42;18643:91;:::o;26301:152::-;26366:4;26383:40;26399:10;26411:3;26416:6;26383:15;:40::i;:::-;-1:-1:-1;26441:4:0;26301:152;;;;:::o;22592:170::-;22678:10;;-1:-1:-1;;;;;22678:10:0;22664;:24;22656:56;;;;;-1:-1:-1;;;22656:56:0;;;;;;;;;;;;-1:-1:-1;;;22656:56:0;;;;;;;;;;;;;;;22723:17;:31;;-1:-1:-1;;;;;;22723:31:0;-1:-1:-1;;;;;22723:31:0;;;;;;;;;;22592:170::o;13679:236::-;-1:-1:-1;;;;;13786:23:0;;13744:7;13786:23;;;:14;:23;;;;;;;;13840:16;:67;;13906:1;13840:67;;;-1:-1:-1;;;;;13859:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;13880:16:0;;13859:38;;;;;;;;13895:1;13859:44;;13840:67;13820:87;13679:236;-1:-1:-1;;;13679:236:0:o;21817:79::-;21871:17;21880:7;21871:8;:17::i;12717:761::-;12962:57;;;10986:65;12962:57;;;;;;;;-1:-1:-1;;;;;12962:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12934:100;;;;;;-1:-1:-1;;;13103:57:0;;;;13132:15;13103:57;;;;;;;;;;;;;;;;;;;;;;;;;;;13075:100;;;;;;;;;12900:18;13206:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12934:100;;13075;12900:18;;13206:26;;;;;;;-1:-1:-1;;13206:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13206:26:0;;-1:-1:-1;;13206:26:0;;;-1:-1:-1;;;;;;;13251:23:0;;13243:54;;;;;-1:-1:-1;;;13243:54:0;;;;;;;;;;;;-1:-1:-1;;;13243:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13325:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;13316:28;;13308:61;;;;;-1:-1:-1;;;13308:61:0;;;;;;;;;;;;-1:-1:-1;;;13308:61:0;;;;;;;;;;;;;;;13395:6;13388:3;:13;;13380:48;;;;;-1:-1:-1;;;13380:48:0;;;;;;;;;;;;-1:-1:-1;;;13380:48:0;;;;;;;;;;;;;;;13439:31;13449:9;13460;13439;:31::i;:::-;12717:761;;;;;;;;;:::o;24739:987::-;-1:-1:-1;;;;;25162:13:0;;;24942:18;25162:13;;;:6;:13;;;;;;;;:15;;;;;;;;;25004:223;;11192:110;25004:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24976:266;;;;;;-1:-1:-1;;;25311:57:0;;;;25340:15;25311:57;;;;;;;;;;;;;;;;;;;;;;;;;;;25283:100;;;;;;;;;25414:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24976:266;;25283:100;;25162:15;;25414:26;;;;;25162:13;;-1:-1:-1;;25414:26:0;;;;;;;;;;25162:15;25414:26;;;;;;;;;;;;;;;-1:-1:-1;;25414:26:0;;-1:-1:-1;;25414:26:0;;;-1:-1:-1;;;;;;;25459:23:0;;25451:53;;;;;-1:-1:-1;;;25451:53:0;;;;;;;;;;;;-1:-1:-1;;;25451:53:0;;;;;;;;;;;;;;;25536:5;-1:-1:-1;;;;;25523:18:0;:9;-1:-1:-1;;;;;25523:18:0;;25515:51;;;;;-1:-1:-1;;;25515:51:0;;;;;;;;;;;;-1:-1:-1;;;25515:51:0;;;;;;;;;;;;;;;25592:8;25585:3;:15;;25577:43;;;;;-1:-1:-1;;;25577:43:0;;;;;;;;;;;;-1:-1:-1;;;25577:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25633:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;25686:32;;;;;;;;;;;;;;;;;24739:987;;;;;;;;;;:::o;23396:171::-;-1:-1:-1;;;;;23531:19:0;;;23499:7;23531:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;23396:171::o;20642:85::-;20699:20;20709:9;20699;:20::i;21724:85::-;21775:25;;;-1:-1:-1;;;21775:25:0;;21789:10;21775:25;;;;;;21766:35;;18498:42;;21775:13;;:25;;;;;;;;;;;;;;;18498:42;21775:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21775:25:0;21766:8;:35::i;19024:46::-;;;;;;;;;;;;;:::o;10931:120::-;10986:65;10931:120;:::o;18741:74::-;;;-1:-1:-1;;;;;18741:74:0;;:::o;10252:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18412:32::-;;;-1:-1:-1;;;;;18412:32:0;;:::o;19142:563::-;19199:1;19185:11;:15;19181:517;;19217:8;:6;:8::i;:::-;19255:32;;;-1:-1:-1;;;19255:32:0;;19281:4;19255:32;;;;;;19240:12;;18910:42;;19255:17;;:32;;;;;;;;;;;;;;;18910:42;19255:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19255:32:0;19313:3;;19255:32;;-1:-1:-1;19306:10:0;;19302:385;;;19337:13;19353:42;19362:3;;19353:42;;;;;;;;;;;;;;;;;:4;:8;;:42;;;;;:::i;:::-;19337:58;-1:-1:-1;19418:9:0;;19414:258;;19452:14;19489:11;;19469:32;;:15;:5;19479:4;19469:9;:15::i;:32::-;19452:49;-1:-1:-1;19528:10:0;;19524:129;;19575:5;;:17;;19585:6;19575:9;:17::i;:::-;19567:5;:25;19619:3;:10;;;19524:129;19414:258;19302:385;19181:517;19142:563::o;5090:226::-;5210:7;5246:12;5238:6;;;;5230:29;;;;-1:-1:-1;;;5230:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5282:5:0;;;5090:226::o;5559:444::-;5617:7;5862:6;5858:47;;-1:-1:-1;5892:1:0;5885:8;;5858:47;5929:5;;;5933:1;5929;:5;:1;5953:5;;;;;:10;5945:29;;;;;-1:-1:-1;;;5945:29:0;;;;;;;;;;;;-1:-1:-1;;;5945:29:0;;;;;;;;;;;;;;7224:112;7282:7;7309:19;7313:1;7316;7309:19;;;;;;;;;;;;;-1:-1:-1;;;7309:19:0;;;:3;:19::i;3783:160::-;3841:7;3873:5;;;3897:6;;;;3889:25;;;;;-1:-1:-1;;;3889:25:0;;;;;;;;;;;;-1:-1:-1;;;3889:25:0;;;;;;;;;;;;;;27445:561;-1:-1:-1;;;;;27574:17:0;;27566:59;;;;;-1:-1:-1;;;27566:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27644:17:0;;27636:59;;;;;-1:-1:-1;;;27636:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27708:14;27718:3;27708:9;:14::i;:::-;27733;27743:3;27733:9;:14::i;:::-;27776:98;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27776:13:0;;-1:-1:-1;27776:13:0;;;:8;:13;;;;;;;;:98;;27808:6;;27776:17;:98::i;:::-;-1:-1:-1;;;;;27760:13:0;;;;;;;:8;:13;;;;;;;;:114;;;;27901:55;;;;;;;;;;;;;;;:13;;;;;;;;;;;:55;;27919:6;;27901:17;:55::i;:::-;-1:-1:-1;;;;;27885:13:0;;;;;;;:8;:13;;;;;;;;;:71;;;;27972:26;;;;;;;27885:13;;27972:26;;;;;;;;;;;;;27445:561;;;:::o;20735:230::-;20793:20;20803:9;20793;:20::i;:::-;-1:-1:-1;;;;;20852:20:0;;;;;;:9;:20;;;;;;;;;20824:49;;-1:-1:-1;;;20824:49:0;;;;;;;;;;;;;;18910:42;;20824:16;;:49;;;;;20852:20;20824:49;;;;;;;;18910:42;20824:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;20884:20:0;;20907:1;20884:20;;;:9;20824:49;20884:20;;;;;;;:24;;;;20925:32;;-1:-1:-1;;;20925:32:0;;20951:4;20925:32;;;;;;18910:42;;20925:17;;:32;;;;;20824:49;;20925:32;;;;;18910:42;20925:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20925:32:0;20919:3;:38;-1:-1:-1;20735:230:0:o;15583:376::-;-1:-1:-1;;;;;15686:20:0;;;15660:23;15686:20;;;:9;:20;;;;;;;;;;15744:8;:19;;;;;;15774:20;;;;:32;;;-1:-1:-1;;;;;;15774:32:0;;;;;;;15824:54;;15686:20;;;;;15744:19;;15774:32;;15686:20;;;15824:54;;15660:23;15824:54;15891:60;15906:15;15923:9;15934:16;15891:14;:60::i;:::-;15583:376;;;;:::o;21904:181::-;21959:43;;;-1:-1:-1;;;21959:43:0;;21976:10;21959:43;;;;18691:42;21959:43;;;;;;;;;;;;18498:42;;21959:16;;:43;;;;;;;;;;;;;;-1:-1:-1;18498:42:0;21959:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22013:26:0;;-1:-1:-1;22019:10:0;22031:7;22013:5;:26::i;:::-;22064:5;;;;;;;;;-1:-1:-1;;;;;22064:5:0;-1:-1:-1;;;;;22050:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21904:181;:::o;19713:162::-;19755:15;;-1:-1:-1;;;;;19755:15:0;:31;19751:117;;19819:15;;19803:53;;;-1:-1:-1;;;19803:53:0;;19850:4;19803:53;;;;;;-1:-1:-1;;;;;19819:15:0;;;;19803:38;;:53;;;;;19819:15;;19803:53;;;;;;;;19819:15;;19803:53;;;;;;;;;;;;;;;;;;;;;;;;;;7824:379;7944:7;8046:12;8039:5;8031:28;;;;-1:-1:-1;;;8031:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8070:9;8086:1;8082;:5;;;;;;;7824:379;-1:-1:-1;;;;;7824:379:0:o;4194:226::-;4314:7;4346:5;;;4378:12;4370:6;;;;4362:29;;;;-1:-1:-1;;;4362:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4411:1:0;4194:226;-1:-1:-1;;;;4194:226:0:o;15967:1074::-;16107:6;-1:-1:-1;;;;;16097:16:0;:6;-1:-1:-1;;;;;16097:16:0;;;:30;;;;;16126:1;16117:6;:10;16097:30;16093:941;;;-1:-1:-1;;;;;16148:20:0;;;16144:455;;-1:-1:-1;;;;;16208:22:0;;16189:16;16208:22;;;:14;:22;;;;;;;;;16290:13;:110;;16399:1;16290:110;;;-1:-1:-1;;;;;16331:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;16351:13:0;;16331:34;;;;;;;;16363:1;16331:40;;16290:110;16249:151;;16419:17;16460:47;16474:6;16460:47;;;;;;;;;;;;;-1:-1:-1;;;16460:47:0;;;:9;:13;;:47;;;;;:::i;:::-;16419:88;;16526:57;16543:6;16551:9;16562;16573;16526:16;:57::i;:::-;16144:455;;;;-1:-1:-1;;;;;16619:20:0;;;16615:408;;-1:-1:-1;;;;;16679:22:0;;16660:16;16679:22;;;:14;:22;;;;;;;;;16761:13;:110;;16870:1;16761:110;;;-1:-1:-1;;;;;16802:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;16822:13:0;;16802:34;;;;;;;;16834:1;16802:40;;16761:110;16720:151;-1:-1:-1;16890:17:0;16910:21;16720:151;16924:6;16910:13;:21::i;:::-;16890:41;;16950:57;16967:6;16975:9;16986;16997;16950:16;:57::i;:::-;16615:408;;;15967:1074;;;:::o;21314:402::-;21378:14;21388:3;21378:9;:14::i;:::-;21445:11;;:23;;21461:6;21445:15;:23::i;:::-;21431:11;:37;;;-1:-1:-1;;;;;21544:13:0;;;;:8;:13;;;;;;:25;;21562:6;21544:17;:25::i;:::-;-1:-1:-1;;;;;21528:13:0;;;;;;:8;:13;;;;;;;;:41;;;;21585:33;;;;;;;21528:13;;;;21585:33;;;;;;;;;;-1:-1:-1;;;;;21685:14:0;;;21681:1;21685:14;;;:9;:14;;;;;;21658:50;;21685:14;21701:6;21658:14;:50::i;17049:749::-;17214:18;17235:49;17242:12;17235:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;17214:70;;17330:1;17315:12;:16;;;:98;;;;-1:-1:-1;;;;;;17348:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;17371:16:0;;17348:40;;;;;;;;;:50;:65;;;:50;;:65;17315:98;17297:425;;;-1:-1:-1;;;;;17440:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;17463:16:0;;17440:40;;;;;;;;17478:1;17440:46;:57;;;17297:425;;;17569:82;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17530:22:0;;-1:-1:-1;17530:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:121;;;;;;;-1:-1:-1;;17530:121:0;;;;;;;;;;;;;17666:25;;;:14;:25;;;;;;:44;;17694:16;;;17666:44;;;;;;;;;;17297:425;17739:51;;;;;;;;;;;;;;-1:-1:-1;;;;;17739:51:0;;;;;;;;;;;17049:749;;;;;:::o;17806:196::-;17911:6;17954:12;17947:5;17943:9;;17935:32;;;;-1:-1:-1;;;17935:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17992:1:0;;17806:196;-1:-1:-1;;17806:196:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://1d280ec22618317adc242c57ec9a9bfdc9688b17d4a1efaafd63ed4de102e202
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.