Address Details
contract

0x6834B34f9C0cDa12a62b497af25a8C39023ab9B7

Contract Name
YandaToken
Creator
0x43cc7e–610156 at 0x3acc12–1282f2
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
16217282
This contract has been partially verified via Sourcify. View contract in Sourcify repository
Contract name:
YandaToken




Optimization enabled
true
Compiler version
v0.8.3+commit.8d00100c




Optimization runs
200
EVM Version
istanbul




Verified at
2022-05-24T09:52:35.888886Z

YandaToken.sol

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

import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20VotesUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract YandaToken is Initializable, ERC20Upgradeable, PausableUpgradeable, AccessControlUpgradeable, ERC20PermitUpgradeable, ERC20VotesUpgradeable {

    using SafeMath for uint256;

    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    address private _owner;

    enum State { AWAITING_COST, AWAITING_TRANSFER, AWAITING_TERMINATION, AWAITING_VALIDATION, COMPLETED }
    struct Process {
        State state;
        uint cost;
        address service;
        bytes32 productId;
        string productData;
        uint validations;
        uint failedValidations;
    }
    struct Service {
        address[] validators;
        uint validationPerc;
        uint commissionPerc;
        uint validatorVersion;
    }
    struct Validator {
        uint requests;
        uint validations;
        bool ready;
    }
    mapping(address => mapping(bytes32 => Process)) public processes;
    mapping(address => bytes32) public depositingProducts;
    mapping(address => Service) public services;
    mapping(address => Validator) public validators;

    event Deposit(
        address indexed customer,
        address indexed service,
        bytes32 indexed productId,
        uint256 weiAmount
    );
    event Action(
        address indexed customer,
        address indexed service,
        bytes32 indexed productId,
        string data
    );
    event Terminate(
        address indexed customer,
        address indexed service,
        bytes32 indexed productId
    );
    event Complete(
        address indexed customer,
        address indexed service, 
        bytes32 indexed productId,
        bool success
    );
    event CostRequest(
        address indexed customer,
        address indexed service,
        bytes32 indexed productId,
        string data
    );
    event CostResponse(
        address indexed customer,
        address indexed service,
        bytes32 indexed productId,
        uint cost
    );

    modifier onlyService() {
        require(services[msg.sender].validationPerc > 0, "Only service can call this method");
        _;
    }

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() initializer {}

    function initialize() initializer public {
        __ERC20_init("YandaToken", "YND");
        __Pausable_init();
        __AccessControl_init();
        __ERC20Permit_init("YandaToken");

        _mint(msg.sender, 1000000000 * 10 ** decimals());
        _owner = msg.sender;

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function owner() public view virtual returns(address) {
        return _owner;
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    // The following functions are overrides required by Solidity.

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20Upgradeable, ERC20VotesUpgradeable)
    {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount)
        internal
        override(ERC20Upgradeable, ERC20VotesUpgradeable)
    {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount)
        internal
        override(ERC20Upgradeable, ERC20VotesUpgradeable)
    {
        super._burn(account, amount);
    }
    
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        if(recipient == address(this)) {
            require(
                processes[msg.sender][depositingProducts[msg.sender]].state == State.AWAITING_TRANSFER,
                "You don't have a deposit awaiting process, please create it first"
            );
            require(
                processes[msg.sender][depositingProducts[msg.sender]].cost == amount,
                "Deposit amount doesn't match with the requested cost"
            );

            _transfer(_msgSender(), recipient, amount);
            processes[msg.sender][depositingProducts[msg.sender]].state = State.AWAITING_TERMINATION;

            emit Deposit(
                _msgSender(),
                processes[msg.sender][depositingProducts[msg.sender]].service,
                processes[msg.sender][depositingProducts[msg.sender]].productId,
                amount
            );
        } else {
            _transfer(_msgSender(), recipient, amount);
        }
        return true;
    }

    function _setValidatorsReady(address[] memory vList) internal {
        for(uint i=0; i < vList.length; i++) { 
            validators[vList[i]].ready = true;
        }
    }

    function addService(address service, address[] memory vList, uint vPerc, uint cPerc, uint vVer)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        services[service] = Service({
            validators: vList,
            validationPerc: vPerc,
            commissionPerc: cPerc,
            validatorVersion: vVer
        });
        _setValidatorsReady(vList);
    }

    function setValidators(address[] memory vList) public onlyService {
        services[msg.sender].validators = vList;
        _setValidatorsReady(vList);
    }

    function setValidatorVer(uint vVer) public onlyService {
        services[msg.sender].validatorVersion = vVer;
    }

    function _getProcessCost(address customer, address service, bytes32 productId, string memory data) internal {
        emit CostRequest(customer, service, productId, data);
    }

    function createProcess(address service, bytes32 productId, string memory data) public {
        require(services[service].validationPerc > 0, 'Requested service address not found');
        require(processes[msg.sender][productId].service == address(0), 'Process with specified productId already exist');

        _getProcessCost(msg.sender, service, productId, data);

        processes[msg.sender][productId] = Process({
            state: State.AWAITING_COST,
            cost: 0,
            service: service,
            productId: productId,
            productData: data,
            validations: 0,
            failedValidations: 0
        });
        if(depositingProducts[msg.sender].length > 0) {
            // Delete previous product if still waits for a deposit
            if(processes[msg.sender][depositingProducts[msg.sender]].state == State.AWAITING_TRANSFER) {
                delete processes[msg.sender][depositingProducts[msg.sender]];
            }
        }
        depositingProducts[msg.sender] = productId;
    }

    function setProcessCost(address customer, bytes32 productId, uint256 cost) public {
        require(validators[msg.sender].ready == true, "Only validator can call this method");
        require(processes[customer][productId].state == State.AWAITING_COST, "Cost is already set");

        processes[customer][productId].cost = cost;
        processes[customer][productId].state = State.AWAITING_TRANSFER;
        emit CostResponse(customer, processes[customer][productId].service, productId, cost);
    }

    function declareAction(address customer, bytes32 productId, string calldata data)
        public onlyService
    {
        emit Action(customer, msg.sender, productId, data);
    }

    function _updateValidatorsScore(Service memory service) internal {
        for(uint i=0; i < service.validators.length; i++) { 
            validators[service.validators[i]].requests += 1;
        }
    }

    function startTermination(address customer, bytes32 productId) public {
        require(
            (services[msg.sender].validationPerc > 0) || (msg.sender == customer),
            "Only service or product customer can call this method"
        );
        require(processes[customer][productId].state == State.AWAITING_TERMINATION, "Cannot start termination");
        processes[customer][productId].state = State.AWAITING_VALIDATION;
        // Update validators requests score
        _updateValidatorsScore(services[processes[customer][productId].service]);
        // Emit Terminate event to trigger validators
        emit Terminate(customer, msg.sender, productId);
    }

    function _validatorsHolding(Service memory service) view internal returns(uint256) {
        uint256 result = 0;
        for(uint i=0; i < service.validators.length; i++) { 
            result += this.balanceOf(service.validators[i]);
        }
        return result;
    }

    function _scoredReward(address validator, uint256 reward) view internal returns(uint256) {
        uint256 score = (validators[validator].validations * 100) / validators[validator].requests;
        return (reward * score) / 100;
    }

    function _rewardValidators(Service memory service, uint256 amount) internal returns(uint256) {
        uint256 rewards_sum = 0;
        // Sum of validators YND token balances
        uint256 holdings = _validatorsHolding(service);

        for(uint i=0; i < service.validators.length; i++) {
            uint256 validator_balance = this.balanceOf(service.validators[i]);
            if(validator_balance > 0) {
                uint256 reward = amount / (holdings / validator_balance);
                // Reward after scoring filter
                uint256 scored_reward = _scoredReward(service.validators[i], reward);
                if(scored_reward > 0) {
                    this.transfer(payable(service.validators[i]), scored_reward);
                    rewards_sum += scored_reward;
                }
            }
        }
        return rewards_sum;
    }

    function validateTermination(address customer, bytes32 productId, bool passed) public {
        require(validators[msg.sender].ready == true, "Only validator can call this method");
        require(processes[customer][productId].state >= State.AWAITING_VALIDATION, "Cannot validate delivary");

        if(passed) {
            processes[customer][productId].validations += 1;
        } else {
            processes[customer][productId].failedValidations += 1;
        }
        // Update validator score
        validators[msg.sender].validations += 1;

        if(processes[customer][productId].state == State.AWAITING_VALIDATION) {
            if(processes[customer][productId].validations > services[processes[customer][productId].service].validators.length / 2) {
                // Update process state to COMPLETED
                processes[customer][productId].state = State.COMPLETED;
                // Reward validators
                uint256 reward_amount = (processes[customer][productId].cost * services[processes[customer][productId].service].validationPerc) / 100;
                uint256 executed_amount = _rewardValidators(services[processes[customer][productId].service], reward_amount);
                // Pay service commission
                uint256 commission_amount = (processes[customer][productId].cost * services[processes[customer][productId].service].commissionPerc) / 100;
                this.transfer(payable(processes[customer][productId].service), commission_amount);
                // Burn remaining funds
                _burn(address(this), processes[customer][productId].cost - executed_amount - commission_amount);
                emit Complete(customer, processes[customer][productId].service, productId, true);
            } else {
                if(processes[customer][productId].failedValidations >= services[processes[customer][productId].service].validators.length / 2) {
                    // Update process state to COMPLETED
                    processes[customer][productId].state = State.COMPLETED;
                    // Reward validators
                    uint256 reward_amount = (processes[customer][productId].cost * services[processes[customer][productId].service].validationPerc) / 100;
                    uint256 executed_amount = _rewardValidators(services[processes[customer][productId].service], reward_amount);
                    // Make refund
                    this.transfer(payable(customer), processes[customer][productId].cost - executed_amount);
                    emit Complete(customer, processes[customer][productId].service, productId, false);
                }
            }
        }
    }

    function claimToken(uint256 amount) public returns (bool) {
        if(this.balanceOf(msg.sender) < 5000000 ether && amount <= 1000 ether) {
            _transfer(owner(), _msgSender(), amount);
            return true;
        } else {
            return false;
        }
    }

}
        

/_openzeppelin/contracts/utils/math/SafeMath.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal onlyInitializing {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __AccessControl_init_unchained();
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(uint160(account), 20),
                        " is missing role ",
                        StringsUpgradeable.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/access/IAccessControlUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}
          

/_openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}
          

/_openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Context_init_unchained();
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20Upgradeable.sol";
import "./extensions/IERC20MetadataUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __Context_init_unchained();
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    uint256[45] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @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);
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20VotesUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Votes.sol)

pragma solidity ^0.8.0;

import "./draft-ERC20PermitUpgradeable.sol";
import "../../../utils/math/MathUpgradeable.sol";
import "../../../utils/math/SafeCastUpgradeable.sol";
import "../../../utils/cryptography/ECDSAUpgradeable.sol";
import "../../../proxy/utils/Initializable.sol";

/**
 * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
 * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
 *
 * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
 * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
 * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this
 * will significantly increase the base gas cost of transfers.
 *
 * _Available since v4.2._
 */
abstract contract ERC20VotesUpgradeable is Initializable, ERC20PermitUpgradeable {
    function __ERC20Votes_init_unchained() internal onlyInitializing {
    }
    struct Checkpoint {
        uint32 fromBlock;
        uint224 votes;
    }

    bytes32 private constant _DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    mapping(address => address) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to an account's voting power.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view virtual returns (uint32) {
        return SafeCastUpgradeable.toUint32(_checkpoints[account].length);
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view virtual returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view returns (uint256) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = MathUpgradeable.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        return high == 0 ? 0 : ckpts[high - 1].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public virtual {
        _delegate(_msgSender(), delegatee);
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(block.timestamp <= expiry, "ERC20Votes: signature expired");
        address signer = ECDSAUpgradeable.recover(
            _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
            v,
            r,
            s
        );
        require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
        _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
     */
    function _maxSupply() internal view virtual returns (uint224) {
        return type(uint224).max;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal virtual override {
        super._burn(account, amount);

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
     * @dev Move voting power when tokens are transferred.
     *
     * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._afterTokenTransfer(from, to, amount);

        _moveVotingPower(delegates(from), delegates(to), amount);
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal virtual {
        address currentDelegate = delegates(delegator);
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
        newWeight = op(oldWeight, delta);

        if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
            ckpts[pos - 1].votes = SafeCastUpgradeable.toUint224(newWeight);
        } else {
            ckpts.push(Checkpoint({fromBlock: SafeCastUpgradeable.toUint32(block.number), votes: SafeCastUpgradeable.toUint224(newWeight)}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
    uint256[47] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;

import "./draft-IERC20PermitUpgradeable.sol";
import "../ERC20Upgradeable.sol";
import "../../../utils/cryptography/draft-EIP712Upgradeable.sol";
import "../../../utils/cryptography/ECDSAUpgradeable.sol";
import "../../../utils/CountersUpgradeable.sol";
import "../../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable {
    using CountersUpgradeable for CountersUpgradeable.Counter;

    mapping(address => CountersUpgradeable.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    function __ERC20Permit_init(string memory name) internal onlyInitializing {
        __Context_init_unchained();
        __EIP712_init_unchained(name, "1");
        __ERC20Permit_init_unchained(name);
    }

    function __ERC20Permit_init_unchained(string memory name) internal onlyInitializing {
        _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSAUpgradeable.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        CountersUpgradeable.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-IERC20PermitUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20PermitUpgradeable {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}
          

/_openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library CountersUpgradeable {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../StringsUpgradeable.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSAUpgradeable {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSAUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712Upgradeable is Initializable {
    /* solhint-disable var-name-mixedcase */
    bytes32 private _HASHED_NAME;
    bytes32 private _HASHED_VERSION;
    bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {
        __EIP712_init_unchained(name, version);
    }

    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev The hash of the name parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712NameHash() internal virtual view returns (bytes32) {
        return _HASHED_NAME;
    }

    /**
     * @dev The hash of the version parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712VersionHash() internal virtual view returns (bytes32) {
        return _HASHED_VERSION;
    }
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
        __ERC165_init_unchained();
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
          

/_openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/math/SafeCastUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such 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.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCastUpgradeable {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Action","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true},{"type":"string","name":"data","internalType":"string","indexed":false}],"anonymous":false},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Complete","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true},{"type":"bool","name":"success","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"CostRequest","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true},{"type":"string","name":"data","internalType":"string","indexed":false}],"anonymous":false},{"type":"event","name":"CostResponse","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true},{"type":"uint256","name":"cost","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"DelegateChanged","inputs":[{"type":"address","name":"delegator","internalType":"address","indexed":true},{"type":"address","name":"fromDelegate","internalType":"address","indexed":true},{"type":"address","name":"toDelegate","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"DelegateVotesChanged","inputs":[{"type":"address","name":"delegate","internalType":"address","indexed":true},{"type":"uint256","name":"previousBalance","internalType":"uint256","indexed":false},{"type":"uint256","name":"newBalance","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true},{"type":"uint256","name":"weiAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Terminate","inputs":[{"type":"address","name":"customer","internalType":"address","indexed":true},{"type":"address","name":"service","internalType":"address","indexed":true},{"type":"bytes32","name":"productId","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_SEPARATOR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"MINTER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PAUSER_ROLE","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addService","inputs":[{"type":"address","name":"service","internalType":"address"},{"type":"address[]","name":"vList","internalType":"address[]"},{"type":"uint256","name":"vPerc","internalType":"uint256"},{"type":"uint256","name":"cPerc","internalType":"uint256"},{"type":"uint256","name":"vVer","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"","internalType":"struct ERC20VotesUpgradeable.Checkpoint","components":[{"type":"uint32","name":"fromBlock","internalType":"uint32"},{"type":"uint224","name":"votes","internalType":"uint224"}]}],"name":"checkpoints","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint32","name":"pos","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"claimToken","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"createProcess","inputs":[{"type":"address","name":"service","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"},{"type":"string","name":"data","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"declareAction","inputs":[{"type":"address","name":"customer","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"},{"type":"string","name":"data","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"delegate","inputs":[{"type":"address","name":"delegatee","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"delegateBySig","inputs":[{"type":"address","name":"delegatee","internalType":"address"},{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"expiry","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"delegates","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"depositingProducts","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getPastTotalSupply","inputs":[{"type":"uint256","name":"blockNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getPastVotes","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"blockNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getVotes","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nonces","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"numCheckpoints","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"permit","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"state","internalType":"enum YandaToken.State"},{"type":"uint256","name":"cost","internalType":"uint256"},{"type":"address","name":"service","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"},{"type":"string","name":"productData","internalType":"string"},{"type":"uint256","name":"validations","internalType":"uint256"},{"type":"uint256","name":"failedValidations","internalType":"uint256"}],"name":"processes","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"validationPerc","internalType":"uint256"},{"type":"uint256","name":"commissionPerc","internalType":"uint256"},{"type":"uint256","name":"validatorVersion","internalType":"uint256"}],"name":"services","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setProcessCost","inputs":[{"type":"address","name":"customer","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"},{"type":"uint256","name":"cost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setValidatorVer","inputs":[{"type":"uint256","name":"vVer","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setValidators","inputs":[{"type":"address[]","name":"vList","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"startTermination","inputs":[{"type":"address","name":"customer","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"validateTermination","inputs":[{"type":"address","name":"customer","internalType":"address"},{"type":"bytes32","name":"productId","internalType":"bytes32"},{"type":"bool","name":"passed","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"requests","internalType":"uint256"},{"type":"uint256","name":"validations","internalType":"uint256"},{"type":"bool","name":"ready","internalType":"bool"}],"name":"validators","inputs":[{"type":"address","name":"","internalType":"address"}]}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b50600054610100900460ff166200002f5760005460ff161562000039565b62000039620000de565b620000a15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff16158015620000c4576000805461ffff19166101011790555b8015620000d7576000805461ff00191690555b5062000102565b6000620000f630620000fc60201b620025641760201c565b15905090565b3b151590565b614ba580620001126000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c80637ecebe0011610182578063a9059cbb116100e9578063d547741f116100a2578063e63ab1e91161007c578063e63ab1e9146106d0578063ebd30af4146106e5578063f1127ed81461070b578063fa52c7d814610748576102bb565b8063d547741f14610663578063dd62ed3e14610676578063e4a7c46f146106af576102bb565b8063a9059cbb146105dd578063a9e7c2e5146105f0578063c0f99d6714610603578063c3cda52014610616578063d505accf14610629578063d53913931461063c576102bb565b806391d148541161013b57806391d14854146105815780639300c9261461059457806395d89b41146105a75780639ab24eb0146105af578063a217fddf146105c2578063a457c2d7146105ca576102bb565b80637ecebe00146105265780638129fc1c146105395780638456cb591461054157806389bf146a146105495780638da5cb5b1461055c5780638e539e8c1461056e576102bb565b806338f8f528116102265780635c19a95c116101df5780635c19a95c146104565780635c975abb1461046957806363de06f8146104745780636d966d01146104875780636fcfff45146104d557806370a08231146104fd576102bb565b806338f8f528146103bd57806339509351146103d05780633a46b1a8146103e35780633f4ba83a146103f657806343c51cc9146103fe578063587cde1e14610411576102bb565b806323b872dd1161027857806323b872dd1461034a578063248a9ca31461035d5780632f2ff15d14610380578063313ce567146103935780633644e515146103a257806336568abe146103aa576102bb565b806301ffc9a7146102c057806304f32b5d146102e857806306fdde03146102fd578063095ea7b3146103125780630e53e6331461032557806318160ddd14610338575b600080fd5b6102d36102ce36600461467e565b610798565b60405190151581526020015b60405180910390f35b6102fb6102f6366004614402565b6107d1565b005b61030561085e565b6040516102df91906147f3565b6102d361032036600461439a565b6108f0565b6102fb61033336600461439a565b610906565b6035545b6040519081526020016102df565b6102d361035836600461428f565b610b35565b61033c61036b366004614644565b600090815260c9602052604090206001015490565b6102fb61038e36600461465c565b610be1565b604051601281526020016102df565b61033c610c0d565b6102fb6103b836600461465c565b610c1c565b6102fb6103cb366004614484565b610c9a565b6102d36103de36600461439a565b610f64565b61033c6103f136600461439a565b610fa0565b6102fb611014565b6102fb61040c36600461452e565b611038565b61043e61041f366004614243565b6001600160a01b03908116600090815261016260205260409020541690565b6040516001600160a01b0390911681526020016102df565b6102fb610464366004614243565b611172565b60655460ff166102d3565b6102fb610482366004614644565b61117c565b6104ba610495366004614243565b6101976020526000908152604090206001810154600282015460039092015490919083565b604080519384526020840192909252908201526060016102df565b6104e86104e3366004614243565b6111c2565b60405163ffffffff90911681526020016102df565b61033c61050b366004614243565b6001600160a01b031660009081526033602052604090205490565b61033c610534366004614243565b6111e5565b6102fb611204565b6102fb6113c5565b6102fb6105573660046143c3565b6113e6565b610194546001600160a01b031661043e565b61033c61057c366004614644565b611bd3565b6102d361058f36600461465c565b611c30565b6102fb6105a23660046145f5565b611c5b565b610305611cb6565b61033c6105bd366004614243565b611cc5565b61033c600081565b6102d36105d836600461439a565b611d5c565b6102d36105eb36600461439a565b611df5565b6102d36105fe366004614644565b611ffc565b6102fb610611366004614333565b6120c2565b6102fb610624366004614560565b61214f565b6102fb6106373660046142ca565b612285565b61033c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102fb61067136600461465c565b6123cc565b61033c61068436600461425d565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61033c6106bd366004614243565b6101966020526000908152604090205481565b61033c600080516020614b5083398151915281565b6106f86106f336600461439a565b6123f2565b6040516102df979695949392919061475f565b61071e6107193660046145b7565b6124d1565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016102df565b61077b610756366004614243565b6101986020526000908152604090208054600182015460029092015490919060ff1683565b6040805193845260208401929092521515908201526060016102df565b60006001600160e01b03198216637965db0b60e01b14806107c957506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b336000908152610197602052604090206001015461080a5760405162461bcd60e51b815260040161080190614806565b60405180910390fd5b82336001600160a01b0316856001600160a01b03167fb67fab32200b6a6d186136689c0b4c4072ae0bd5dd17b98fb8105d1b9747939985856040516108509291906147c4565b60405180910390a450505050565b60606036805461086d90614ac5565b80601f016020809104026020016040519081016040528092919081815260200182805461089990614ac5565b80156108e65780601f106108bb576101008083540402835291602001916108e6565b820191906000526020600020905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b60006108fd33848461256a565b50600192915050565b336000908152610197602052604090206001015415158061092f5750336001600160a01b038316145b6109995760405162461bcd60e51b815260206004820152603560248201527f4f6e6c792073657276696365206f722070726f6475637420637573746f6d65726044820152740818d85b8818d85b1b081d1a1a5cc81b595d1a1bd9605a1b6064820152608401610801565b60026001600160a01b03831660009081526101956020908152604080832085845290915290205460ff1660048111156109e257634e487b7160e01b600052602160045260246000fd5b14610a2f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74207374617274207465726d696e6174696f6e00000000000000006044820152606401610801565b6001600160a01b038281166000908152610195602090815260408083208584528252808320805460ff1916600317815560020154909316825261019781529082902082518154928302810160a090810190945260808101838152610af99491938492849190840182828015610acd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610aaf575b50505050508152602001600182015481526020016002820154815260200160038201548152505061268e565b604051819033906001600160a01b038516907f3dc016b59ffc70a71e689716c312b2b7415f9e4f11803ff7cc3730801811497a90600090a45050565b6000610b42848484612718565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015610bc75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610801565b610bd4853385840361256a565b60019150505b9392505050565b600082815260c96020526040902060010154610bfe81335b6128fd565b610c088383612961565b505050565b6000610c176129e7565b905090565b6001600160a01b0381163314610c8c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610801565b610c968282612a62565b5050565b6001600160a01b03831660009081526101976020526040902060010154610d0f5760405162461bcd60e51b815260206004820152602360248201527f52657175657374656420736572766963652061646472657373206e6f7420666f6044820152621d5b9960ea1b6064820152608401610801565b336000908152610195602090815260408083208584529091529020600201546001600160a01b031615610d9b5760405162461bcd60e51b815260206004820152602e60248201527f50726f636573732077697468207370656369666965642070726f64756374496460448201526d08185b1c9958591e48195e1a5cdd60921b6064820152608401610801565b610da733848484612ac9565b6040805160e081018252600080825260208083018290526001600160a01b03871683850152606083018690526080830185905260a0830182905260c08301829052338252610195815283822086835290529190912081518154829060ff19166001836004811115610e2857634e487b7160e01b600052602160045260246000fd5b0217905550602082810151600183015560408301516002830180546001600160a01b0319166001600160a01b039092169190911790556060830151600383015560808301518051610e7f926004850192019061406b565b5060a0820151600582015560c09091015160069091015533600090815261019560209081526040808320610196835281842054845290915290205460019060ff166004811115610edf57634e487b7160e01b600052602160045260246000fd5b1415610f4f573360009081526101956020908152604080832061019683528184205484529091528120805460ff19168155600181018290556002810180546001600160a01b03191690556003810182905590610f3e60048301826140eb565b506000600582018190556006909101555b50336000908152610196602052604090205550565b3360008181526034602090815260408083206001600160a01b038716845290915281205490916108fd918590610f9b908690614906565b61256a565b6000438210610ff15760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610801565b6001600160a01b038316600090815261016360205260409020610bda9083612b0d565b600080516020614b5083398151915261102d8133610bf9565b611035612be6565b50565b336000908152610198602052604090206002015460ff1615156001146110705760405162461bcd60e51b815260040161080190614892565b6001600160a01b03831660009081526101956020908152604080832085845290915281205460ff1660048111156110b757634e487b7160e01b600052602160045260246000fd5b146110fa5760405162461bcd60e51b815260206004820152601360248201527210dbdcdd081a5cc8185b1c9958591e481cd95d606a1b6044820152606401610801565b6001600160a01b038381166000818152610195602090815260408083208784528252918290206001808201879055815460ff1916178155600201548251868152925187959190911693927f9829c39553001f6f75967caf0b4a8a903f5332af8a010a6b7e8532b7ed023f5192908290030190a4505050565b6110353382612c79565b33600090815261019760205260409020600101546111ac5760405162461bcd60e51b815260040161080190614806565b3360009081526101976020526040902060030155565b6001600160a01b038116600090815261016360205260408120546107c990612cf4565b6001600160a01b038116600090815261012f60205260408120546107c9565b600054610100900460ff1661121f5760005460ff1615611223565b303b155b6112865760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610801565b600054610100900460ff161580156112a8576000805461ffff19166101011790555b6112ef6040518060400160405280600a8152602001692cb0b73230aa37b5b2b760b11b8152506040518060400160405280600381526020016216539160ea1b815250612d5d565b6112f7612d96565b6112ff612dcf565b61132a6040518060400160405280600a8152602001692cb0b73230aa37b5b2b760b11b815250612e0e565b61134d3361133a6012600a61497b565b61134890633b9aca00614a4c565b612e69565b61019480546001600160a01b0319163390811790915561136f90600090612961565b611387600080516020614b5083398151915233612961565b6113b17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633612961565b8015611035576000805461ff001916905550565b600080516020614b508339815191526113de8133610bf9565b611035612e73565b336000908152610198602052604090206002015460ff16151560011461141e5760405162461bcd60e51b815260040161080190614892565b60036001600160a01b03841660009081526101956020908152604080832086845290915290205460ff16600481111561146757634e487b7160e01b600052602160045260246000fd5b10156114b55760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742076616c69646174652064656c697661727900000000000000006044820152606401610801565b80156114fe576001600160a01b03831660009081526101956020908152604080832085845290915281206005018054600192906114f3908490614906565b9091555061153c9050565b6001600160a01b0383166000908152610195602090815260408083208584529091528120600601805460019290611536908490614906565b90915550505b336000908152610198602052604081206001908101805491929091611562908490614906565b90915550600390506001600160a01b03841660009081526101956020908152604080832086845290915290205460ff1660048111156115b157634e487b7160e01b600052602160045260246000fd5b1415610c08576001600160a01b03808416600090815261019560209081526040808320868452825280832060029081015490941683526101979091529020546115fa919061491e565b6001600160a01b0384166000908152610195602090815260408083208684529091529020600501541115611913576001600160a01b03838116600090815261019560209081526040808320868452808352818420805460ff1916600417815560028101549095168452610197835290832060019081015487855291909252920154909160649161168a9190614a4c565b611694919061491e565b6001600160a01b03808616600090815261019560209081526040808320888452825280832060020154909316825261019781528282208351815460a0938102820184019095526080810185815295965092946117569491928492849184018282801561172957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161170b575b50505050508152602001600182015481526020016002820154815260200160038201548152505083612eee565b6001600160a01b0380871660009081526101956020908152604080832089845280835281842060028082015490961685526101978452918420909401548984529390915260010154929350916064916117ae91614a4c565b6117b8919061491e565b6001600160a01b038781166000908152610195602090815260408083208a84529091529081902060020154905163a9059cbb60e01b81529116600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561182557600080fd5b505af1158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190614628565b506001600160a01b0386166000908152610195602090815260408083208884529091529020600101546118a89030908390611899908690614a6b565b6118a39190614a6b565b613105565b6001600160a01b038681166000818152610195602090815260408083208a84528252918290206002015491516001815289949290921692917f5c2cc6518d5891ba2f9c21f49d712982ba12450a2a8adeb21e4a41f85a995b70910160405180910390a4505050610c08565b6001600160a01b0380841660009081526101956020908152604080832086845282528083206002908101549094168352610197909152902054611956919061491e565b6001600160a01b03841660009081526101956020908152604080832086845290915290206006015410610c08576001600160a01b03838116600090815261019560209081526040808320868452808352818420805460ff191660041781556002810154909516845261019783529083206001908101548785529190925292015490916064916119e59190614a4c565b6119ef919061491e565b6001600160a01b03808616600090815261019560209081526040808320888452825280832060020154909316825261019781528282208351815460a093810282018401909552608081018581529596509294611aaf94919284928491840182828015611729576020028201919060005260206000209081546001600160a01b0316815260019091019060200180831161170b5750505050508152602001600182015481526020016002820154815260200160038201548152505083612eee565b6001600160a01b038616600090815261019560209081526040808320888452909152902060010154909150309063a9059cbb908790611aef908590614a6b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611b3557600080fd5b505af1158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d9190614628565b506001600160a01b03858116600081815261019560209081526040808320898452825280832060020154905192835288941692917f5c2cc6518d5891ba2f9c21f49d712982ba12450a2a8adeb21e4a41f85a995b70910160405180910390a45050505050565b6000438210611c245760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610801565b6107c961016483612b0d565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3360009081526101976020526040902060010154611c8b5760405162461bcd60e51b815260040161080190614806565b336000908152610197602090815260409091208251611cac92840190614127565b506110358161310f565b60606037805461086d90614ac5565b6001600160a01b038116600090815261016360205260408120548015611d49576001600160a01b038316600090815261016360205260409020611d09600183614a6b565b81548110611d2757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611d4c565b60005b6001600160e01b03169392505050565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015611dde5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610801565b611deb338585840361256a565b5060019392505050565b60006001600160a01b038316301415611ff357600133600090815261019560209081526040808320610196835281842054845290915290205460ff166004811115611e5057634e487b7160e01b600052602160045260246000fd5b14611ecd5760405162461bcd60e51b815260206004820152604160248201527f596f7520646f6e277420686176652061206465706f736974206177616974696e60448201527f672070726f636573732c20706c656173652063726561746520697420666972736064820152601d60fa1b608482015260a401610801565b3360009081526101956020908152604080832061019683528184205484529091529020600101548214611f5f5760405162461bcd60e51b815260206004820152603460248201527f4465706f73697420616d6f756e7420646f65736e2774206d61746368207769746044820152731a081d1a19481c995c5d595cdd19590818dbdcdd60621b6064820152608401610801565b611f6b335b8484612718565b33600081815261019560209081526040808320610196835281842080548552908352818420805460ff1916600290811790915590548452928190206003810154930154905186815292936001600160a01b039091169290917f1f0f1dee49a1720a0d98e3a0575a04dd9f143ff5e29555c3085471c1c70eed5b910160405180910390a46108fd565b6108fd33611f64565b6040516370a0823160e01b81523360048201526000906a0422ca8b0a00a4250000009030906370a082319060240160206040518083038186803b15801561204257600080fd5b505afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a91906146a6565b1080156120905750683635c9adc5dea000008211155b156120ba576120b26120ab610194546001600160a01b031690565b3384612718565b5060016107cc565b5060006107cc565b60006120ce8133610bf9565b604080516080810182528681526020808201879052818301869052606082018590526001600160a01b0389166000908152610197825292909220815180519293919261211d9284920190614127565b5060208201516001820155604082015160028201556060909101516003909101556121478561310f565b505050505050565b8342111561219f5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610801565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090612219906122119060a00160405160208183030381529060405280519060200120613189565b8585856131d7565b9050612224816131ff565b86146122725760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610801565b61227c8188612c79565b50505050505050565b834211156122d55760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610801565b6000610130548888886122e78c6131ff565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061234282613189565b90506000612352828787876131d7565b9050896001600160a01b0316816001600160a01b0316146123b55760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610801565b6123c08a8a8a61256a565b50505050505050505050565b600082815260c960205260409020600101546123e88133610bf9565b610c088383612a62565b6101956020908152600092835260408084209091529082529020805460018201546002830154600384015460048501805460ff9095169593946001600160a01b0390931693919261244290614ac5565b80601f016020809104026020016040519081016040528092919081815260200182805461246e90614ac5565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050908060050154908060060154905087565b60408051808201909152600080825260208201526001600160a01b038316600090815261016360205260409020805463ffffffff841690811061252457634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b3b151590565b6001600160a01b0383166125cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610801565b6001600160a01b03821661262d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610801565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60005b815151811015610c965760016101986000846000015184815181106126c657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160008282546127009190614906565b9091555081905061271081614afa565b915050612691565b6001600160a01b03831661277c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610801565b6001600160a01b0382166127de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610801565b6127e9838383613228565b6001600160a01b038316600090815260336020526040902054818110156128615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610801565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612898908490614906565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128e491815260200190565b60405180910390a36128f7848484613273565b50505050565b6129078282611c30565b610c965761291f816001600160a01b0316601461327e565b61292a83602061327e565b60405160200161293b9291906146ea565b60408051601f198184030181529082905262461bcd60e51b8252610801916004016147f3565b61296b8282611c30565b610c9657600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556129a33390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610c177f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f612a1660fb5490565b60fc546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b612a6c8282611c30565b15610c9657600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b81836001600160a01b0316856001600160a01b03167f3a9aed43c5ef0596ab67fbc10ecc1bebe53445fd5f3880fb2b0b638bcbbf8a798460405161085091906147f3565b8154600090815b81811015612b7f576000612b288284613460565b905084868281548110612b4b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff161115612b6b57809250612b79565b612b76816001614906565b91505b50612b14565b8115612bd15784612b91600184614a6b565b81548110612baf57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316612bd4565b60005b6001600160e01b031695945050505050565b60655460ff16612c2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610801565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382811660008181526101626020818152604080842080546033845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46128f782848361347b565b600063ffffffff821115612d595760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610801565b5090565b600054610100900460ff16612d845760405162461bcd60e51b815260040161080190614847565b612d8c6135ba565b610c9682826135e1565b600054610100900460ff16612dbd5760405162461bcd60e51b815260040161080190614847565b612dc56135ba565b612dcd61362f565b565b600054610100900460ff16612df65760405162461bcd60e51b815260040161080190614847565b612dfe6135ba565b612e066135ba565b612dcd6135ba565b600054610100900460ff16612e355760405162461bcd60e51b815260040161080190614847565b612e3d6135ba565b612e6081604051806040016040528060018152602001603160f81b815250613662565b611035816136a3565b610c9682826136f2565b60655460ff1615612eb95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610801565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c5c3390565b60008080612efb8561377d565b905060005b8551518110156130fb576000306001600160a01b03166370a0823188600001518481518110612f3f57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401612f7291906001600160a01b0391909116815260200190565b60206040518083038186803b158015612f8a57600080fd5b505afa158015612f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fc291906146a6565b905080156130e8576000612fd6828561491e565b612fe0908861491e565b905060006130198960000151858151811061300b57634e487b7160e01b600052603260045260246000fd5b60200260200101518361385e565b905080156130e55788518051309163a9059cbb918790811061304b57634e487b7160e01b600052603260045260246000fd5b6020026020010151836040518363ffffffff1660e01b81526004016130859291906001600160a01b03929092168252602082015260400190565b602060405180830381600087803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d79190614628565b506130e28187614906565b95505b50505b50806130f381614afa565b915050612f00565b5090949350505050565b610c9682826138b7565b60005b8151811015610c96576001610198600084848151811061314257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020600201805460ff19169115159190911790558061318181614afa565b915050613112565b60006107c96131966129e7565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006131e8878787876138d0565b915091506131f5816139bd565b5095945050505050565b6001600160a01b038116600090815261012f602052604090208054600181018255905b50919050565b60655460ff161561326e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610801565b610c08565b610c08838383613bc0565b6060600061328d836002614a4c565b613298906002614906565b67ffffffffffffffff8111156132be57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132e8576020820181803683370190505b509050600360fc1b8160008151811061331157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061334e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613372846002614a4c565b61337d906001614906565b90505b6001811115613411576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106133bf57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106133e357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361340a81614aae565b9050613380565b508315610bda5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610801565b600061346f600284841861491e565b610bda90848416614906565b816001600160a01b0316836001600160a01b03161415801561349d5750600081115b15610c08576001600160a01b0383161561352c576001600160a01b03831660009081526101636020526040812081906134d990613bf385613bff565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051613521929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610c08576001600160a01b038216600090815261016360205260408120819061356390613da285613bff565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516135ab929190918252602082015260400190565b60405180910390a25050505050565b600054610100900460ff16612dcd5760405162461bcd60e51b815260040161080190614847565b600054610100900460ff166136085760405162461bcd60e51b815260040161080190614847565b815161361b90603690602085019061406b565b508051610c0890603790602084019061406b565b600054610100900460ff166136565760405162461bcd60e51b815260040161080190614847565b6065805460ff19169055565b600054610100900460ff166136895760405162461bcd60e51b815260040161080190614847565b81516020928301208151919092012060fb9190915560fc55565b600054610100900460ff166136ca5760405162461bcd60e51b815260040161080190614847565b507f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c961013055565b6136fc8282613dae565b6035546001600160e01b03101561376e5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610801565b6128f7610164613da283613bff565b600080805b835151811015613857578351805130916370a0823191849081106137b657634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016137e991906001600160a01b0391909116815260200190565b60206040518083038186803b15801561380157600080fd5b505afa158015613815573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061383991906146a6565b6138439083614906565b91508061384f81614afa565b915050613782565b5092915050565b6001600160a01b038216600090815261019860205260408120805460019091015482919061388d906064614a4c565b613897919061491e565b905060646138a58285614a4c565b6138af919061491e565b949350505050565b6138c18282613ea1565b6128f7610164613bf383613bff565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561390757506000905060036139b4565b8460ff16601b1415801561391f57508460ff16601c14155b1561393057506000905060046139b4565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613984573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139ad576000600192509250506139b4565b9150600090505b94509492505050565b60008160048111156139df57634e487b7160e01b600052602160045260246000fd5b14156139ea57611035565b6001816004811115613a0c57634e487b7160e01b600052602160045260246000fd5b1415613a5a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610801565b6002816004811115613a7c57634e487b7160e01b600052602160045260246000fd5b1415613aca5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610801565b6003816004811115613aec57634e487b7160e01b600052602160045260246000fd5b1415613b455760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610801565b6004816004811115613b6757634e487b7160e01b600052602160045260246000fd5b14156110355760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610801565b6001600160a01b0383811660009081526101626020526040808220548584168352912054610c089291821691168361347b565b6000610bda8284614a6b565b825460009081908015613c585785613c18600183614a6b565b81548110613c3657634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316613c5b565b60005b6001600160e01b03169250613c7483858763ffffffff16565b9150600081118015613cc057504386613c8e600184614a6b565b81548110613cac57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15613d2e57613cce82614002565b86613cda600184614a6b565b81548110613cf857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550613d99565b856040518060400160405280613d4343612cf4565b63ffffffff168152602001613d5785614002565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b6000610bda8284614906565b6001600160a01b038216613e045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610801565b613e1060008383613228565b8060356000828254613e229190614906565b90915550506001600160a01b03821660009081526033602052604081208054839290613e4f908490614906565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c9660008383613273565b6001600160a01b038216613f015760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610801565b613f0d82600083613228565b6001600160a01b03821660009081526033602052604090205481811015613f815760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610801565b6001600160a01b0383166000908152603360205260408120838303905560358054849290613fb0908490614a6b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c0883600084613273565b60006001600160e01b03821115612d595760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610801565b82805461407790614ac5565b90600052602060002090601f01602090048101928261409957600085556140df565b82601f106140b257805160ff19168380011785556140df565b828001600101855582156140df579182015b828111156140df5782518255916020019190600101906140c4565b50612d5992915061417c565b5080546140f790614ac5565b6000825580601f106141095750611035565b601f016020900490600052602060002090810190611035919061417c565b8280548282559060005260206000209081019282156140df579160200282015b828111156140df57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614147565b5b80821115612d59576000815560010161417d565b80356001600160a01b03811681146107cc57600080fd5b600082601f8301126141b8578081fd5b8135602067ffffffffffffffff8211156141d4576141d4614b2b565b8160051b6141e38282016148d5565b8381528281019086840183880185018910156141fd578687fd5b8693505b858410156142265761421281614191565b835260019390930192918401918401614201565b50979650505050505050565b803560ff811681146107cc57600080fd5b600060208284031215614254578081fd5b610bda82614191565b6000806040838503121561426f578081fd5b61427883614191565b915061428660208401614191565b90509250929050565b6000806000606084860312156142a3578081fd5b6142ac84614191565b92506142ba60208501614191565b9150604084013590509250925092565b600080600080600080600060e0888a0312156142e4578283fd5b6142ed88614191565b96506142fb60208901614191565b9550604088013594506060880135935061431760808901614232565b925060a0880135915060c0880135905092959891949750929550565b600080600080600060a0868803121561434a578081fd5b61435386614191565b9450602086013567ffffffffffffffff81111561436e578182fd5b61437a888289016141a8565b959895975050505060408401359360608101359360809091013592509050565b600080604083850312156143ac578182fd5b6143b583614191565b946020939093013593505050565b6000806000606084860312156143d7578283fd5b6143e084614191565b92506020840135915060408401356143f781614b41565b809150509250925092565b60008060008060608587031215614417578384fd5b61442085614191565b935060208501359250604085013567ffffffffffffffff80821115614443578384fd5b818701915087601f830112614456578384fd5b813581811115614464578485fd5b886020828501011115614475578485fd5b95989497505060200194505050565b600080600060608486031215614498578081fd5b6144a184614191565b92506020808501359250604085013567ffffffffffffffff808211156144c5578384fd5b818701915087601f8301126144d8578384fd5b8135818111156144ea576144ea614b2b565b6144fc601f8201601f191685016148d5565b91508082528884828501011115614511578485fd5b808484018584013784848284010152508093505050509250925092565b600080600060608486031215614542578081fd5b61454b84614191565b95602085013595506040909401359392505050565b60008060008060008060c08789031215614578578384fd5b61458187614191565b9550602087013594506040870135935061459d60608801614232565b92506080870135915060a087013590509295509295509295565b600080604083850312156145c9578182fd5b6145d283614191565b9150602083013563ffffffff811681146145ea578182fd5b809150509250929050565b600060208284031215614606578081fd5b813567ffffffffffffffff81111561461c578182fd5b6138af848285016141a8565b600060208284031215614639578081fd5b8151610bda81614b41565b600060208284031215614655578081fd5b5035919050565b6000806040838503121561466e578182fd5b8235915061428660208401614191565b60006020828403121561468f578081fd5b81356001600160e01b031981168114610bda578182fd5b6000602082840312156146b7578081fd5b5051919050565b600081518084526146d6816020860160208601614a82565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351614722816017850160208801614a82565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614753816028840160208801614a82565b01602801949350505050565b60006005891061477d57634e487b7160e01b81526021600452602481fd5b88825287602083015260018060a01b038716604083015285606083015260e060808301526147ae60e08301866146be565b60a08301949094525060c0015295945050505050565b60006020825282602083015282846040840137818301604090810191909152601f909201601f19160101919050565b600060208252610bda60208301846146be565b60208082526021908201527f4f6e6c7920736572766963652063616e2063616c6c2074686973206d6574686f6040820152601960fa1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526023908201527f4f6e6c792076616c696461746f722063616e2063616c6c2074686973206d65746040820152621a1bd960ea1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156148fe576148fe614b2b565b604052919050565b6000821982111561491957614919614b15565b500190565b60008261493957634e487b7160e01b81526012600452602481fd5b500490565b80825b600180861161495057506139b4565b81870482111561496257614962614b15565b8086161561496f57918102915b9490941c938002614941565b6000610bda60001960ff85168460008261499757506001610bda565b816149a457506000610bda565b81600181146149ba57600281146149c4576149f1565b6001915050610bda565b60ff8411156149d5576149d5614b15565b6001841b9150848211156149eb576149eb614b15565b50610bda565b5060208310610133831016604e8410600b8410161715614a24575081810a83811115614a1f57614a1f614b15565b610bda565b614a31848484600161493e565b808604821115614a4357614a43614b15565b02949350505050565b6000816000190483118215151615614a6657614a66614b15565b500290565b600082821015614a7d57614a7d614b15565b500390565b60005b83811015614a9d578181015183820152602001614a85565b838111156128f75750506000910152565b600081614abd57614abd614b15565b506000190190565b600181811c90821680614ad957607f821691505b6020821081141561322257634e487b7160e01b600052602260045260246000fd5b6000600019821415614b0e57614b0e614b15565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461103557600080fdfe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa26469706673582212209e5be5af361e4375e934d2355bdff23a942ee36ce9f04eccbfb7eb22ed3e142164736f6c63430008030033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c80637ecebe0011610182578063a9059cbb116100e9578063d547741f116100a2578063e63ab1e91161007c578063e63ab1e9146106d0578063ebd30af4146106e5578063f1127ed81461070b578063fa52c7d814610748576102bb565b8063d547741f14610663578063dd62ed3e14610676578063e4a7c46f146106af576102bb565b8063a9059cbb146105dd578063a9e7c2e5146105f0578063c0f99d6714610603578063c3cda52014610616578063d505accf14610629578063d53913931461063c576102bb565b806391d148541161013b57806391d14854146105815780639300c9261461059457806395d89b41146105a75780639ab24eb0146105af578063a217fddf146105c2578063a457c2d7146105ca576102bb565b80637ecebe00146105265780638129fc1c146105395780638456cb591461054157806389bf146a146105495780638da5cb5b1461055c5780638e539e8c1461056e576102bb565b806338f8f528116102265780635c19a95c116101df5780635c19a95c146104565780635c975abb1461046957806363de06f8146104745780636d966d01146104875780636fcfff45146104d557806370a08231146104fd576102bb565b806338f8f528146103bd57806339509351146103d05780633a46b1a8146103e35780633f4ba83a146103f657806343c51cc9146103fe578063587cde1e14610411576102bb565b806323b872dd1161027857806323b872dd1461034a578063248a9ca31461035d5780632f2ff15d14610380578063313ce567146103935780633644e515146103a257806336568abe146103aa576102bb565b806301ffc9a7146102c057806304f32b5d146102e857806306fdde03146102fd578063095ea7b3146103125780630e53e6331461032557806318160ddd14610338575b600080fd5b6102d36102ce36600461467e565b610798565b60405190151581526020015b60405180910390f35b6102fb6102f6366004614402565b6107d1565b005b61030561085e565b6040516102df91906147f3565b6102d361032036600461439a565b6108f0565b6102fb61033336600461439a565b610906565b6035545b6040519081526020016102df565b6102d361035836600461428f565b610b35565b61033c61036b366004614644565b600090815260c9602052604090206001015490565b6102fb61038e36600461465c565b610be1565b604051601281526020016102df565b61033c610c0d565b6102fb6103b836600461465c565b610c1c565b6102fb6103cb366004614484565b610c9a565b6102d36103de36600461439a565b610f64565b61033c6103f136600461439a565b610fa0565b6102fb611014565b6102fb61040c36600461452e565b611038565b61043e61041f366004614243565b6001600160a01b03908116600090815261016260205260409020541690565b6040516001600160a01b0390911681526020016102df565b6102fb610464366004614243565b611172565b60655460ff166102d3565b6102fb610482366004614644565b61117c565b6104ba610495366004614243565b6101976020526000908152604090206001810154600282015460039092015490919083565b604080519384526020840192909252908201526060016102df565b6104e86104e3366004614243565b6111c2565b60405163ffffffff90911681526020016102df565b61033c61050b366004614243565b6001600160a01b031660009081526033602052604090205490565b61033c610534366004614243565b6111e5565b6102fb611204565b6102fb6113c5565b6102fb6105573660046143c3565b6113e6565b610194546001600160a01b031661043e565b61033c61057c366004614644565b611bd3565b6102d361058f36600461465c565b611c30565b6102fb6105a23660046145f5565b611c5b565b610305611cb6565b61033c6105bd366004614243565b611cc5565b61033c600081565b6102d36105d836600461439a565b611d5c565b6102d36105eb36600461439a565b611df5565b6102d36105fe366004614644565b611ffc565b6102fb610611366004614333565b6120c2565b6102fb610624366004614560565b61214f565b6102fb6106373660046142ca565b612285565b61033c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102fb61067136600461465c565b6123cc565b61033c61068436600461425d565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61033c6106bd366004614243565b6101966020526000908152604090205481565b61033c600080516020614b5083398151915281565b6106f86106f336600461439a565b6123f2565b6040516102df979695949392919061475f565b61071e6107193660046145b7565b6124d1565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016102df565b61077b610756366004614243565b6101986020526000908152604090208054600182015460029092015490919060ff1683565b6040805193845260208401929092521515908201526060016102df565b60006001600160e01b03198216637965db0b60e01b14806107c957506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b336000908152610197602052604090206001015461080a5760405162461bcd60e51b815260040161080190614806565b60405180910390fd5b82336001600160a01b0316856001600160a01b03167fb67fab32200b6a6d186136689c0b4c4072ae0bd5dd17b98fb8105d1b9747939985856040516108509291906147c4565b60405180910390a450505050565b60606036805461086d90614ac5565b80601f016020809104026020016040519081016040528092919081815260200182805461089990614ac5565b80156108e65780601f106108bb576101008083540402835291602001916108e6565b820191906000526020600020905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b60006108fd33848461256a565b50600192915050565b336000908152610197602052604090206001015415158061092f5750336001600160a01b038316145b6109995760405162461bcd60e51b815260206004820152603560248201527f4f6e6c792073657276696365206f722070726f6475637420637573746f6d65726044820152740818d85b8818d85b1b081d1a1a5cc81b595d1a1bd9605a1b6064820152608401610801565b60026001600160a01b03831660009081526101956020908152604080832085845290915290205460ff1660048111156109e257634e487b7160e01b600052602160045260246000fd5b14610a2f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74207374617274207465726d696e6174696f6e00000000000000006044820152606401610801565b6001600160a01b038281166000908152610195602090815260408083208584528252808320805460ff1916600317815560020154909316825261019781529082902082518154928302810160a090810190945260808101838152610af99491938492849190840182828015610acd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610aaf575b50505050508152602001600182015481526020016002820154815260200160038201548152505061268e565b604051819033906001600160a01b038516907f3dc016b59ffc70a71e689716c312b2b7415f9e4f11803ff7cc3730801811497a90600090a45050565b6000610b42848484612718565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015610bc75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610801565b610bd4853385840361256a565b60019150505b9392505050565b600082815260c96020526040902060010154610bfe81335b6128fd565b610c088383612961565b505050565b6000610c176129e7565b905090565b6001600160a01b0381163314610c8c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610801565b610c968282612a62565b5050565b6001600160a01b03831660009081526101976020526040902060010154610d0f5760405162461bcd60e51b815260206004820152602360248201527f52657175657374656420736572766963652061646472657373206e6f7420666f6044820152621d5b9960ea1b6064820152608401610801565b336000908152610195602090815260408083208584529091529020600201546001600160a01b031615610d9b5760405162461bcd60e51b815260206004820152602e60248201527f50726f636573732077697468207370656369666965642070726f64756374496460448201526d08185b1c9958591e48195e1a5cdd60921b6064820152608401610801565b610da733848484612ac9565b6040805160e081018252600080825260208083018290526001600160a01b03871683850152606083018690526080830185905260a0830182905260c08301829052338252610195815283822086835290529190912081518154829060ff19166001836004811115610e2857634e487b7160e01b600052602160045260246000fd5b0217905550602082810151600183015560408301516002830180546001600160a01b0319166001600160a01b039092169190911790556060830151600383015560808301518051610e7f926004850192019061406b565b5060a0820151600582015560c09091015160069091015533600090815261019560209081526040808320610196835281842054845290915290205460019060ff166004811115610edf57634e487b7160e01b600052602160045260246000fd5b1415610f4f573360009081526101956020908152604080832061019683528184205484529091528120805460ff19168155600181018290556002810180546001600160a01b03191690556003810182905590610f3e60048301826140eb565b506000600582018190556006909101555b50336000908152610196602052604090205550565b3360008181526034602090815260408083206001600160a01b038716845290915281205490916108fd918590610f9b908690614906565b61256a565b6000438210610ff15760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610801565b6001600160a01b038316600090815261016360205260409020610bda9083612b0d565b600080516020614b5083398151915261102d8133610bf9565b611035612be6565b50565b336000908152610198602052604090206002015460ff1615156001146110705760405162461bcd60e51b815260040161080190614892565b6001600160a01b03831660009081526101956020908152604080832085845290915281205460ff1660048111156110b757634e487b7160e01b600052602160045260246000fd5b146110fa5760405162461bcd60e51b815260206004820152601360248201527210dbdcdd081a5cc8185b1c9958591e481cd95d606a1b6044820152606401610801565b6001600160a01b038381166000818152610195602090815260408083208784528252918290206001808201879055815460ff1916178155600201548251868152925187959190911693927f9829c39553001f6f75967caf0b4a8a903f5332af8a010a6b7e8532b7ed023f5192908290030190a4505050565b6110353382612c79565b33600090815261019760205260409020600101546111ac5760405162461bcd60e51b815260040161080190614806565b3360009081526101976020526040902060030155565b6001600160a01b038116600090815261016360205260408120546107c990612cf4565b6001600160a01b038116600090815261012f60205260408120546107c9565b600054610100900460ff1661121f5760005460ff1615611223565b303b155b6112865760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610801565b600054610100900460ff161580156112a8576000805461ffff19166101011790555b6112ef6040518060400160405280600a8152602001692cb0b73230aa37b5b2b760b11b8152506040518060400160405280600381526020016216539160ea1b815250612d5d565b6112f7612d96565b6112ff612dcf565b61132a6040518060400160405280600a8152602001692cb0b73230aa37b5b2b760b11b815250612e0e565b61134d3361133a6012600a61497b565b61134890633b9aca00614a4c565b612e69565b61019480546001600160a01b0319163390811790915561136f90600090612961565b611387600080516020614b5083398151915233612961565b6113b17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633612961565b8015611035576000805461ff001916905550565b600080516020614b508339815191526113de8133610bf9565b611035612e73565b336000908152610198602052604090206002015460ff16151560011461141e5760405162461bcd60e51b815260040161080190614892565b60036001600160a01b03841660009081526101956020908152604080832086845290915290205460ff16600481111561146757634e487b7160e01b600052602160045260246000fd5b10156114b55760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742076616c69646174652064656c697661727900000000000000006044820152606401610801565b80156114fe576001600160a01b03831660009081526101956020908152604080832085845290915281206005018054600192906114f3908490614906565b9091555061153c9050565b6001600160a01b0383166000908152610195602090815260408083208584529091528120600601805460019290611536908490614906565b90915550505b336000908152610198602052604081206001908101805491929091611562908490614906565b90915550600390506001600160a01b03841660009081526101956020908152604080832086845290915290205460ff1660048111156115b157634e487b7160e01b600052602160045260246000fd5b1415610c08576001600160a01b03808416600090815261019560209081526040808320868452825280832060029081015490941683526101979091529020546115fa919061491e565b6001600160a01b0384166000908152610195602090815260408083208684529091529020600501541115611913576001600160a01b03838116600090815261019560209081526040808320868452808352818420805460ff1916600417815560028101549095168452610197835290832060019081015487855291909252920154909160649161168a9190614a4c565b611694919061491e565b6001600160a01b03808616600090815261019560209081526040808320888452825280832060020154909316825261019781528282208351815460a0938102820184019095526080810185815295965092946117569491928492849184018282801561172957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161170b575b50505050508152602001600182015481526020016002820154815260200160038201548152505083612eee565b6001600160a01b0380871660009081526101956020908152604080832089845280835281842060028082015490961685526101978452918420909401548984529390915260010154929350916064916117ae91614a4c565b6117b8919061491e565b6001600160a01b038781166000908152610195602090815260408083208a84529091529081902060020154905163a9059cbb60e01b81529116600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561182557600080fd5b505af1158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190614628565b506001600160a01b0386166000908152610195602090815260408083208884529091529020600101546118a89030908390611899908690614a6b565b6118a39190614a6b565b613105565b6001600160a01b038681166000818152610195602090815260408083208a84528252918290206002015491516001815289949290921692917f5c2cc6518d5891ba2f9c21f49d712982ba12450a2a8adeb21e4a41f85a995b70910160405180910390a4505050610c08565b6001600160a01b0380841660009081526101956020908152604080832086845282528083206002908101549094168352610197909152902054611956919061491e565b6001600160a01b03841660009081526101956020908152604080832086845290915290206006015410610c08576001600160a01b03838116600090815261019560209081526040808320868452808352818420805460ff191660041781556002810154909516845261019783529083206001908101548785529190925292015490916064916119e59190614a4c565b6119ef919061491e565b6001600160a01b03808616600090815261019560209081526040808320888452825280832060020154909316825261019781528282208351815460a093810282018401909552608081018581529596509294611aaf94919284928491840182828015611729576020028201919060005260206000209081546001600160a01b0316815260019091019060200180831161170b5750505050508152602001600182015481526020016002820154815260200160038201548152505083612eee565b6001600160a01b038616600090815261019560209081526040808320888452909152902060010154909150309063a9059cbb908790611aef908590614a6b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611b3557600080fd5b505af1158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d9190614628565b506001600160a01b03858116600081815261019560209081526040808320898452825280832060020154905192835288941692917f5c2cc6518d5891ba2f9c21f49d712982ba12450a2a8adeb21e4a41f85a995b70910160405180910390a45050505050565b6000438210611c245760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610801565b6107c961016483612b0d565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3360009081526101976020526040902060010154611c8b5760405162461bcd60e51b815260040161080190614806565b336000908152610197602090815260409091208251611cac92840190614127565b506110358161310f565b60606037805461086d90614ac5565b6001600160a01b038116600090815261016360205260408120548015611d49576001600160a01b038316600090815261016360205260409020611d09600183614a6b565b81548110611d2757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611d4c565b60005b6001600160e01b03169392505050565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015611dde5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610801565b611deb338585840361256a565b5060019392505050565b60006001600160a01b038316301415611ff357600133600090815261019560209081526040808320610196835281842054845290915290205460ff166004811115611e5057634e487b7160e01b600052602160045260246000fd5b14611ecd5760405162461bcd60e51b815260206004820152604160248201527f596f7520646f6e277420686176652061206465706f736974206177616974696e60448201527f672070726f636573732c20706c656173652063726561746520697420666972736064820152601d60fa1b608482015260a401610801565b3360009081526101956020908152604080832061019683528184205484529091529020600101548214611f5f5760405162461bcd60e51b815260206004820152603460248201527f4465706f73697420616d6f756e7420646f65736e2774206d61746368207769746044820152731a081d1a19481c995c5d595cdd19590818dbdcdd60621b6064820152608401610801565b611f6b335b8484612718565b33600081815261019560209081526040808320610196835281842080548552908352818420805460ff1916600290811790915590548452928190206003810154930154905186815292936001600160a01b039091169290917f1f0f1dee49a1720a0d98e3a0575a04dd9f143ff5e29555c3085471c1c70eed5b910160405180910390a46108fd565b6108fd33611f64565b6040516370a0823160e01b81523360048201526000906a0422ca8b0a00a4250000009030906370a082319060240160206040518083038186803b15801561204257600080fd5b505afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a91906146a6565b1080156120905750683635c9adc5dea000008211155b156120ba576120b26120ab610194546001600160a01b031690565b3384612718565b5060016107cc565b5060006107cc565b60006120ce8133610bf9565b604080516080810182528681526020808201879052818301869052606082018590526001600160a01b0389166000908152610197825292909220815180519293919261211d9284920190614127565b5060208201516001820155604082015160028201556060909101516003909101556121478561310f565b505050505050565b8342111561219f5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610801565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090612219906122119060a00160405160208183030381529060405280519060200120613189565b8585856131d7565b9050612224816131ff565b86146122725760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610801565b61227c8188612c79565b50505050505050565b834211156122d55760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610801565b6000610130548888886122e78c6131ff565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061234282613189565b90506000612352828787876131d7565b9050896001600160a01b0316816001600160a01b0316146123b55760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610801565b6123c08a8a8a61256a565b50505050505050505050565b600082815260c960205260409020600101546123e88133610bf9565b610c088383612a62565b6101956020908152600092835260408084209091529082529020805460018201546002830154600384015460048501805460ff9095169593946001600160a01b0390931693919261244290614ac5565b80601f016020809104026020016040519081016040528092919081815260200182805461246e90614ac5565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050908060050154908060060154905087565b60408051808201909152600080825260208201526001600160a01b038316600090815261016360205260409020805463ffffffff841690811061252457634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b3b151590565b6001600160a01b0383166125cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610801565b6001600160a01b03821661262d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610801565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60005b815151811015610c965760016101986000846000015184815181106126c657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160008282546127009190614906565b9091555081905061271081614afa565b915050612691565b6001600160a01b03831661277c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610801565b6001600160a01b0382166127de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610801565b6127e9838383613228565b6001600160a01b038316600090815260336020526040902054818110156128615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610801565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612898908490614906565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128e491815260200190565b60405180910390a36128f7848484613273565b50505050565b6129078282611c30565b610c965761291f816001600160a01b0316601461327e565b61292a83602061327e565b60405160200161293b9291906146ea565b60408051601f198184030181529082905262461bcd60e51b8252610801916004016147f3565b61296b8282611c30565b610c9657600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556129a33390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610c177f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f612a1660fb5490565b60fc546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b612a6c8282611c30565b15610c9657600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b81836001600160a01b0316856001600160a01b03167f3a9aed43c5ef0596ab67fbc10ecc1bebe53445fd5f3880fb2b0b638bcbbf8a798460405161085091906147f3565b8154600090815b81811015612b7f576000612b288284613460565b905084868281548110612b4b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff161115612b6b57809250612b79565b612b76816001614906565b91505b50612b14565b8115612bd15784612b91600184614a6b565b81548110612baf57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316612bd4565b60005b6001600160e01b031695945050505050565b60655460ff16612c2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610801565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382811660008181526101626020818152604080842080546033845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46128f782848361347b565b600063ffffffff821115612d595760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610801565b5090565b600054610100900460ff16612d845760405162461bcd60e51b815260040161080190614847565b612d8c6135ba565b610c9682826135e1565b600054610100900460ff16612dbd5760405162461bcd60e51b815260040161080190614847565b612dc56135ba565b612dcd61362f565b565b600054610100900460ff16612df65760405162461bcd60e51b815260040161080190614847565b612dfe6135ba565b612e066135ba565b612dcd6135ba565b600054610100900460ff16612e355760405162461bcd60e51b815260040161080190614847565b612e3d6135ba565b612e6081604051806040016040528060018152602001603160f81b815250613662565b611035816136a3565b610c9682826136f2565b60655460ff1615612eb95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610801565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c5c3390565b60008080612efb8561377d565b905060005b8551518110156130fb576000306001600160a01b03166370a0823188600001518481518110612f3f57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401612f7291906001600160a01b0391909116815260200190565b60206040518083038186803b158015612f8a57600080fd5b505afa158015612f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fc291906146a6565b905080156130e8576000612fd6828561491e565b612fe0908861491e565b905060006130198960000151858151811061300b57634e487b7160e01b600052603260045260246000fd5b60200260200101518361385e565b905080156130e55788518051309163a9059cbb918790811061304b57634e487b7160e01b600052603260045260246000fd5b6020026020010151836040518363ffffffff1660e01b81526004016130859291906001600160a01b03929092168252602082015260400190565b602060405180830381600087803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d79190614628565b506130e28187614906565b95505b50505b50806130f381614afa565b915050612f00565b5090949350505050565b610c9682826138b7565b60005b8151811015610c96576001610198600084848151811061314257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020600201805460ff19169115159190911790558061318181614afa565b915050613112565b60006107c96131966129e7565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006131e8878787876138d0565b915091506131f5816139bd565b5095945050505050565b6001600160a01b038116600090815261012f602052604090208054600181018255905b50919050565b60655460ff161561326e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610801565b610c08565b610c08838383613bc0565b6060600061328d836002614a4c565b613298906002614906565b67ffffffffffffffff8111156132be57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132e8576020820181803683370190505b509050600360fc1b8160008151811061331157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061334e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613372846002614a4c565b61337d906001614906565b90505b6001811115613411576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106133bf57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106133e357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361340a81614aae565b9050613380565b508315610bda5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610801565b600061346f600284841861491e565b610bda90848416614906565b816001600160a01b0316836001600160a01b03161415801561349d5750600081115b15610c08576001600160a01b0383161561352c576001600160a01b03831660009081526101636020526040812081906134d990613bf385613bff565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051613521929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610c08576001600160a01b038216600090815261016360205260408120819061356390613da285613bff565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516135ab929190918252602082015260400190565b60405180910390a25050505050565b600054610100900460ff16612dcd5760405162461bcd60e51b815260040161080190614847565b600054610100900460ff166136085760405162461bcd60e51b815260040161080190614847565b815161361b90603690602085019061406b565b508051610c0890603790602084019061406b565b600054610100900460ff166136565760405162461bcd60e51b815260040161080190614847565b6065805460ff19169055565b600054610100900460ff166136895760405162461bcd60e51b815260040161080190614847565b81516020928301208151919092012060fb9190915560fc55565b600054610100900460ff166136ca5760405162461bcd60e51b815260040161080190614847565b507f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c961013055565b6136fc8282613dae565b6035546001600160e01b03101561376e5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610801565b6128f7610164613da283613bff565b600080805b835151811015613857578351805130916370a0823191849081106137b657634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016137e991906001600160a01b0391909116815260200190565b60206040518083038186803b15801561380157600080fd5b505afa158015613815573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061383991906146a6565b6138439083614906565b91508061384f81614afa565b915050613782565b5092915050565b6001600160a01b038216600090815261019860205260408120805460019091015482919061388d906064614a4c565b613897919061491e565b905060646138a58285614a4c565b6138af919061491e565b949350505050565b6138c18282613ea1565b6128f7610164613bf383613bff565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561390757506000905060036139b4565b8460ff16601b1415801561391f57508460ff16601c14155b1561393057506000905060046139b4565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613984573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139ad576000600192509250506139b4565b9150600090505b94509492505050565b60008160048111156139df57634e487b7160e01b600052602160045260246000fd5b14156139ea57611035565b6001816004811115613a0c57634e487b7160e01b600052602160045260246000fd5b1415613a5a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610801565b6002816004811115613a7c57634e487b7160e01b600052602160045260246000fd5b1415613aca5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610801565b6003816004811115613aec57634e487b7160e01b600052602160045260246000fd5b1415613b455760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610801565b6004816004811115613b6757634e487b7160e01b600052602160045260246000fd5b14156110355760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610801565b6001600160a01b0383811660009081526101626020526040808220548584168352912054610c089291821691168361347b565b6000610bda8284614a6b565b825460009081908015613c585785613c18600183614a6b565b81548110613c3657634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316613c5b565b60005b6001600160e01b03169250613c7483858763ffffffff16565b9150600081118015613cc057504386613c8e600184614a6b565b81548110613cac57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15613d2e57613cce82614002565b86613cda600184614a6b565b81548110613cf857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550613d99565b856040518060400160405280613d4343612cf4565b63ffffffff168152602001613d5785614002565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b6000610bda8284614906565b6001600160a01b038216613e045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610801565b613e1060008383613228565b8060356000828254613e229190614906565b90915550506001600160a01b03821660009081526033602052604081208054839290613e4f908490614906565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c9660008383613273565b6001600160a01b038216613f015760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610801565b613f0d82600083613228565b6001600160a01b03821660009081526033602052604090205481811015613f815760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610801565b6001600160a01b0383166000908152603360205260408120838303905560358054849290613fb0908490614a6b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c0883600084613273565b60006001600160e01b03821115612d595760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610801565b82805461407790614ac5565b90600052602060002090601f01602090048101928261409957600085556140df565b82601f106140b257805160ff19168380011785556140df565b828001600101855582156140df579182015b828111156140df5782518255916020019190600101906140c4565b50612d5992915061417c565b5080546140f790614ac5565b6000825580601f106141095750611035565b601f016020900490600052602060002090810190611035919061417c565b8280548282559060005260206000209081019282156140df579160200282015b828111156140df57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614147565b5b80821115612d59576000815560010161417d565b80356001600160a01b03811681146107cc57600080fd5b600082601f8301126141b8578081fd5b8135602067ffffffffffffffff8211156141d4576141d4614b2b565b8160051b6141e38282016148d5565b8381528281019086840183880185018910156141fd578687fd5b8693505b858410156142265761421281614191565b835260019390930192918401918401614201565b50979650505050505050565b803560ff811681146107cc57600080fd5b600060208284031215614254578081fd5b610bda82614191565b6000806040838503121561426f578081fd5b61427883614191565b915061428660208401614191565b90509250929050565b6000806000606084860312156142a3578081fd5b6142ac84614191565b92506142ba60208501614191565b9150604084013590509250925092565b600080600080600080600060e0888a0312156142e4578283fd5b6142ed88614191565b96506142fb60208901614191565b9550604088013594506060880135935061431760808901614232565b925060a0880135915060c0880135905092959891949750929550565b600080600080600060a0868803121561434a578081fd5b61435386614191565b9450602086013567ffffffffffffffff81111561436e578182fd5b61437a888289016141a8565b959895975050505060408401359360608101359360809091013592509050565b600080604083850312156143ac578182fd5b6143b583614191565b946020939093013593505050565b6000806000606084860312156143d7578283fd5b6143e084614191565b92506020840135915060408401356143f781614b41565b809150509250925092565b60008060008060608587031215614417578384fd5b61442085614191565b935060208501359250604085013567ffffffffffffffff80821115614443578384fd5b818701915087601f830112614456578384fd5b813581811115614464578485fd5b886020828501011115614475578485fd5b95989497505060200194505050565b600080600060608486031215614498578081fd5b6144a184614191565b92506020808501359250604085013567ffffffffffffffff808211156144c5578384fd5b818701915087601f8301126144d8578384fd5b8135818111156144ea576144ea614b2b565b6144fc601f8201601f191685016148d5565b91508082528884828501011115614511578485fd5b808484018584013784848284010152508093505050509250925092565b600080600060608486031215614542578081fd5b61454b84614191565b95602085013595506040909401359392505050565b60008060008060008060c08789031215614578578384fd5b61458187614191565b9550602087013594506040870135935061459d60608801614232565b92506080870135915060a087013590509295509295509295565b600080604083850312156145c9578182fd5b6145d283614191565b9150602083013563ffffffff811681146145ea578182fd5b809150509250929050565b600060208284031215614606578081fd5b813567ffffffffffffffff81111561461c578182fd5b6138af848285016141a8565b600060208284031215614639578081fd5b8151610bda81614b41565b600060208284031215614655578081fd5b5035919050565b6000806040838503121561466e578182fd5b8235915061428660208401614191565b60006020828403121561468f578081fd5b81356001600160e01b031981168114610bda578182fd5b6000602082840312156146b7578081fd5b5051919050565b600081518084526146d6816020860160208601614a82565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351614722816017850160208801614a82565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614753816028840160208801614a82565b01602801949350505050565b60006005891061477d57634e487b7160e01b81526021600452602481fd5b88825287602083015260018060a01b038716604083015285606083015260e060808301526147ae60e08301866146be565b60a08301949094525060c0015295945050505050565b60006020825282602083015282846040840137818301604090810191909152601f909201601f19160101919050565b600060208252610bda60208301846146be565b60208082526021908201527f4f6e6c7920736572766963652063616e2063616c6c2074686973206d6574686f6040820152601960fa1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526023908201527f4f6e6c792076616c696461746f722063616e2063616c6c2074686973206d65746040820152621a1bd960ea1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156148fe576148fe614b2b565b604052919050565b6000821982111561491957614919614b15565b500190565b60008261493957634e487b7160e01b81526012600452602481fd5b500490565b80825b600180861161495057506139b4565b81870482111561496257614962614b15565b8086161561496f57918102915b9490941c938002614941565b6000610bda60001960ff85168460008261499757506001610bda565b816149a457506000610bda565b81600181146149ba57600281146149c4576149f1565b6001915050610bda565b60ff8411156149d5576149d5614b15565b6001841b9150848211156149eb576149eb614b15565b50610bda565b5060208310610133831016604e8410600b8410161715614a24575081810a83811115614a1f57614a1f614b15565b610bda565b614a31848484600161493e565b808604821115614a4357614a43614b15565b02949350505050565b6000816000190483118215151615614a6657614a66614b15565b500290565b600082821015614a7d57614a7d614b15565b500390565b60005b83811015614a9d578181015183820152602001614a85565b838111156128f75750506000910152565b600081614abd57614abd614b15565b506000190190565b600181811c90821680614ad957607f821691505b6020821081141561322257634e487b7160e01b600052602260045260246000fd5b6000600019821415614b0e57614b0e614b15565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461103557600080fdfe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa26469706673582212209e5be5af361e4375e934d2355bdff23a942ee36ce9f04eccbfb7eb22ed3e142164736f6c63430008030033