ETH Price: $2,284.04 (+0.84%)
Gas: 1.89 Gwei

Token

USD Reserve (USDR)
 

Overview

Max Total Supply

345,000,000 USDR

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
6.73711 USDR

Value
$0.00
0xd7664ef9c11551fd4e3c9867a54666707c13aedc
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
USDRTokenV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-23
*/

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: contracts/v1/AbstractFiatTokenV1.sol

pragma solidity 0.6.12;

abstract contract AbstractFiatTokenV1 is IERC20 {
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal virtual;

    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal virtual;
}

// File: contracts/v1/Ownable.sol

pragma solidity 0.6.12;

/**
 * @notice The Ownable contract has an owner address, and provides basic
 * authorization control functions
 * @dev Forked from https://github.com/OpenZeppelin/openzeppelin-labs/blob/3887ab77b8adafba4a26ace002f3a684c1a3388b/upgradeability_ownership/contracts/ownership/Ownable.sol
 * Modifications:
 * 1. Consolidate OwnableStorage into this contract (7/13/18)
 * 2. Reformat, conform to Solidity 0.6 syntax, and add error messages (5/13/20)
 * 3. Make public functions external (5/27/20)
 */
contract Ownable {
    // Owner of the contract
    address private _owner;

    /**
     * @dev Event to show ownership has been transferred
     * @param previousOwner representing the address of the previous owner
     * @param newOwner representing the address of the new owner
     */
    event OwnershipTransferred(address previousOwner, address newOwner);

    /**
     * @dev The constructor sets the original owner of the contract to the sender account.
     */
    constructor() public {
        setOwner(msg.sender);
    }

    /**
     * @dev Tells the address of the owner
     * @return the address of the owner
     */
    function owner() external view returns (address) {
        return _owner;
    }

    /**
     * @dev Sets a new owner address
     */
    function setOwner(address newOwner) internal {
        _owner = newOwner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) external onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        setOwner(newOwner);
    }
}

// File: contracts/v1/Pausable.sol

pragma solidity 0.6.12;

/**
 * @notice Base contract which allows children to implement an emergency stop
 * mechanism
 * @dev Forked from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/feb665136c0dae9912e08397c1a21c4af3651ef3/contracts/lifecycle/Pausable.sol
 * Modifications:
 * 1. Added pauser role, switched pause/unpause to be onlyPauser (6/14/2018)
 * 2. Removed whenNotPause/whenPaused from pause/unpause (6/14/2018)
 * 3. Removed whenPaused (6/14/2018)
 * 4. Switches ownable library to use ZeppelinOS (7/12/18)
 * 5. Remove constructor (7/13/18)
 * 6. Reformat, conform to Solidity 0.6 syntax and add error messages (5/13/20)
 * 7. Make public functions external (5/27/20)
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();
    event PauserChanged(address indexed newAddress);

    address public pauser;
    bool public paused = false;

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

    /**
     * @dev throws if called by any account other than the pauser
     */
    modifier onlyPauser() {
        require(msg.sender == pauser, "Pausable: caller is not the pauser");
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() external onlyPauser {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() external onlyPauser {
        paused = false;
        emit Unpause();
    }

    /**
     * @dev update the pauser role
     */
    function updatePauser(address _newPauser) external onlyOwner {
        require(
            _newPauser != address(0),
            "Pausable: new pauser is the zero address"
        );
        pauser = _newPauser;
        emit PauserChanged(pauser);
    }
}

// File: contracts/v1/Blacklistable.sol

pragma solidity 0.6.12;

/**
 * @title Blacklistable Token
 * @dev Allows accounts to be blacklisted by a "blacklister" role
 */
contract Blacklistable is Ownable {
    address public blacklister;
    mapping(address => bool) internal blacklisted;

    event Blacklisted(address indexed _account);
    event UnBlacklisted(address indexed _account);
    event BlacklisterChanged(address indexed newBlacklister);

    /**
     * @dev Throws if called by any account other than the blacklister
     */
    modifier onlyBlacklister() {
        require(
            msg.sender == blacklister,
            "Blacklistable: caller is not the blacklister"
        );
        _;
    }

    /**
     * @dev Throws if argument account is blacklisted
     * @param _account The address to check
     */
    modifier notBlacklisted(address _account) {
        require(
            !blacklisted[_account],
            "Blacklistable: account is blacklisted"
        );
        _;
    }

    /**
     * @dev Checks if account is blacklisted
     * @param _account The address to check
     */
    function isBlacklisted(address _account) external view returns (bool) {
        return blacklisted[_account];
    }

    /**
     * @dev Adds account to blacklist
     * @param _account The address to blacklist
     */
    function blacklist(address _account) external onlyBlacklister {
        blacklisted[_account] = true;
        emit Blacklisted(_account);
    }

    /**
     * @dev Removes account from blacklist
     * @param _account The address to remove from the blacklist
     */
    function unBlacklist(address _account) external onlyBlacklister {
        blacklisted[_account] = false;
        emit UnBlacklisted(_account);
    }

    function updateBlacklister(address _newBlacklister) external onlyOwner {
        require(
            _newBlacklister != address(0),
            "Blacklistable: new blacklister is the zero address"
        );
        blacklister = _newBlacklister;
        emit BlacklisterChanged(blacklister);
    }
}

// File: contracts/v1/FiatTokenV1.sol

pragma solidity 0.6.12;

/**
 * @title FiatToken
 * @dev ERC20 Token backed by fiat reserves
 */
contract FiatTokenV1 is AbstractFiatTokenV1, Ownable, Pausable, Blacklistable {
    using SafeMath for uint256;

    string public name;
    string public symbol;
    uint8 public decimals;
    string public currency;
    address public masterMinter;
    bool internal initialized;

    mapping(address => uint256) internal balances;
    mapping(address => mapping(address => uint256)) internal allowed;
    uint256 internal totalSupply_ = 0;
    mapping(address => bool) internal minters;
    mapping(address => uint256) internal minterAllowed;

    event Mint(address indexed minter, address indexed to, uint256 amount);
    event Burn(address indexed burner, uint256 amount);
    event MinterConfigured(address indexed minter, uint256 minterAllowedAmount);
    event MinterRemoved(address indexed oldMinter);
    event MasterMinterChanged(address indexed newMasterMinter);

    function initialize(
        string memory tokenName,
        string memory tokenSymbol,
        string memory tokenCurrency,
        uint8 tokenDecimals,
        address newMasterMinter,
        address newPauser,
        address newBlacklister,
        address newOwner
    ) public {
        require(!initialized, "FiatToken: contract is already initialized");
        require(
            newMasterMinter != address(0),
            "FiatToken: new masterMinter is the zero address"
        );
        require(
            newPauser != address(0),
            "FiatToken: new pauser is the zero address"
        );
        require(
            newBlacklister != address(0),
            "FiatToken: new blacklister is the zero address"
        );
        require(
            newOwner != address(0),
            "FiatToken: new owner is the zero address"
        );

        name = tokenName;
        symbol = tokenSymbol;
        currency = tokenCurrency;
        decimals = tokenDecimals;
        masterMinter = newMasterMinter;
        pauser = newPauser;
        blacklister = newBlacklister;
        setOwner(newOwner);
        initialized = true;
    }

    /**
     * @dev Throws if called by any account other than a minter
     */
    modifier onlyMinters() {
        require(minters[msg.sender], "FiatToken: caller is not a minter");
        _;
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint. Must be less than or equal
     * to the minterAllowance of the caller.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address _to, uint256 _amount)
        external
        whenNotPaused
        onlyMinters
        notBlacklisted(msg.sender)
        notBlacklisted(_to)
        returns (bool)
    {
        require(_to != address(0), "FiatToken: mint to the zero address");
        require(_amount > 0, "FiatToken: mint amount not greater than 0");

        uint256 mintingAllowedAmount = minterAllowed[msg.sender];
        require(
            _amount <= mintingAllowedAmount,
            "FiatToken: mint amount exceeds minterAllowance"
        );

        totalSupply_ = totalSupply_.add(_amount);
        balances[_to] = balances[_to].add(_amount);
        minterAllowed[msg.sender] = mintingAllowedAmount.sub(_amount);
        emit Mint(msg.sender, _to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;
    }

    /**
     * @dev Throws if called by any account other than the masterMinter
     */
    modifier onlyMasterMinter() {
        require(
            msg.sender == masterMinter,
            "FiatToken: caller is not the masterMinter"
        );
        _;
    }

    /**
     * @dev Get minter allowance for an account
     * @param minter The address of the minter
     */
    function minterAllowance(address minter) external view returns (uint256) {
        return minterAllowed[minter];
    }

    /**
     * @dev Checks if account is a minter
     * @param account The address to check
     */
    function isMinter(address account) external view returns (bool) {
        return minters[account];
    }

    /**
     * @notice Amount of remaining tokens spender is allowed to transfer on
     * behalf of the token owner
     * @param owner     Token owner's address
     * @param spender   Spender's address
     * @return Allowance amount
     */
    function allowance(address owner, address spender)
        external
        override
        view
        returns (uint256)
    {
        return allowed[owner][spender];
    }

    /**
     * @dev Get totalSupply of token
     */
    function totalSupply() external override view returns (uint256) {
        return totalSupply_;
    }

    /**
     * @dev Get token balance of an account
     * @param account address The account
     */
    function balanceOf(address account)
        external
        override
        view
        returns (uint256)
    {
        return balances[account];
    }

    /**
     * @notice Set spender's allowance over the caller's tokens to be a given
     * value.
     * @param spender   Spender's address
     * @param value     Allowance amount
     * @return True if successful
     */
    function approve(address spender, uint256 value)
        external
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Internal function to set allowance
     * @param owner     Token owner's address
     * @param spender   Spender's address
     * @param value     Allowance amount
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal override {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @notice Transfer tokens by spending allowance
     * @param from  Payer's address
     * @param to    Payee's address
     * @param value Transfer amount
     * @return True if successful
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    )
        external
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(from)
        notBlacklisted(to)
        returns (bool)
    {
        require(
            value <= allowed[from][msg.sender],
            "ERC20: transfer amount exceeds allowance"
        );
        _transfer(from, to, value);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(value);
        return true;
    }

    /**
     * @notice Transfer tokens from the caller
     * @param to    Payee's address
     * @param value Transfer amount
     * @return True if successful
     */
    function transfer(address to, uint256 value)
        external
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(to)
        returns (bool)
    {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @notice Internal function to process transfers
     * @param from  Payer's address
     * @param to    Payee's address
     * @param value Transfer amount
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            value <= balances[from],
            "ERC20: transfer amount exceeds balance"
        );

        balances[from] = balances[from].sub(value);
        balances[to] = balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Function to add/update a new minter
     * @param minter The address of the minter
     * @param minterAllowedAmount The minting amount allowed for the minter
     * @return True if the operation was successful.
     */
    function configureMinter(address minter, uint256 minterAllowedAmount)
        external
        whenNotPaused
        onlyMasterMinter
        returns (bool)
    {
        minters[minter] = true;
        minterAllowed[minter] = minterAllowedAmount;
        emit MinterConfigured(minter, minterAllowedAmount);
        return true;
    }

    /**
     * @dev Function to remove a minter
     * @param minter The address of the minter to remove
     * @return True if the operation was successful.
     */
    function removeMinter(address minter)
        external
        onlyMasterMinter
        returns (bool)
    {
        minters[minter] = false;
        minterAllowed[minter] = 0;
        emit MinterRemoved(minter);
        return true;
    }

    /**
     * @dev allows a minter to burn some of its own tokens
     * Validates that caller is a minter and that sender is not blacklisted
     * amount is less than or equal to the minter's account balance
     * @param _amount uint256 the amount of tokens to be burned
     */
    function burn(uint256 _amount)
        external
        whenNotPaused
        onlyMinters
        notBlacklisted(msg.sender)
    {
        uint256 balance = balances[msg.sender];
        require(_amount > 0, "FiatToken: burn amount not greater than 0");
        require(balance >= _amount, "FiatToken: burn amount exceeds balance");

        totalSupply_ = totalSupply_.sub(_amount);
        balances[msg.sender] = balance.sub(_amount);
        emit Burn(msg.sender, _amount);
        emit Transfer(msg.sender, address(0), _amount);
    }

    function updateMasterMinter(address _newMasterMinter) external onlyOwner {
        require(
            _newMasterMinter != address(0),
            "FiatToken: new masterMinter is the zero address"
        );
        masterMinter = _newMasterMinter;
        emit MasterMinterChanged(masterMinter);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;

            bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{
            value: weiValue
        }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.6.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(
            value
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(
            value,
            "SafeERC20: decreased allowance below zero"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: contracts/v1.1/Rescuable.sol

pragma solidity 0.6.12;

contract Rescuable is Ownable {
    using SafeERC20 for IERC20;

    address private _rescuer;

    event RescuerChanged(address indexed newRescuer);

    /**
     * @notice Returns current rescuer
     * @return Rescuer's address
     */
    function rescuer() external view returns (address) {
        return _rescuer;
    }

    /**
     * @notice Revert if called by any account other than the rescuer.
     */
    modifier onlyRescuer() {
        require(msg.sender == _rescuer, "Rescuable: caller is not the rescuer");
        _;
    }

    /**
     * @notice Rescue ERC20 tokens locked up in this contract.
     * @param tokenContract ERC20 token contract address
     * @param to        Recipient address
     * @param amount    Amount to withdraw
     */
    function rescueERC20(
        IERC20 tokenContract,
        address to,
        uint256 amount
    ) external onlyRescuer {
        tokenContract.safeTransfer(to, amount);
    }

    /**
     * @notice Assign the rescuer role to a given address.
     * @param newRescuer New rescuer's address
     */
    function updateRescuer(address newRescuer) external onlyOwner {
        require(
            newRescuer != address(0),
            "Rescuable: new rescuer is the zero address"
        );
        _rescuer = newRescuer;
        emit RescuerChanged(newRescuer);
    }
}

// File: contracts/v1.1/FiatTokenV1_1.sol

pragma solidity 0.6.12;

/**
 * @title FiatTokenV1_1
 * @dev ERC20 Token backed by fiat reserves
 */
contract FiatTokenV1_1 is FiatTokenV1, Rescuable {

}

// File: contracts/v2/AbstractFiatTokenV2.sol

pragma solidity 0.6.12;

abstract contract AbstractFiatTokenV2 is AbstractFiatTokenV1 {
    function _increaseAllowance(
        address owner,
        address spender,
        uint256 increment
    ) internal virtual;

    function _decreaseAllowance(
        address owner,
        address spender,
        uint256 decrement
    ) internal virtual;
}

// File: contracts/util/ECRecover.sol


pragma solidity 0.6.12;

/**
 * @title ECRecover
 * @notice A library that provides a safe ECDSA recovery function
 */
library ECRecover {
    /**
     * @notice Recover signer's address from a signed message
     * @dev Adapted from: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/65e4ffde586ec89af3b7e9140bdc9235d1254853/contracts/cryptography/ECDSA.sol
     * Modifications: Accept v, r, and s as separate arguments
     * @param digest    Keccak-256 hash digest of the signed message
     * @param v         v of the signature
     * @param r         r of the signature
     * @param s         s of the signature
     * @return Signer address
     */
    function recover(
        bytes32 digest,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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
        ) {
            revert("ECRecover: invalid signature 's' value");
        }

        if (v != 27 && v != 28) {
            revert("ECRecover: invalid signature 'v' value");
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(digest, v, r, s);
        require(signer != address(0), "ECRecover: invalid signature");

        return signer;
    }
}

// File: contracts/util/EIP712.sol


pragma solidity 0.6.12;

/**
 * @title EIP712
 * @notice A library that provides EIP712 helper functions
 */
library EIP712 {
    /**
     * @notice Make EIP712 domain separator
     * @param name      Contract name
     * @param version   Contract version
     * @return Domain separator
     */
    function makeDomainSeparator(string memory name, string memory version)
        internal
        view
        returns (bytes32)
    {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return
            keccak256(
                abi.encode(
                    0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f,
                    // = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)")
                    keccak256(bytes(name)),
                    keccak256(bytes(version)),
                    chainId,
                    address(this)
                )
            );
    }

    /**
     * @notice Recover signer's address from a EIP712 signature
     * @param domainSeparator   Domain separator
     * @param v                 v of the signature
     * @param r                 r of the signature
     * @param s                 s of the signature
     * @param typeHashAndData   Type hash concatenated with data
     * @return Signer's address
     */
    function recover(
        bytes32 domainSeparator,
        uint8 v,
        bytes32 r,
        bytes32 s,
        bytes memory typeHashAndData
    ) internal pure returns (address) {
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                keccak256(typeHashAndData)
            )
        );
        return ECRecover.recover(digest, v, r, s);
    }
}

// File: contracts/v2/EIP712Domain.sol


pragma solidity 0.6.12;

/**
 * @title EIP712 Domain
 */
contract EIP712Domain {
    /**
     * @dev EIP712 Domain Separator
     */
    bytes32 public DOMAIN_SEPARATOR;
}

// File: contracts/v2/GasAbstraction.sol

pragma solidity 0.6.12;

/**
 * @title Gas Abstraction
 * @notice Provide internal implementation for gas-abstracted transfers and
 * approvals
 * @dev Contracts that inherit from this must wrap these with publicly
 * accessible functions, optionally adding modifiers where necessary
 */
abstract contract GasAbstraction is AbstractFiatTokenV2, EIP712Domain {
    bytes32
        public constant TRANSFER_WITH_AUTHORIZATION_TYPEHASH = 0x7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a2267;
    // = keccak256("TransferWithAuthorization(address from,address to,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
    bytes32
        public constant APPROVE_WITH_AUTHORIZATION_TYPEHASH = 0x808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c;
    // = keccak256("ApproveWithAuthorization(address owner,address spender,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
    bytes32
        public constant INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH = 0x424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a;
    // = keccak256("IncreaseAllowanceWithAuthorization(address owner,address spender,uint256 increment,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
    bytes32
        public constant DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH = 0xb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d8;
    // = keccak256("DecreaseAllowanceWithAuthorization(address owner,address spender,uint256 decrement,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
    bytes32
        public constant CANCEL_AUTHORIZATION_TYPEHASH = 0x158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a1597429;
    // = keccak256("CancelAuthorization(address authorizer,bytes32 nonce)")

    enum AuthorizationState { Unused, Used, Canceled }

    /**
     * @dev authorizer address => nonce => authorization state
     */
    mapping(address => mapping(bytes32 => AuthorizationState))
        private _authorizationStates;

    event AuthorizationUsed(address indexed authorizer, bytes32 indexed nonce);
    event AuthorizationCanceled(
        address indexed authorizer,
        bytes32 indexed nonce
    );

    /**
     * @notice Returns the state of an authorization
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     * @return Authorization state
     */
    function authorizationState(address authorizer, bytes32 nonce)
        external
        view
        returns (AuthorizationState)
    {
        return _authorizationStates[authorizer][nonce];
    }

    /**
     * @notice Verify a signed transfer authorization and execute if valid
     * @param from          Payer's address (Authorizer)
     * @param to            Payee's address
     * @param value         Amount to be transferred
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function _transferWithAuthorization(
        address from,
        address to,
        uint256 value,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        _requireValidAuthorization(from, nonce, validAfter, validBefore);

        bytes memory data = abi.encode(
            TRANSFER_WITH_AUTHORIZATION_TYPEHASH,
            from,
            to,
            value,
            validAfter,
            validBefore,
            nonce
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == from,
            "FiatTokenV2: invalid signature"
        );

        _markAuthorizationAsUsed(from, nonce);
        _transfer(from, to, value);
    }

    /**
     * @notice Verify a signed authorization for an increase in the allowance
     * granted to the spender and execute if valid
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param increment     Amount of increase in allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function _increaseAllowanceWithAuthorization(
        address owner,
        address spender,
        uint256 increment,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        _requireValidAuthorization(owner, nonce, validAfter, validBefore);

        bytes memory data = abi.encode(
            INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH,
            owner,
            spender,
            increment,
            validAfter,
            validBefore,
            nonce
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
            "FiatTokenV2: invalid signature"
        );

        _markAuthorizationAsUsed(owner, nonce);
        _increaseAllowance(owner, spender, increment);
    }

    /**
     * @notice Verify a signed authorization for a decrease in the allowance
     * granted to the spender and execute if valid
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param decrement     Amount of decrease in allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function _decreaseAllowanceWithAuthorization(
        address owner,
        address spender,
        uint256 decrement,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        _requireValidAuthorization(owner, nonce, validAfter, validBefore);

        bytes memory data = abi.encode(
            DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH,
            owner,
            spender,
            decrement,
            validAfter,
            validBefore,
            nonce
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
            "FiatTokenV2: invalid signature"
        );

        _markAuthorizationAsUsed(owner, nonce);
        _decreaseAllowance(owner, spender, decrement);
    }

    /**
     * @notice Verify a signed approval authorization and execute if valid
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param value         Amount of allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function _approveWithAuthorization(
        address owner,
        address spender,
        uint256 value,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        _requireValidAuthorization(owner, nonce, validAfter, validBefore);

        bytes memory data = abi.encode(
            APPROVE_WITH_AUTHORIZATION_TYPEHASH,
            owner,
            spender,
            value,
            validAfter,
            validBefore,
            nonce
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
            "FiatTokenV2: invalid signature"
        );

        _markAuthorizationAsUsed(owner, nonce);
        _approve(owner, spender, value);
    }

    /**
     * @notice Attempt to cancel an authorization
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function _cancelAuthorization(
        address authorizer,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        _requireUnusedAuthorization(authorizer, nonce);

        bytes memory data = abi.encode(
            CANCEL_AUTHORIZATION_TYPEHASH,
            authorizer,
            nonce
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == authorizer,
            "FiatTokenV2: invalid signature"
        );

        _authorizationStates[authorizer][nonce] = AuthorizationState.Canceled;
        emit AuthorizationCanceled(authorizer, nonce);
    }

    /**
     * @notice Check that an authorization is unused
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     */
    function _requireUnusedAuthorization(address authorizer, bytes32 nonce)
        private
        view
    {
        require(
            _authorizationStates[authorizer][nonce] ==
                AuthorizationState.Unused,
            "FiatTokenV2: authorization is used or canceled"
        );
    }

    /**
     * @notice Check that authorization is valid
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     */
    function _requireValidAuthorization(
        address authorizer,
        bytes32 nonce,
        uint256 validAfter,
        uint256 validBefore
    ) private view {
        require(
            now > validAfter,
            "FiatTokenV2: authorization is not yet valid"
        );
        require(now < validBefore, "FiatTokenV2: authorization is expired");
        _requireUnusedAuthorization(authorizer, nonce);
    }

    /**
     * @notice Mark an authorization as used
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     */
    function _markAuthorizationAsUsed(address authorizer, bytes32 nonce)
        private
    {
        _authorizationStates[authorizer][nonce] = AuthorizationState.Used;
        emit AuthorizationUsed(authorizer, nonce);
    }
}

// File: contracts/v2/Permit.sol


pragma solidity 0.6.12;

/**
 * @title Permit
 * @notice An alternative to approveWithAuthorization, provided for
 * compatibility with the draft EIP2612 proposed by Uniswap.
 * @dev Differences:
 * - Uses sequential nonce, which restricts transaction submission to one at a
 *   time, or else it will revert
 * - Has deadline (= validBefore - 1) but does not have validAfter
 * - Doesn't have a way to change allowance atomically to prevent ERC20 multiple
 *   withdrawal attacks
 */
abstract contract Permit is AbstractFiatTokenV2, EIP712Domain {
    bytes32
        public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    // = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)")

    mapping(address => uint256) private _permitNonces;

    /**
     * @notice Nonces for permit
     * @param owner Token owner's address (Authorizer)
     * @return Next nonce
     */
    function nonces(address owner) external view returns (uint256) {
        return _permitNonces[owner];
    }

    /**
     * @notice Verify a signed approval permit and execute if valid
     * @param owner     Token owner's address (Authorizer)
     * @param spender   Spender's address
     * @param value     Amount of allowance
     * @param deadline  The time at which this expires (unix time)
     * @param v         v of the signature
     * @param r         r of the signature
     * @param s         s of the signature
     */
    function _permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        require(deadline >= now, "FiatTokenV2: permit is expired");

        bytes memory data = abi.encode(
            PERMIT_TYPEHASH,
            owner,
            spender,
            value,
            _permitNonces[owner]++,
            deadline
        );
        require(
            EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
            "FiatTokenV2: invalid signature"
        );

        _approve(owner, spender, value);
    }
}

// File: contracts/v2/FiatTokenV2.sol


pragma solidity 0.6.12;

/**
 * @title FiatToken V2
 * @notice ERC20 Token backed by fiat reserves, version 2
 */
contract USDRTokenV2 is FiatTokenV1_1, GasAbstraction, Permit {
    bool internal _initializedV2;

    /**
     * @notice Initialize V2 contract
     * @dev When upgrading to V2, this function must also be invoked by using
     * upgradeToAndCall instead of upgradeTo, or by calling both from a contract
     * in a single transaction.
     * @param newName   New token name
     */
    function initializeV2(string calldata newName) external {
        require(
            !_initializedV2,
            "FiatTokenV2: contract is already initialized"
        );
        name = newName;
        DOMAIN_SEPARATOR = EIP712.makeDomainSeparator(newName, "2");
        _initializedV2 = true;
    }

    /**
     * @notice Increase the allowance by a given increment
     * @param spender   Spender's address
     * @param increment Amount of increase in allowance
     * @return True if successful
     */
    function increaseAllowance(address spender, uint256 increment)
        external
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        _increaseAllowance(msg.sender, spender, increment);
        return true;
    }

    /**
     * @notice Decrease the allowance by a given decrement
     * @param spender   Spender's address
     * @param decrement Amount of decrease in allowance
     * @return True if successful
     */
    function decreaseAllowance(address spender, uint256 decrement)
        external
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        _decreaseAllowance(msg.sender, spender, decrement);
        return true;
    }

    /**
     * @notice Execute a transfer with a signed authorization
     * @param from          Payer's address (Authorizer)
     * @param to            Payee's address
     * @param value         Amount to be transferred
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function transferWithAuthorization(
        address from,
        address to,
        uint256 value,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused notBlacklisted(from) notBlacklisted(to) {
        _transferWithAuthorization(
            from,
            to,
            value,
            validAfter,
            validBefore,
            nonce,
            v,
            r,
            s
        );
    }

    /**
     * @notice Update allowance with a signed authorization
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param value         Amount of allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function approveWithAuthorization(
        address owner,
        address spender,
        uint256 value,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused notBlacklisted(owner) notBlacklisted(spender) {
        _approveWithAuthorization(
            owner,
            spender,
            value,
            validAfter,
            validBefore,
            nonce,
            v,
            r,
            s
        );
    }

    /**
     * @notice Increase allowance with a signed authorization
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param increment     Amount of increase in allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function increaseAllowanceWithAuthorization(
        address owner,
        address spender,
        uint256 increment,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused notBlacklisted(owner) notBlacklisted(spender) {
        _increaseAllowanceWithAuthorization(
            owner,
            spender,
            increment,
            validAfter,
            validBefore,
            nonce,
            v,
            r,
            s
        );
    }

    /**
     * @notice Decrease allowance with a signed authorization
     * @param owner         Token owner's address (Authorizer)
     * @param spender       Spender's address
     * @param decrement     Amount of decrease in allowance
     * @param validAfter    The time after which this is valid (unix time)
     * @param validBefore   The time before which this is valid (unix time)
     * @param nonce         Unique nonce
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function decreaseAllowanceWithAuthorization(
        address owner,
        address spender,
        uint256 decrement,
        uint256 validAfter,
        uint256 validBefore,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused notBlacklisted(owner) notBlacklisted(spender) {
        _decreaseAllowanceWithAuthorization(
            owner,
            spender,
            decrement,
            validAfter,
            validBefore,
            nonce,
            v,
            r,
            s
        );
    }

    /**
     * @notice Attempt to cancel an authorization
     * @dev Works only if the authorization is not yet used.
     * @param authorizer    Authorizer's address
     * @param nonce         Nonce of the authorization
     * @param v             v of the signature
     * @param r             r of the signature
     * @param s             s of the signature
     */
    function cancelAuthorization(
        address authorizer,
        bytes32 nonce,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused {
        _cancelAuthorization(authorizer, nonce, v, r, s);
    }

    /**
     * @notice Update allowance with a signed permit
     * @param owner       Token owner's address (Authorizer)
     * @param spender     Spender's address
     * @param value       Amount of allowance
     * @param deadline    Expiration time, seconds since the epoch
     * @param v           v of the signature
     * @param r           r of the signature
     * @param s           s of the signature
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external whenNotPaused notBlacklisted(owner) notBlacklisted(spender) {
        _permit(owner, spender, value, deadline, v, r, s);
    }

    /**
     * @notice Internal function to increase the allowance by a given increment
     * @param owner     Token owner's address
     * @param spender   Spender's address
     * @param increment Amount of increase
     */
    function _increaseAllowance(
        address owner,
        address spender,
        uint256 increment
    ) internal override {
        _approve(owner, spender, allowed[owner][spender].add(increment));
    }

    /**
     * @notice Internal function to decrease the allowance by a given decrement
     * @param owner     Token owner's address
     * @param spender   Spender's address
     * @param decrement Amount of decrease
     */
    function _decreaseAllowance(
        address owner,
        address spender,
        uint256 decrement
    ) internal override {
        _approve(
            owner,
            spender,
            allowed[owner][spender].sub(
                decrement,
                "ERC20: decreased allowance below zero"
            )
        );
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newMasterMinter","type":"address"}],"name":"MasterMinterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"minterAllowedAmount","type":"uint256"}],"name":"MinterConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldMinter","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PauserChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRescuer","type":"address"}],"name":"RescuerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"APPROVE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CANCEL_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"approveWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authorizer","type":"address"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"authorizationState","outputs":[{"internalType":"enum GasAbstraction.AuthorizationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authorizer","type":"address"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"cancelAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"minterAllowedAmount","type":"uint256"}],"name":"configureMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"decrement","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"decrement","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"decreaseAllowanceWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"increment","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"increment","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"increaseAllowanceWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"tokenCurrency","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"address","name":"newMasterMinter","type":"address"},{"internalType":"address","name":"newPauser","type":"address"},{"internalType":"address","name":"newBlacklister","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"initializeV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"minterAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenContract","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescuer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMasterMinter","type":"address"}],"name":"updateMasterMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPauser","type":"address"}],"name":"updatePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRescuer","type":"address"}],"name":"updateRescuer","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001805460ff60a01b191690556000600b553480156200002357600080fd5b506200002f3362000035565b62000057565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6144ca80620000676000396000f3fe608060405234801561001057600080fd5b506004361061030c5760003560e01c80638a6db9c31161019d578063c237108f116100e9578063e1560fd3116100a2578063e94a01021161007c578063e94a010214610c10578063f2fde38b14610c5d578063f9f92be414610c83578063fe575a8714610ca95761030c565b8063e1560fd314610b4a578063e3ee160e14610ba9578063e5a6b10f14610c085761030c565b8063c237108f146109ee578063c7b84f8d14610a4d578063d505accf14610a55578063d608ea6414610aa6578063d916948714610b14578063dd62ed3e14610b1c5761030c565b8063a9059cbb11610156578063ad38bf2211610130578063ad38bf221461092b578063b008609514610951578063b2118a8d146109b0578063bd102430146109e65761030c565b8063a9059cbb146108b3578063aa20e1e4146108df578063aa271e1a146109055761030c565b80638a6db9c3146108415780638da5cb5b1461086757806395d89b411461086f5780639fd0506d14610877578063a0cc6a681461087f578063a457c2d7146108875761030c565b806338a631831161025c5780634e44d956116102155780635c975abb116101ef5780635c975abb146107e557806370a08231146107ed5780637ecebe00146108135780638456cb59146108395761030c565b80634e44d95614610752578063554bab3c1461077e5780635a049a70146107a45761030c565b806338a63183146106c557806339509351146106cd5780633f4ba83a146106f957806340c10f191461070157806342966c681461072d5780634b71f5c31461074a5761030c565b80632ab60045116102c9578063313ce567116102a3578063313ce567146104a25780633357162b146104c057806335d99f35146106995780633644e515146106bd5761030c565b80632ab600451461044e5780633092afd51461047457806330adf81f1461049a5761030c565b806306fdde0314610311578063095ea7b31461038e57806310c8b404146103ce57806318160ddd146103e85780631a895266146103f057806323b872dd14610418575b600080fd5b610319610ccf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035357818101518382015260200161033b565b50505050905090810190601f1680156103805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103ba600480360360408110156103a457600080fd5b506001600160a01b038135169060200135610d5d565b604080519115158252519081900360200190f35b6103d6610e71565b60408051918252519081900360200190f35b6103d6610e95565b6104166004803603602081101561040657600080fd5b50356001600160a01b0316610e9b565b005b6103ba6004803603606081101561042e57600080fd5b506001600160a01b03813581169160208101359091169060400135610f2d565b6104166004803603602081101561046457600080fd5b50356001600160a01b0316611152565b6103ba6004803603602081101561048a57600080fd5b50356001600160a01b031661122e565b6103d66112d5565b6104aa6112f9565b6040805160ff9092168252519081900360200190f35b61041660048036036101008110156104d757600080fd5b810190602081018135600160201b8111156104f157600080fd5b82018360208201111561050357600080fd5b803590602001918460018302840111600160201b8311171561052457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561057657600080fd5b82018360208201111561058857600080fd5b803590602001918460018302840111600160201b831117156105a957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156105fb57600080fd5b82018360208201111561060d57600080fd5b803590602001918460018302840111600160201b8311171561062e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff1692505060208101356001600160a01b0390811691604081013582169160608201358116916080013516611302565b6106a161150e565b604080516001600160a01b039092168252519081900360200190f35b6103d661151d565b6106a1611523565b6103ba600480360360408110156106e357600080fd5b506001600160a01b038135169060200135611532565b61041661163b565b6103ba6004803603604081101561071757600080fd5b506001600160a01b0381351690602001356116bc565b6104166004803603602081101561074357600080fd5b50356119cf565b6103d6611be9565b6103ba6004803603604081101561076857600080fd5b506001600160a01b038135169060200135611c0d565b6104166004803603602081101561079457600080fd5b50356001600160a01b0316611d16565b610416600480360360a08110156107ba57600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135611df8565b6103ba611e5e565b6103d66004803603602081101561080357600080fd5b50356001600160a01b0316611e6e565b6103d66004803603602081101561082957600080fd5b50356001600160a01b0316611e89565b610416611ea4565b6103d66004803603602081101561085757600080fd5b50356001600160a01b0316611f2b565b6106a1611f46565b610319611f55565b6106a1611fb0565b6103d6611fbf565b6103ba6004803603604081101561089d57600080fd5b506001600160a01b038135169060200135611fe3565b6103ba600480360360408110156108c957600080fd5b506001600160a01b0381351690602001356120ec565b610416600480360360208110156108f557600080fd5b50356001600160a01b03166121f5565b6103ba6004803603602081101561091b57600080fd5b50356001600160a01b03166122d7565b6104166004803603602081101561094157600080fd5b50356001600160a01b03166122f5565b610416600480360361012081101561096857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356123d7565b610416600480360360608110156109c657600080fd5b506001600160a01b038135811691602081013590911690604001356124fb565b6106a161255d565b6104166004803603610120811015610a0557600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e081013590610100013561256c565b6103d6612683565b610416600480360360e0811015610a6b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356126a7565b61041660048036036020811015610abc57600080fd5b810190602081018135600160201b811115610ad657600080fd5b820183602082011115610ae857600080fd5b803590602001918460018302840111600160201b83111715610b0957600080fd5b5090925090506127c7565b6103d6612882565b6103d660048036036040811015610b3257600080fd5b506001600160a01b03813581169160200135166128a6565b6104166004803603610120811015610b6157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356128d1565b6104166004803603610120811015610bc057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356129e8565b610319612aff565b610c3c60048036036040811015610c2657600080fd5b506001600160a01b038135169060200135612b5a565b60405180826002811115610c4c57fe5b815260200191505060405180910390f35b61041660048036036020811015610c7357600080fd5b50356001600160a01b0316612b85565b61041660048036036020811015610c9957600080fd5b50356001600160a01b0316612c6b565b6103ba60048036036020811015610cbf57600080fd5b50356001600160a01b0316612d00565b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b820191906000526020600020905b815481529060010190602001808311610d3857829003601f168201915b505050505081565b600154600090600160a01b900460ff1615610db2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff1615610e015760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff1615610e5b5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686612d1e565b506001949350505050565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b600b5490565b6002546001600160a01b03163314610ee45760405162461bcd60e51b815260040180806020018281038252602c815260200180614123602c913960400191505060405180910390fd5b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b600154600090600160a01b900460ff1615610f82576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff1615610fd15760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038516600090815260036020526040902054859060ff161561102b5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038516600090815260036020526040902054859060ff16156110855760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b0387166000908152600a602090815260408083203384529091529020548511156110e75760405162461bcd60e51b81526004018080602001828103825260288152602001806141e96028913960400191505060405180910390fd5b6110f2878787612e0a565b6001600160a01b0387166000908152600a602090815260408083203384529091529020546111209086612f99565b6001600160a01b0388166000908152600a60209081526040808320338452909152902055600193505050509392505050565b6000546001600160a01b0316331461119f576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166111e45760405162461bcd60e51b815260040180806020018281038252602a815260200180614081602a913960400191505060405180910390fd5b600e80546001600160a01b0319166001600160a01b0383169081179091556040517fe475e580d85111348e40d8ca33cfdd74c30fe1655c2d8537a13abc10065ffa5a90600090a250565b6008546000906001600160a01b0316331461127a5760405162461bcd60e51b81526004018080602001828103825260298152602001806140fa6029913960400191505060405180910390fd5b6001600160a01b0382166000818152600c60209081526040808320805460ff19169055600d909152808220829055517fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666929190a2506001919050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60065460ff1681565b600854600160a01b900460ff161561134b5760405162461bcd60e51b815260040180806020018281038252602a81526020018061425f602a913960400191505060405180910390fd5b6001600160a01b0384166113905760405162461bcd60e51b815260040180806020018281038252602f815260200180614196602f913960400191505060405180910390fd5b6001600160a01b0383166113d55760405162461bcd60e51b81526004018080602001828103825260298152602001806140586029913960400191505060405180910390fd5b6001600160a01b03821661141a5760405162461bcd60e51b815260040180806020018281038252602e815260200180614231602e913960400191505060405180910390fd5b6001600160a01b03811661145f5760405162461bcd60e51b815260040180806020018281038252602881526020018061439e6028913960400191505060405180910390fd5b87516114729060049060208b0190613e06565b5086516114869060059060208a0190613e06565b50855161149a906007906020890190613e06565b506006805460ff191660ff8716179055600880546001600160a01b03199081166001600160a01b0387811691909117909255600180548216868416179055600280549091169184169190911790556114f181612fe2565b50506008805460ff60a01b1916600160a01b179055505050505050565b6008546001600160a01b031681565b600f5481565b600e546001600160a01b031690565b600154600090600160a01b900460ff1615611587576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156115d65760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156116305760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686613004565b6001546001600160a01b031633146116845760405162461bcd60e51b815260040180806020018281038252602281526020018061432c6022913960400191505060405180910390fd5b6001805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600154600090600160a01b900460ff1615611711576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b336000908152600c602052604090205460ff1661175f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141756021913960400191505060405180910390fd5b3360008181526003602052604090205460ff16156117ae5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156118085760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b03851661184d5760405162461bcd60e51b8152600401808060200182810382526023815260200180613fc76023913960400191505060405180910390fd5b6000841161188c5760405162461bcd60e51b81526004018080602001828103825260298152602001806140ab6029913960400191505060405180910390fd5b336000908152600d6020526040902054808511156118db5760405162461bcd60e51b815260040180806020018281038252602e8152602001806142fe602e913960400191505060405180910390fd5b600b546118e89086613041565b600b556001600160a01b03861660009081526009602052604090205461190e9086613041565b6001600160a01b0387166000908152600960205260409020556119318186612f99565b336000818152600d602090815260409182902093909355805188815290516001600160a01b038a16937fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f8928290030190a36040805186815290516001600160a01b038816916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600195945050505050565b600154600160a01b900460ff1615611a21576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b336000908152600c602052604090205460ff16611a6f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141756021913960400191505060405180910390fd5b3360008181526003602052604090205460ff1615611abe5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b3360009081526009602052604090205482611b0a5760405162461bcd60e51b8152600401808060200182810382526029815260200180613f9e6029913960400191505060405180910390fd5b82811015611b495760405162461bcd60e51b815260040180806020018281038252602681526020018061414f6026913960400191505060405180910390fd5b600b54611b569084612f99565b600b55611b638184612f99565b33600081815260096020908152604091829020939093558051868152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a260408051848152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505050565b7fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d881565b600154600090600160a01b900460ff1615611c62576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6008546001600160a01b03163314611cab5760405162461bcd60e51b81526004018080602001828103825260298152602001806140fa6029913960400191505060405180910390fd5b6001600160a01b0383166000818152600c60209081526040808320805460ff19166001179055600d825291829020859055815185815291517f46980fca912ef9bcdbd36877427b6b90e860769f604e89c0e67720cece530d209281900390910190a250600192915050565b6000546001600160a01b03163314611d63576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b038116611da85760405162461bcd60e51b8152600401808060200182810382526028815260200180613f4b6028913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fb80482a293ca2e013eda8683c9bd7fc8347cfdaeea5ede58cba46df502c2a60490600090a250565b600154600160a01b900460ff1615611e4a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611e57858585858561309b565b5050505050565b600154600160a01b900460ff1681565b6001600160a01b031660009081526009602052604090205490565b6001600160a01b031660009081526011602052604090205490565b6001546001600160a01b03163314611eed5760405162461bcd60e51b815260040180806020018281038252602281526020018061432c6022913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b03166000908152600d602052604090205490565b6000546001600160a01b031690565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b6001546001600160a01b031681565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b600154600090600160a01b900460ff1615612038576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156120875760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156120e15760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e663386866131b3565b600154600090600160a01b900460ff1615612141576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156121905760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156121ea5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686612e0a565b6000546001600160a01b03163314612242576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166122875760405162461bcd60e51b815260040180806020018281038252602f815260200180614196602f913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fdb66dfa9c6b8f5226fe9aac7e51897ae8ee94ac31dc70bb6c9900b2574b707e690600090a250565b6001600160a01b03166000908152600c602052604090205460ff1690565b6000546001600160a01b03163314612342576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166123875760405162461bcd60e51b81526004018080602001828103825260328152602001806143f46032913960400191505060405180910390fd5b600280546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b600154600160a01b900460ff1615612429576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff16156124835760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156124dd5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b613202565b5050505050505050505050565b600e546001600160a01b031633146125445760405162461bcd60e51b81526004018080602001828103825260248152602001806141c56024913960400191505060405180910390fd5b6125586001600160a01b03841683836132fe565b505050565b6002546001600160a01b031681565b600154600160a01b900460ff16156125be576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff16156126185760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156126725760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b613350565b7f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a81565b600154600160a01b900460ff16156126f9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038716600090815260036020526040902054879060ff16156127535760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038716600090815260036020526040902054879060ff16156127ad5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6127bc89898989898989613440565b505050505050505050565b60125460ff16156128095760405162461bcd60e51b815260040180806020018281038252602c815260200180614289602c913960400191505060405180910390fd5b61281560048383613e84565b5061286e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152601960f91b602082015291506135899050565b600f5550506012805460ff19166001179055565b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b600154600160a01b900460ff1615612923576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff161561297d5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156129d75760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b6135fb565b600154600160a01b900460ff1615612a3a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff1615612a945760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff1615612aee5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b6136eb565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b6001600160a01b03919091166000908152601060209081526040808320938352929052205460ff1690565b6000546001600160a01b03163314612bd2576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b038116612c175760405162461bcd60e51b81526004018080602001828103825260268152602001806140106026913960400191505060405180910390fd5b600054604080516001600160a01b039283168152918316602083015280517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09281900390910190a1612c6881612fe2565b50565b6002546001600160a01b03163314612cb45760405162461bcd60e51b815260040180806020018281038252602c815260200180614123602c913960400191505060405180910390fd5b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b031660009081526003602052604090205460ff1690565b6001600160a01b038316612d635760405162461bcd60e51b81526004018080602001828103825260248152602001806142da6024913960400191505060405180910390fd5b6001600160a01b038216612da85760405162461bcd60e51b81526004018080602001828103825260228152602001806140366022913960400191505060405180910390fd5b6001600160a01b038084166000818152600a6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806142b56025913960400191505060405180910390fd5b6001600160a01b038216612e945760405162461bcd60e51b8152600401808060200182810382526023815260200180613f086023913960400191505060405180910390fd5b6001600160a01b038316600090815260096020526040902054811115612eeb5760405162461bcd60e51b81526004018080602001828103825260268152602001806140d46026913960400191505060405180910390fd5b6001600160a01b038316600090815260096020526040902054612f0e9082612f99565b6001600160a01b038085166000908152600960205260408082209390935590841681522054612f3d9082613041565b6001600160a01b0380841660008181526009602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612fdb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506137db565b9392505050565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038084166000908152600a6020908152604080832093861683529290522054612558908490849061303c9085613041565b612d1e565b600082820183811015612fdb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6130a58585613872565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b0387168183018190526060828101889052835180840390910181526080909201909252600f5490919061310c90868686866138e4565b6001600160a01b031614613155576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6001600160a01b0386166000818152601060209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b612558838361303c84604051806060016040528060258152602001614470602591396001600160a01b03808a166000908152600a60209081526040808320938c168352929052205491906137db565b61320e8985888861393b565b604080517fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d860208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061329490868686866138e4565b6001600160a01b0316146132dd576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6132e78a866139c7565b6132f28a8a8a6131b3565b50505050505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612558908490613a21565b61335c8985888861393b565b604080517f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f549091906133e290868686866138e4565b6001600160a01b03161461342b576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6134358a866139c7565b6132f28a8a8a613004565b42841015613495576040805162461bcd60e51b815260206004820152601e60248201527f46696174546f6b656e56323a207065726d697420697320657870697265640000604482015290519081900360640190fd5b6001600160a01b0380881660008181526011602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e09093019052600f5461352b90868686866138e4565b6001600160a01b031614613574576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b61357f888888612d1e565b5050505050505050565b8151602092830120815191830191909120604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818601528082019390935260608301919091524660808301523060a0808401919091528151808403909101815260c09092019052805191012090565b6136078985888861393b565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061368d90868686866138e4565b6001600160a01b0316146136d6576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6136e08a866139c7565b6132f28a8a8a612d1e565b6136f78985888861393b565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061377d90868686866138e4565b6001600160a01b0316146137c6576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6137d08a866139c7565b6132f28a8a8a612e0a565b6000818484111561386a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561382f578181015183820152602001613817565b50505050905090810190601f16801561385c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216600090815260106020908152604080832084845290915281205460ff1660028111156138a457fe5b146138e05760405162461bcd60e51b815260040180806020018281038252602e8152602001806143c6602e913960400191505060405180910390fd5b5050565b80516020808301919091206040805161190160f01b8185015260228101899052604280820193909352815180820390930183526062019052805191012060009061393081878787613ad2565b979650505050505050565b8142116139795760405162461bcd60e51b815260040180806020018281038252602b815260200180613f73602b913960400191505060405180910390fd5b8042106139b75760405162461bcd60e51b815260040180806020018281038252602581526020018061444b6025913960400191505060405180910390fd5b6139c18484613872565b50505050565b6001600160a01b0382166000818152601060209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b6060613a76826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613c569092919063ffffffff16565b80519091501561255857808060200190516020811015613a9557600080fd5b50516125585760405162461bcd60e51b815260040180806020018281038252602a815260200180614374602a913960400191505060405180910390fd5b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115613b335760405162461bcd60e51b815260040180806020018281038252602681526020018061434e6026913960400191505060405180910390fd5b8360ff16601b14158015613b4b57508360ff16601c14155b15613b875760405162461bcd60e51b8152600401808060200182810382526026815260200180613fea6026913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613be3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613c4b576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b90505b949350505050565b6060613c4e84846000856060613c6b85613dcd565b613cbc576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613cfb5780518252601f199092019160209182019101613cdc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613d5d576040519150601f19603f3d011682016040523d82523d6000602084013e613d62565b606091505b50915091508115613d76579150613c4e9050565b805115613d865780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561382f578181015183820152602001613817565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613c4e575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e4757805160ff1916838001178555613e74565b82800160010185558215613e74579182015b82811115613e74578251825591602001919060010190613e59565b50613e80929150613ef2565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ec55782800160ff19823516178555613e74565b82800160010185558215613e74579182015b82811115613e74578235825591602001919060010190613ed7565b5b80821115613e805760008155600101613ef356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737346696174546f6b656e56323a20696e76616c6964207369676e617475726500005061757361626c653a206e65772070617573657220697320746865207a65726f206164647265737346696174546f6b656e56323a20617574686f72697a6174696f6e206973206e6f74207965742076616c696446696174546f6b656e3a206275726e20616d6f756e74206e6f742067726561746572207468616e203046696174546f6b656e3a206d696e7420746f20746865207a65726f206164647265737345435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c75654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737346696174546f6b656e3a206e65772070617573657220697320746865207a65726f2061646472657373526573637561626c653a206e6577207265736375657220697320746865207a65726f206164647265737346696174546f6b656e3a206d696e7420616d6f756e74206e6f742067726561746572207468616e203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636546696174546f6b656e3a2063616c6c6572206973206e6f7420746865206d61737465724d696e746572426c61636b6c69737461626c653a2063616c6c6572206973206e6f742074686520626c61636b6c697374657246696174546f6b656e3a206275726e20616d6f756e7420657863656564732062616c616e636546696174546f6b656e3a2063616c6c6572206973206e6f742061206d696e74657246696174546f6b656e3a206e6577206d61737465724d696e74657220697320746865207a65726f2061646472657373526573637561626c653a2063616c6c6572206973206e6f7420746865207265736375657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657246696174546f6b656e3a206e657720626c61636b6c697374657220697320746865207a65726f206164647265737346696174546f6b656e3a20636f6e747261637420697320616c726561647920696e697469616c697a656446696174546f6b656e56323a20636f6e747261637420697320616c726561647920696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737346696174546f6b656e3a206d696e7420616d6f756e742065786365656473206d696e746572416c6c6f77616e63655061757361626c653a2063616c6c6572206973206e6f74207468652070617573657245435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c75655361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656446696174546f6b656e3a206e6577206f776e657220697320746865207a65726f206164647265737346696174546f6b656e56323a20617574686f72697a6174696f6e2069732075736564206f722063616e63656c6564426c61636b6c69737461626c653a206e657720626c61636b6c697374657220697320746865207a65726f2061646472657373426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c697374656446696174546f6b656e56323a20617574686f72697a6174696f6e206973206578706972656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c45ccffc7c1ada5ac028fb491cc3d9bfacc8ed86c9a0e613b6070090b9160ac064736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030c5760003560e01c80638a6db9c31161019d578063c237108f116100e9578063e1560fd3116100a2578063e94a01021161007c578063e94a010214610c10578063f2fde38b14610c5d578063f9f92be414610c83578063fe575a8714610ca95761030c565b8063e1560fd314610b4a578063e3ee160e14610ba9578063e5a6b10f14610c085761030c565b8063c237108f146109ee578063c7b84f8d14610a4d578063d505accf14610a55578063d608ea6414610aa6578063d916948714610b14578063dd62ed3e14610b1c5761030c565b8063a9059cbb11610156578063ad38bf2211610130578063ad38bf221461092b578063b008609514610951578063b2118a8d146109b0578063bd102430146109e65761030c565b8063a9059cbb146108b3578063aa20e1e4146108df578063aa271e1a146109055761030c565b80638a6db9c3146108415780638da5cb5b1461086757806395d89b411461086f5780639fd0506d14610877578063a0cc6a681461087f578063a457c2d7146108875761030c565b806338a631831161025c5780634e44d956116102155780635c975abb116101ef5780635c975abb146107e557806370a08231146107ed5780637ecebe00146108135780638456cb59146108395761030c565b80634e44d95614610752578063554bab3c1461077e5780635a049a70146107a45761030c565b806338a63183146106c557806339509351146106cd5780633f4ba83a146106f957806340c10f191461070157806342966c681461072d5780634b71f5c31461074a5761030c565b80632ab60045116102c9578063313ce567116102a3578063313ce567146104a25780633357162b146104c057806335d99f35146106995780633644e515146106bd5761030c565b80632ab600451461044e5780633092afd51461047457806330adf81f1461049a5761030c565b806306fdde0314610311578063095ea7b31461038e57806310c8b404146103ce57806318160ddd146103e85780631a895266146103f057806323b872dd14610418575b600080fd5b610319610ccf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035357818101518382015260200161033b565b50505050905090810190601f1680156103805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103ba600480360360408110156103a457600080fd5b506001600160a01b038135169060200135610d5d565b604080519115158252519081900360200190f35b6103d6610e71565b60408051918252519081900360200190f35b6103d6610e95565b6104166004803603602081101561040657600080fd5b50356001600160a01b0316610e9b565b005b6103ba6004803603606081101561042e57600080fd5b506001600160a01b03813581169160208101359091169060400135610f2d565b6104166004803603602081101561046457600080fd5b50356001600160a01b0316611152565b6103ba6004803603602081101561048a57600080fd5b50356001600160a01b031661122e565b6103d66112d5565b6104aa6112f9565b6040805160ff9092168252519081900360200190f35b61041660048036036101008110156104d757600080fd5b810190602081018135600160201b8111156104f157600080fd5b82018360208201111561050357600080fd5b803590602001918460018302840111600160201b8311171561052457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561057657600080fd5b82018360208201111561058857600080fd5b803590602001918460018302840111600160201b831117156105a957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156105fb57600080fd5b82018360208201111561060d57600080fd5b803590602001918460018302840111600160201b8311171561062e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff1692505060208101356001600160a01b0390811691604081013582169160608201358116916080013516611302565b6106a161150e565b604080516001600160a01b039092168252519081900360200190f35b6103d661151d565b6106a1611523565b6103ba600480360360408110156106e357600080fd5b506001600160a01b038135169060200135611532565b61041661163b565b6103ba6004803603604081101561071757600080fd5b506001600160a01b0381351690602001356116bc565b6104166004803603602081101561074357600080fd5b50356119cf565b6103d6611be9565b6103ba6004803603604081101561076857600080fd5b506001600160a01b038135169060200135611c0d565b6104166004803603602081101561079457600080fd5b50356001600160a01b0316611d16565b610416600480360360a08110156107ba57600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135611df8565b6103ba611e5e565b6103d66004803603602081101561080357600080fd5b50356001600160a01b0316611e6e565b6103d66004803603602081101561082957600080fd5b50356001600160a01b0316611e89565b610416611ea4565b6103d66004803603602081101561085757600080fd5b50356001600160a01b0316611f2b565b6106a1611f46565b610319611f55565b6106a1611fb0565b6103d6611fbf565b6103ba6004803603604081101561089d57600080fd5b506001600160a01b038135169060200135611fe3565b6103ba600480360360408110156108c957600080fd5b506001600160a01b0381351690602001356120ec565b610416600480360360208110156108f557600080fd5b50356001600160a01b03166121f5565b6103ba6004803603602081101561091b57600080fd5b50356001600160a01b03166122d7565b6104166004803603602081101561094157600080fd5b50356001600160a01b03166122f5565b610416600480360361012081101561096857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356123d7565b610416600480360360608110156109c657600080fd5b506001600160a01b038135811691602081013590911690604001356124fb565b6106a161255d565b6104166004803603610120811015610a0557600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e081013590610100013561256c565b6103d6612683565b610416600480360360e0811015610a6b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356126a7565b61041660048036036020811015610abc57600080fd5b810190602081018135600160201b811115610ad657600080fd5b820183602082011115610ae857600080fd5b803590602001918460018302840111600160201b83111715610b0957600080fd5b5090925090506127c7565b6103d6612882565b6103d660048036036040811015610b3257600080fd5b506001600160a01b03813581169160200135166128a6565b6104166004803603610120811015610b6157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356128d1565b6104166004803603610120811015610bc057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356129e8565b610319612aff565b610c3c60048036036040811015610c2657600080fd5b506001600160a01b038135169060200135612b5a565b60405180826002811115610c4c57fe5b815260200191505060405180910390f35b61041660048036036020811015610c7357600080fd5b50356001600160a01b0316612b85565b61041660048036036020811015610c9957600080fd5b50356001600160a01b0316612c6b565b6103ba60048036036020811015610cbf57600080fd5b50356001600160a01b0316612d00565b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b820191906000526020600020905b815481529060010190602001808311610d3857829003601f168201915b505050505081565b600154600090600160a01b900460ff1615610db2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff1615610e015760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff1615610e5b5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686612d1e565b506001949350505050565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b600b5490565b6002546001600160a01b03163314610ee45760405162461bcd60e51b815260040180806020018281038252602c815260200180614123602c913960400191505060405180910390fd5b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b600154600090600160a01b900460ff1615610f82576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff1615610fd15760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038516600090815260036020526040902054859060ff161561102b5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038516600090815260036020526040902054859060ff16156110855760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b0387166000908152600a602090815260408083203384529091529020548511156110e75760405162461bcd60e51b81526004018080602001828103825260288152602001806141e96028913960400191505060405180910390fd5b6110f2878787612e0a565b6001600160a01b0387166000908152600a602090815260408083203384529091529020546111209086612f99565b6001600160a01b0388166000908152600a60209081526040808320338452909152902055600193505050509392505050565b6000546001600160a01b0316331461119f576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166111e45760405162461bcd60e51b815260040180806020018281038252602a815260200180614081602a913960400191505060405180910390fd5b600e80546001600160a01b0319166001600160a01b0383169081179091556040517fe475e580d85111348e40d8ca33cfdd74c30fe1655c2d8537a13abc10065ffa5a90600090a250565b6008546000906001600160a01b0316331461127a5760405162461bcd60e51b81526004018080602001828103825260298152602001806140fa6029913960400191505060405180910390fd5b6001600160a01b0382166000818152600c60209081526040808320805460ff19169055600d909152808220829055517fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666929190a2506001919050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60065460ff1681565b600854600160a01b900460ff161561134b5760405162461bcd60e51b815260040180806020018281038252602a81526020018061425f602a913960400191505060405180910390fd5b6001600160a01b0384166113905760405162461bcd60e51b815260040180806020018281038252602f815260200180614196602f913960400191505060405180910390fd5b6001600160a01b0383166113d55760405162461bcd60e51b81526004018080602001828103825260298152602001806140586029913960400191505060405180910390fd5b6001600160a01b03821661141a5760405162461bcd60e51b815260040180806020018281038252602e815260200180614231602e913960400191505060405180910390fd5b6001600160a01b03811661145f5760405162461bcd60e51b815260040180806020018281038252602881526020018061439e6028913960400191505060405180910390fd5b87516114729060049060208b0190613e06565b5086516114869060059060208a0190613e06565b50855161149a906007906020890190613e06565b506006805460ff191660ff8716179055600880546001600160a01b03199081166001600160a01b0387811691909117909255600180548216868416179055600280549091169184169190911790556114f181612fe2565b50506008805460ff60a01b1916600160a01b179055505050505050565b6008546001600160a01b031681565b600f5481565b600e546001600160a01b031690565b600154600090600160a01b900460ff1615611587576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156115d65760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156116305760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686613004565b6001546001600160a01b031633146116845760405162461bcd60e51b815260040180806020018281038252602281526020018061432c6022913960400191505060405180910390fd5b6001805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600154600090600160a01b900460ff1615611711576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b336000908152600c602052604090205460ff1661175f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141756021913960400191505060405180910390fd5b3360008181526003602052604090205460ff16156117ae5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156118085760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b03851661184d5760405162461bcd60e51b8152600401808060200182810382526023815260200180613fc76023913960400191505060405180910390fd5b6000841161188c5760405162461bcd60e51b81526004018080602001828103825260298152602001806140ab6029913960400191505060405180910390fd5b336000908152600d6020526040902054808511156118db5760405162461bcd60e51b815260040180806020018281038252602e8152602001806142fe602e913960400191505060405180910390fd5b600b546118e89086613041565b600b556001600160a01b03861660009081526009602052604090205461190e9086613041565b6001600160a01b0387166000908152600960205260409020556119318186612f99565b336000818152600d602090815260409182902093909355805188815290516001600160a01b038a16937fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f8928290030190a36040805186815290516001600160a01b038816916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600195945050505050565b600154600160a01b900460ff1615611a21576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b336000908152600c602052604090205460ff16611a6f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141756021913960400191505060405180910390fd5b3360008181526003602052604090205460ff1615611abe5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b3360009081526009602052604090205482611b0a5760405162461bcd60e51b8152600401808060200182810382526029815260200180613f9e6029913960400191505060405180910390fd5b82811015611b495760405162461bcd60e51b815260040180806020018281038252602681526020018061414f6026913960400191505060405180910390fd5b600b54611b569084612f99565b600b55611b638184612f99565b33600081815260096020908152604091829020939093558051868152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a260408051848152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505050565b7fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d881565b600154600090600160a01b900460ff1615611c62576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6008546001600160a01b03163314611cab5760405162461bcd60e51b81526004018080602001828103825260298152602001806140fa6029913960400191505060405180910390fd5b6001600160a01b0383166000818152600c60209081526040808320805460ff19166001179055600d825291829020859055815185815291517f46980fca912ef9bcdbd36877427b6b90e860769f604e89c0e67720cece530d209281900390910190a250600192915050565b6000546001600160a01b03163314611d63576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b038116611da85760405162461bcd60e51b8152600401808060200182810382526028815260200180613f4b6028913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fb80482a293ca2e013eda8683c9bd7fc8347cfdaeea5ede58cba46df502c2a60490600090a250565b600154600160a01b900460ff1615611e4a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611e57858585858561309b565b5050505050565b600154600160a01b900460ff1681565b6001600160a01b031660009081526009602052604090205490565b6001600160a01b031660009081526011602052604090205490565b6001546001600160a01b03163314611eed5760405162461bcd60e51b815260040180806020018281038252602281526020018061432c6022913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b03166000908152600d602052604090205490565b6000546001600160a01b031690565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b6001546001600160a01b031681565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b600154600090600160a01b900460ff1615612038576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156120875760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156120e15760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e663386866131b3565b600154600090600160a01b900460ff1615612141576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526003602052604090205460ff16156121905760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038416600090815260036020526040902054849060ff16156121ea5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b610e66338686612e0a565b6000546001600160a01b03163314612242576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166122875760405162461bcd60e51b815260040180806020018281038252602f815260200180614196602f913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fdb66dfa9c6b8f5226fe9aac7e51897ae8ee94ac31dc70bb6c9900b2574b707e690600090a250565b6001600160a01b03166000908152600c602052604090205460ff1690565b6000546001600160a01b03163314612342576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b0381166123875760405162461bcd60e51b81526004018080602001828103825260328152602001806143f46032913960400191505060405180910390fd5b600280546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b600154600160a01b900460ff1615612429576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff16156124835760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156124dd5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b613202565b5050505050505050505050565b600e546001600160a01b031633146125445760405162461bcd60e51b81526004018080602001828103825260248152602001806141c56024913960400191505060405180910390fd5b6125586001600160a01b03841683836132fe565b505050565b6002546001600160a01b031681565b600154600160a01b900460ff16156125be576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff16156126185760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156126725760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b613350565b7f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a81565b600154600160a01b900460ff16156126f9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038716600090815260036020526040902054879060ff16156127535760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038716600090815260036020526040902054879060ff16156127ad5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6127bc89898989898989613440565b505050505050505050565b60125460ff16156128095760405162461bcd60e51b815260040180806020018281038252602c815260200180614289602c913960400191505060405180910390fd5b61281560048383613e84565b5061286e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152601960f91b602082015291506135899050565b600f5550506012805460ff19166001179055565b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b600154600160a01b900460ff1615612923576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff161561297d5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff16156129d75760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b6135fb565b600154600160a01b900460ff1615612a3a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b038916600090815260036020526040902054899060ff1615612a945760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6001600160a01b038916600090815260036020526040902054899060ff1615612aee5760405162461bcd60e51b81526004018080602001828103825260258152602001806144266025913960400191505060405180910390fd5b6124ee8b8b8b8b8b8b8b8b8b6136eb565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d555780601f10610d2a57610100808354040283529160200191610d55565b6001600160a01b03919091166000908152601060209081526040808320938352929052205460ff1690565b6000546001600160a01b03163314612bd2576040805162461bcd60e51b81526020600482018190526024820152600080516020614211833981519152604482015290519081900360640190fd5b6001600160a01b038116612c175760405162461bcd60e51b81526004018080602001828103825260268152602001806140106026913960400191505060405180910390fd5b600054604080516001600160a01b039283168152918316602083015280517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09281900390910190a1612c6881612fe2565b50565b6002546001600160a01b03163314612cb45760405162461bcd60e51b815260040180806020018281038252602c815260200180614123602c913960400191505060405180910390fd5b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b031660009081526003602052604090205460ff1690565b6001600160a01b038316612d635760405162461bcd60e51b81526004018080602001828103825260248152602001806142da6024913960400191505060405180910390fd5b6001600160a01b038216612da85760405162461bcd60e51b81526004018080602001828103825260228152602001806140366022913960400191505060405180910390fd5b6001600160a01b038084166000818152600a6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806142b56025913960400191505060405180910390fd5b6001600160a01b038216612e945760405162461bcd60e51b8152600401808060200182810382526023815260200180613f086023913960400191505060405180910390fd5b6001600160a01b038316600090815260096020526040902054811115612eeb5760405162461bcd60e51b81526004018080602001828103825260268152602001806140d46026913960400191505060405180910390fd5b6001600160a01b038316600090815260096020526040902054612f0e9082612f99565b6001600160a01b038085166000908152600960205260408082209390935590841681522054612f3d9082613041565b6001600160a01b0380841660008181526009602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612fdb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506137db565b9392505050565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038084166000908152600a6020908152604080832093861683529290522054612558908490849061303c9085613041565b612d1e565b600082820183811015612fdb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6130a58585613872565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b0387168183018190526060828101889052835180840390910181526080909201909252600f5490919061310c90868686866138e4565b6001600160a01b031614613155576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6001600160a01b0386166000818152601060209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b612558838361303c84604051806060016040528060258152602001614470602591396001600160a01b03808a166000908152600a60209081526040808320938c168352929052205491906137db565b61320e8985888861393b565b604080517fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d860208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061329490868686866138e4565b6001600160a01b0316146132dd576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6132e78a866139c7565b6132f28a8a8a6131b3565b50505050505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612558908490613a21565b61335c8985888861393b565b604080517f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f549091906133e290868686866138e4565b6001600160a01b03161461342b576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6134358a866139c7565b6132f28a8a8a613004565b42841015613495576040805162461bcd60e51b815260206004820152601e60248201527f46696174546f6b656e56323a207065726d697420697320657870697265640000604482015290519081900360640190fd5b6001600160a01b0380881660008181526011602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e09093019052600f5461352b90868686866138e4565b6001600160a01b031614613574576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b61357f888888612d1e565b5050505050505050565b8151602092830120815191830191909120604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818601528082019390935260608301919091524660808301523060a0808401919091528151808403909101815260c09092019052805191012090565b6136078985888861393b565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061368d90868686866138e4565b6001600160a01b0316146136d6576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6136e08a866139c7565b6132f28a8a8a612d1e565b6136f78985888861393b565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600f5490919061377d90868686866138e4565b6001600160a01b0316146137c6576040805162461bcd60e51b815260206004820152601e6024820152600080516020613f2b833981519152604482015290519081900360640190fd5b6137d08a866139c7565b6132f28a8a8a612e0a565b6000818484111561386a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561382f578181015183820152602001613817565b50505050905090810190601f16801561385c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216600090815260106020908152604080832084845290915281205460ff1660028111156138a457fe5b146138e05760405162461bcd60e51b815260040180806020018281038252602e8152602001806143c6602e913960400191505060405180910390fd5b5050565b80516020808301919091206040805161190160f01b8185015260228101899052604280820193909352815180820390930183526062019052805191012060009061393081878787613ad2565b979650505050505050565b8142116139795760405162461bcd60e51b815260040180806020018281038252602b815260200180613f73602b913960400191505060405180910390fd5b8042106139b75760405162461bcd60e51b815260040180806020018281038252602581526020018061444b6025913960400191505060405180910390fd5b6139c18484613872565b50505050565b6001600160a01b0382166000818152601060209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b6060613a76826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613c569092919063ffffffff16565b80519091501561255857808060200190516020811015613a9557600080fd5b50516125585760405162461bcd60e51b815260040180806020018281038252602a815260200180614374602a913960400191505060405180910390fd5b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115613b335760405162461bcd60e51b815260040180806020018281038252602681526020018061434e6026913960400191505060405180910390fd5b8360ff16601b14158015613b4b57508360ff16601c14155b15613b875760405162461bcd60e51b8152600401808060200182810382526026815260200180613fea6026913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613be3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613c4b576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b90505b949350505050565b6060613c4e84846000856060613c6b85613dcd565b613cbc576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613cfb5780518252601f199092019160209182019101613cdc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613d5d576040519150601f19603f3d011682016040523d82523d6000602084013e613d62565b606091505b50915091508115613d76579150613c4e9050565b805115613d865780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561382f578181015183820152602001613817565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613c4e575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e4757805160ff1916838001178555613e74565b82800160010185558215613e74579182015b82811115613e74578251825591602001919060010190613e59565b50613e80929150613ef2565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ec55782800160ff19823516178555613e74565b82800160010185558215613e74579182015b82811115613e74578235825591602001919060010190613ed7565b5b80821115613e805760008155600101613ef356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737346696174546f6b656e56323a20696e76616c6964207369676e617475726500005061757361626c653a206e65772070617573657220697320746865207a65726f206164647265737346696174546f6b656e56323a20617574686f72697a6174696f6e206973206e6f74207965742076616c696446696174546f6b656e3a206275726e20616d6f756e74206e6f742067726561746572207468616e203046696174546f6b656e3a206d696e7420746f20746865207a65726f206164647265737345435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c75654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737346696174546f6b656e3a206e65772070617573657220697320746865207a65726f2061646472657373526573637561626c653a206e6577207265736375657220697320746865207a65726f206164647265737346696174546f6b656e3a206d696e7420616d6f756e74206e6f742067726561746572207468616e203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636546696174546f6b656e3a2063616c6c6572206973206e6f7420746865206d61737465724d696e746572426c61636b6c69737461626c653a2063616c6c6572206973206e6f742074686520626c61636b6c697374657246696174546f6b656e3a206275726e20616d6f756e7420657863656564732062616c616e636546696174546f6b656e3a2063616c6c6572206973206e6f742061206d696e74657246696174546f6b656e3a206e6577206d61737465724d696e74657220697320746865207a65726f2061646472657373526573637561626c653a2063616c6c6572206973206e6f7420746865207265736375657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657246696174546f6b656e3a206e657720626c61636b6c697374657220697320746865207a65726f206164647265737346696174546f6b656e3a20636f6e747261637420697320616c726561647920696e697469616c697a656446696174546f6b656e56323a20636f6e747261637420697320616c726561647920696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737346696174546f6b656e3a206d696e7420616d6f756e742065786365656473206d696e746572416c6c6f77616e63655061757361626c653a2063616c6c6572206973206e6f74207468652070617573657245435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c75655361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656446696174546f6b656e3a206e6577206f776e657220697320746865207a65726f206164647265737346696174546f6b656e56323a20617574686f72697a6174696f6e2069732075736564206f722063616e63656c6564426c61636b6c69737461626c653a206e657720626c61636b6c697374657220697320746865207a65726f2061646472657373426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c697374656446696174546f6b656e56323a20617574686f72697a6174696f6e206973206578706972656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c45ccffc7c1ada5ac028fb491cc3d9bfacc8ed86c9a0e613b6070090b9160ac064736f6c634300060c0033

Deployed Bytecode Sourcemap

56853:8829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15265:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20509:283;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20509:283:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43879:137;;;:::i;:::-;;;;;;;;;;;;;;;;19892:102;;;:::i;14529:151::-;;;;;;;;;;;;;;;;-1:-1:-1;14529:151:0;-1:-1:-1;;;;;14529:151:0;;:::i;:::-;;21596:556;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21596:556:0;;;;;;;;;;;;;;;;;:::i;37798:271::-;;;;;;;;;;;;;;;;-1:-1:-1;37798:271:0;-1:-1:-1;;;;;37798:271:0;;:::i;24115:248::-;;;;;;;;;;;;;;;;-1:-1:-1;24115:248:0;-1:-1:-1;;;;;24115:248:0;;:::i;55040:117::-;;;:::i;15317:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16048:1197;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16048:1197:0;;;;;;;;-1:-1:-1;16048:1197:0;;-1:-1:-1;;;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16048:1197:0;;;;;;;;-1:-1:-1;16048:1197:0;;-1:-1:-1;;;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16048:1197:0;;-1:-1:-1;;;16048:1197:0;;;;;-1:-1:-1;;16048:1197:0;;;;-1:-1:-1;;;;;16048:1197:0;;;;;;;;;;;;;;;;;;;;;;;:::i;15374:27::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15374:27:0;;;;;;;;;;;;;;43136:31;;;:::i;36938:85::-;;;:::i;57782:293::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57782:293:0;;;;;;;;:::i;12425:97::-;;;:::i;17786:863::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17786:863:0;;;;;;;;:::i;24660:552::-;;;;;;;;;;;;;;;;-1:-1:-1;24660:552:0;;:::i;44484:148::-;;;:::i;23592:344::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23592:344:0;;;;;;;;:::i;12584:261::-;;;;;;;;;;;;;;;;-1:-1:-1;12584:261:0;-1:-1:-1;;;;;12584:261:0;;:::i;63633:237::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;63633:237:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11700:26::-;;;:::i;20108:161::-;;;;;;;;;;;;;;;;-1:-1:-1;20108:161:0;-1:-1:-1;;;;;20108:161:0;;:::i;55465:109::-;;;;;;;;;;;;;;;;-1:-1:-1;55465:109:0;-1:-1:-1;;;;;55465:109:0;;:::i;12238:92::-;;;:::i;19047:120::-;;;;;;;;;;;;;;;;-1:-1:-1;19047:120:0;-1:-1:-1;;;;;19047:120:0;;:::i;9889:81::-;;;:::i;15290:20::-;;;:::i;11672:21::-;;;:::i;43593:138::-;;;:::i;58296:293::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58296:293:0;;;;;;;;:::i;22335:270::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22335:270:0;;;;;;;;:::i;25220:310::-;;;;;;;;;;;;;;;;-1:-1:-1;25220:310:0;-1:-1:-1;;;;;25220:310:0;;:::i;19280:106::-;;;;;;;;;;;;;;;;-1:-1:-1;19280:106:0;-1:-1:-1;;;;;19280:106:0;;:::i;14688:306::-;;;;;;;;;;;;;;;;-1:-1:-1;14688:306:0;-1:-1:-1;;;;;14688:306:0;;:::i;62655:589::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;62655:589:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37481:183::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37481:183:0;;;;;;;;;;;;;;;;;:::i;13071:26::-;;;:::i;61466:589::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;61466:589:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;44169:148::-;;;:::i;64310:319::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;64310:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;57250:311::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;57250:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;57250:311:0;;;;;;;;;;-1:-1:-1;57250:311:0;;-1:-1:-1;57250:311:0;-1:-1:-1;57250:311:0;:::i;44799:131::-;;;:::i;19646:182::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19646:182:0;;;;;;;;;;:::i;60305:561::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60305:561:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;59174:545::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59174:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;15345:22::-;;;:::i;45668:203::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45668:203:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;10502:276;;;;;;;;;;;;;;;;-1:-1:-1;10502:276:0;-1:-1:-1;;;;;10502:276:0;;:::i;14248:146::-;;;;;;;;;;;;;;;;-1:-1:-1;14248:146:0;-1:-1:-1;;;;;14248:146:0;;:::i;14017:117::-;;;;;;;;;;;;;;;;-1:-1:-1;14017:117:0;-1:-1:-1;;;;;14017:117:0;;:::i;15265:18::-;;;;;;;;;;;;;;;-1:-1:-1;;15265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20509:283::-;11886:6;;20704:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;20641:10:::1;13794:21;::::0;;;:11:::1;:21;::::0;;;;;::::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;20677:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20726:36:::3;20735:10;20747:7;20756:5;20726:8;:36::i;:::-;-1:-1:-1::0;20780:4:0::3;::::0;20509:283;-1:-1:-1;;;;20509:283:0:o;43879:137::-;43950:66;43879:137;:::o;19892:102::-;19974:12;;19892:102;:::o;14529:151::-;13489:11;;-1:-1:-1;;;;;13489:11:0;13475:10;:25;13453:119;;;;-1:-1:-1;;;13453:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14604:21:0;::::1;14628:5;14604:21:::0;;;:11:::1;:21;::::0;;;;;:29;;-1:-1:-1;;14604:29:0::1;::::0;;14649:23;::::1;::::0;14628:5;14649:23:::1;14529:151:::0;:::o;21596:556::-;11886:6;;21864:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;21776:10:::1;13794:21;::::0;;;:11:::1;:21;::::0;;;;;::::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;21812:4;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::3;;::::0;;;:11:::3;:21;::::0;;;;;21842:2;;13794:21:::3;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21917:13:0;::::4;;::::0;;;:7:::4;:13;::::0;;;;;;;21931:10:::4;21917:25:::0;;;;;;;;21908:34;::::4;;21886:124;;;;-1:-1:-1::0;;;21886:124:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22021:26;22031:4;22037:2;22041:5;22021:9;:26::i;:::-;-1:-1:-1::0;;;;;22086:13:0;::::4;;::::0;;;:7:::4;:13;::::0;;;;;;;22100:10:::4;22086:25:::0;;;;;;;;:36:::4;::::0;22116:5;22086:29:::4;:36::i;:::-;-1:-1:-1::0;;;;;22058:13:0;::::4;;::::0;;;:7:::4;:13;::::0;;;;;;;22072:10:::4;22058:25:::0;;;;;;;:64;22140:4:::4;::::0;-1:-1:-1;13891:1:0::3;::::2;11924::::1;21596:556:::0;;;;;:::o;37798:271::-;10262:6;;-1:-1:-1;;;;;10262:6:0;10248:10;:20;10240:65;;;;;-1:-1:-1;;;10240:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10240:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37893:24:0;::::1;37871:116;;;;-1:-1:-1::0;;;37871:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37998:8;:21:::0;;-1:-1:-1;;;;;;37998:21:0::1;-1:-1:-1::0;;;;;37998:21:0;::::1;::::0;;::::1;::::0;;;38035:26:::1;::::0;::::1;::::0;-1:-1:-1;;38035:26:0::1;37798:271:::0;:::o;24115:248::-;18823:12;;24215:4;;-1:-1:-1;;;;;18823:12:0;18809:10;:26;18787:117;;;;-1:-1:-1;;;18787:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24237:15:0;::::1;24255:5;24237:15:::0;;;:7:::1;:15;::::0;;;;;;;:23;;-1:-1:-1;;24237:23:0::1;::::0;;24271:13:::1;:21:::0;;;;;;:25;;;24312:21;::::1;::::0;24255:5;24312:21:::1;-1:-1:-1::0;24351:4:0::1;24115:248:::0;;;:::o;55040:117::-;55091:66;55040:117;:::o;15317:21::-;;;;;;:::o;16048:1197::-;16362:11;;-1:-1:-1;;;16362:11:0;;;;16361:12;16353:67;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16453:29:0;;16431:126;;;;-1:-1:-1;;;16431:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16590:23:0;;16568:114;;;;-1:-1:-1;;;16568:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16715:28:0;;16693:124;;;;-1:-1:-1;;;16693:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16850:22:0;;16828:112;;;;-1:-1:-1;;;16828:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16953:16;;;;:4;;:16;;;;;:::i;:::-;-1:-1:-1;16980:20:0;;;;:6;;:20;;;;;:::i;:::-;-1:-1:-1;17011:24:0;;;;:8;;:24;;;;;:::i;:::-;-1:-1:-1;17046:8:0;:24;;-1:-1:-1;;17046:24:0;;;;;;;17081:12;:30;;-1:-1:-1;;;;;;17081:30:0;;;-1:-1:-1;;;;;17081:30:0;;;;;;;;;;-1:-1:-1;17122:18:0;;;;;;;;;;17151:11;:28;;;;;;;;;;;;;;17190:18;17199:8;17190;:18::i;:::-;-1:-1:-1;;17219:11:0;:18;;-1:-1:-1;;;;17219:18:0;-1:-1:-1;;;17219:18:0;;;-1:-1:-1;;;;;;16048:1197:0:o;15374:27::-;;;-1:-1:-1;;;;;15374:27:0;;:::o;43136:31::-;;;;:::o;36938:85::-;37007:8;;-1:-1:-1;;;;;37007:8:0;36938:85;:::o;57782:293::-;11886:6;;57973:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;57910:10:::1;13794:21;::::0;;;:11:::1;:21;::::0;;;;;::::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;57946:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57995:50:::3;58014:10;58026:7;58035:9;57995:18;:50::i;12425:97::-:0;12081:6;;-1:-1:-1;;;;;12081:6:0;12067:10;:20;12059:67;;;;-1:-1:-1;;;12059:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12475:6:::1;:14:::0;;-1:-1:-1;;;;12475:14:0::1;::::0;;12505:9:::1;::::0;::::1;::::0;12484:5:::1;::::0;12505:9:::1;12425:97::o:0;17786:863::-;11886:6;;17975:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;17386:10:::1;17378:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;17370:65;;;;-1:-1:-1::0;;;17370:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17916:10:::2;13794:21;::::0;;;:11:::2;:21;::::0;;;;;::::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::3;;::::0;;;:11:::3;:21;::::0;;;;;17952:3;;13794:21:::3;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;18005:17:0;::::4;17997:65;;;;-1:-1:-1::0;;;17997:65:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18091:1;18081:7;:11;18073:65;;;;-1:-1:-1::0;;;18073:65:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18196:10;18151:28;18182:25:::0;;;:13:::4;:25;::::0;;;;;18240:31;;::::4;;18218:127;;;;-1:-1:-1::0;;;18218:127:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18373:12;::::0;:25:::4;::::0;18390:7;18373:16:::4;:25::i;:::-;18358:12;:40:::0;-1:-1:-1;;;;;18425:13:0;::::4;;::::0;;;:8:::4;:13;::::0;;;;;:26:::4;::::0;18443:7;18425:17:::4;:26::i;:::-;-1:-1:-1::0;;;;;18409:13:0;::::4;;::::0;;;:8:::4;:13;::::0;;;;:42;18490:33:::4;:20:::0;18515:7;18490:24:::4;:33::i;:::-;18476:10;18462:25;::::0;;;:13:::4;:25;::::0;;;;;;;;:61;;;;18539:30;;;;;;;-1:-1:-1;;;;;18539:30:0;::::4;::::0;::::4;::::0;;;;;;::::4;18585:34;::::0;;;;;;;-1:-1:-1;;;;;18585:34:0;::::4;::::0;18602:1:::4;::::0;18585:34:::4;::::0;;;;::::4;::::0;;::::4;-1:-1:-1::0;18637:4:0::4;::::0;17786:863;-1:-1:-1;;;;;17786:863:0:o;24660:552::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;17386:10:::1;17378:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;17370:65;;;;-1:-1:-1::0;;;17370:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24777:10:::2;13794:21;::::0;;;:11:::2;:21;::::0;;;;;::::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24832:10:::3;24805:15;24823:20:::0;;;:8:::3;:20;::::0;;;;;24862:11;24854:65:::3;;;;-1:-1:-1::0;;;24854:65:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24949:7;24938;:18;;24930:69;;;;-1:-1:-1::0;;;24930:69:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25027:12;::::0;:25:::3;::::0;25044:7;25027:16:::3;:25::i;:::-;25012:12;:40:::0;25086:20:::3;:7:::0;25098;25086:11:::3;:20::i;:::-;25072:10;25063:20;::::0;;;:8:::3;:20;::::0;;;;;;;;:43;;;;25122:25;;;;;;;25072:10;;25122:25:::3;::::0;;;;;;;::::3;25163:41;::::0;;;;;;;25192:1:::3;::::0;25172:10:::3;::::0;25163:41:::3;::::0;;;;::::3;::::0;;::::3;13891:1;17446::::2;24660:552:::0;:::o;44484:148::-;44566:66;44484:148;:::o;23592:344::-;11886:6;;23747:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;18823:12:::1;::::0;-1:-1:-1;;;;;18823:12:0::1;18809:10;:26;18787:117;;;;-1:-1:-1::0;;;18787:117:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;23769:15:0;::::2;;::::0;;;:7:::2;:15;::::0;;;;;;;:22;;-1:-1:-1;;23769:22:0::2;23787:4;23769:22;::::0;;23802:13:::2;:21:::0;;;;;;:43;;;23861:45;;;;;;;::::2;::::0;;;;;;;;::::2;-1:-1:-1::0;23924:4:0::2;23592:344:::0;;;;:::o;12584:261::-;10262:6;;-1:-1:-1;;;;;10262:6:0;10248:10;:20;10240:65;;;;;-1:-1:-1;;;10240:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10240:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12678:24:0;::::1;12656:114;;;;-1:-1:-1::0;;;12656:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12781:6;:19:::0;;-1:-1:-1;;;;;;12781:19:0::1;-1:-1:-1::0;;;;;12781:19:0;;::::1;::::0;;;::::1;::::0;;;;12816:21:::1;::::0;12830:6;::::1;::::0;12816:21:::1;::::0;-1:-1:-1;;12816:21:0::1;12584:261:::0;:::o;63633:237::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;63814:48:::1;63835:10;63847:5;63854:1;63857;63860;63814:20;:48::i;:::-;63633:237:::0;;;;;:::o;11700:26::-;;;-1:-1:-1;;;11700:26:0;;;;;:::o;20108:161::-;-1:-1:-1;;;;;20244:17:0;20212:7;20244:17;;;:8;:17;;;;;;;20108:161::o;55465:109::-;-1:-1:-1;;;;;55546:20:0;55519:7;55546:20;;;:13;:20;;;;;;;55465:109::o;12238:92::-;12081:6;;-1:-1:-1;;;;;12081:6:0;12067:10;:20;12059:67;;;;-1:-1:-1;;;12059:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12295:4:::1;12286:13:::0;;-1:-1:-1;;;;12286:13:0::1;-1:-1:-1::0;;;12286:13:0::1;::::0;;12315:7:::1;::::0;::::1;::::0;12286:13;;12315:7:::1;12238:92::o:0;19047:120::-;-1:-1:-1;;;;;19138:21:0;19111:7;19138:21;;;:13;:21;;;;;;;19047:120::o;9889:81::-;9929:7;9956:6;-1:-1:-1;;;;;9956:6:0;9889:81;:::o;15290:20::-;;;;;;;;;;;;;;;-1:-1:-1;;15290:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11672:21;;;-1:-1:-1;;;;;11672:21:0;;:::o;43593:138::-;43665:66;43593:138;:::o;58296:293::-;11886:6;;58487:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;58424:10:::1;13794:21;::::0;;;:11:::1;:21;::::0;;;;;::::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;58460:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58509:50:::3;58528:10;58540:7;58549:9;58509:18;:50::i;22335:270::-:0;11886:6;;22521:4;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;22463:10:::1;13794:21;::::0;;;:11:::1;:21;::::0;;;;;::::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;22499:2;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22543:32:::3;22553:10;22565:2;22569:5;22543:9;:32::i;25220:310::-:0;10262:6;;-1:-1:-1;;;;;10262:6:0;10248:10;:20;10240:65;;;;;-1:-1:-1;;;10240:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10240:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25326:30:0;::::1;25304:127;;;;-1:-1:-1::0;;;25304:127:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25442:12;:31:::0;;-1:-1:-1;;;;;;25442:31:0::1;-1:-1:-1::0;;;;;25442:31:0;;::::1;::::0;;;::::1;::::0;;;;25489:33:::1;::::0;25509:12;::::1;::::0;25489:33:::1;::::0;-1:-1:-1;;25489:33:0::1;25220:310:::0;:::o;19280:106::-;-1:-1:-1;;;;;19362:16:0;19338:4;19362:16;;;:7;:16;;;;;;;;;19280:106::o;14688:306::-;10262:6;;-1:-1:-1;;;;;10262:6:0;10248:10;:20;10240:65;;;;;-1:-1:-1;;;10240:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10240:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;14792:29:0;::::1;14770:129;;;;-1:-1:-1::0;;;14770:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14910:11;:29:::0;;-1:-1:-1;;;;;;14910:29:0::1;-1:-1:-1::0;;;;;14910:29:0;;::::1;::::0;;;::::1;::::0;;;;14955:31:::1;::::0;14974:11;::::1;::::0;14955:31:::1;::::0;-1:-1:-1;;14955:31:0::1;14688:306:::0;:::o;62655:589::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13794:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;62963:5;;13794:21:::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;62985:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63005:231:::3;63055:5;63075:7;63097:9;63121:10;63146:11;63172:5;63192:1;63208;63224;63005:35;:231::i;:::-;13891:1:::2;11924::::1;62655:589:::0;;;;;;;;;:::o;37481:183::-;37177:8;;-1:-1:-1;;;;;37177:8:0;37163:10;:22;37155:71;;;;-1:-1:-1;;;37155:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37618:38:::1;-1:-1:-1::0;;;;;37618:26:0;::::1;37645:2:::0;37649:6;37618:26:::1;:38::i;:::-;37481:183:::0;;;:::o;13071:26::-;;;-1:-1:-1;;;;;13071:26:0;;:::o;61466:589::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13794:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;61774:5;;13794:21:::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;61796:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61816:231:::3;61866:5;61886:7;61908:9;61932:10;61957:11;61983:5;62003:1;62019;62035;61816:35;:231::i;44169:148::-:0;44251:66;44169:148;:::o;64310:319::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13794:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;64530:5;;13794:21:::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;64552:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64572:49:::3;64580:5;64587:7;64596:5;64603:8;64613:1;64616;64619;64572:7;:49::i;:::-;13891:1:::2;11924::::1;64310:319:::0;;;;;;;:::o;57250:311::-;57340:14;;;;57339:15;57317:109;;;;-1:-1:-1;;;57317:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57437:14;:4;57444:7;;57437:14;:::i;:::-;;57481:40;57508:7;;57481:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57481:40:0;;;;;;;;;;;;-1:-1:-1;;;57481:40:0;;;;;-1:-1:-1;57481:26:0;;-1:-1:-1;57481:40:0:i;:::-;57462:16;:59;-1:-1:-1;;57532:14:0;:21;;-1:-1:-1;;57532:21:0;57549:4;57532:21;;;57250:311::o;44799:131::-;44864:66;44799:131;:::o;19646:182::-;-1:-1:-1;;;;;19797:14:0;;;19765:7;19797:14;;;:7;:14;;;;;;;;:23;;;;;;;;;;;;;19646:182::o;60305:561::-;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13794:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;60599:5;;13794:21:::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;60621:7;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60641:217:::3;60681:5;60701:7;60723:5;60743:10;60768:11;60794:5;60814:1;60830;60846;60641:25;:217::i;59174:545::-:0;11886:6;;-1:-1:-1;;;11886:6:0;;;;11885:7;11877:36;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;-1:-1:-1;;;11877:36:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13794:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;59463:4;;13794:21:::1;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;13794:21:0;::::2;;::::0;;;:11:::2;:21;::::0;;;;;59484:2;;13794:21:::2;;13793:22;13771:109;;;;-1:-1:-1::0;;;13771:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59499:212:::3;59540:4;59559:2;59576:5;59596:10;59621:11;59647:5;59667:1;59683;59699;59499:26;:212::i;15345:22::-:0;;;;;;;;;;;;;;;-1:-1:-1;;15345:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45668:203;-1:-1:-1;;;;;45824:32:0;;;;45781:18;45824:32;;;:20;:32;;;;;;;;:39;;;;;;;;;;;45668:203::o;10502:276::-;10262:6;;-1:-1:-1;;;;;10262:6:0;10248:10;:20;10240:65;;;;;-1:-1:-1;;;10240:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10240:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10599:22:0;::::1;10577:110;;;;-1:-1:-1::0;;;10577:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10724:6;::::0;10703:38:::1;::::0;;-1:-1:-1;;;;;10724:6:0;;::::1;10703:38:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;10752:18;10761:8;10752;:18::i;:::-;10502:276:::0;:::o;14248:146::-;13489:11;;-1:-1:-1;;;;;13489:11:0;13475:10;:25;13453:119;;;;-1:-1:-1;;;13453:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14321:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;:28;;-1:-1:-1;;14321:28:0::1;14345:4;14321:28;::::0;;14365:21;::::1;::::0;14321;14365::::1;14248:146:::0;:::o;14017:117::-;-1:-1:-1;;;;;14105:21:0;14081:4;14105:21;;;:11;:21;;;;;;;;;14017:117::o;20998:372::-;-1:-1:-1;;;;;21134:19:0;;21126:68;;;;-1:-1:-1;;;21126:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21213:21:0;;21205:68;;;;-1:-1:-1;;;21205:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21284:14:0;;;;;;;:7;:14;;;;;;;;:23;;;;;;;;;;;;;:31;;;21331;;;;;;;;;;;;;;;;;20998:372;;;:::o;22797:541::-;-1:-1:-1;;;;;22928:18:0;;22920:68;;;;-1:-1:-1;;;22920:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23007:16:0;;22999:64;;;;-1:-1:-1;;;22999:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23105:14:0;;;;;;:8;:14;;;;;;23096:23;;;23074:111;;;;-1:-1:-1;;;23074:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23215:14:0;;;;;;:8;:14;;;;;;:25;;23234:5;23215:18;:25::i;:::-;-1:-1:-1;;;;;23198:14:0;;;;;;;:8;:14;;;;;;:42;;;;23266:12;;;;;;;:23;;23283:5;23266:16;:23::i;:::-;-1:-1:-1;;;;;23251:12:0;;;;;;;:8;:12;;;;;;;;;:38;;;;23305:25;;;;;;;23251:12;;23305:25;;;;;;;;;;;;;22797:541;;;:::o;1331:136::-;1389:7;1416:43;1420:1;1423;1416:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1409:50;1331:136;-1:-1:-1;;;1331:136:0:o;10034:81::-;10090:6;:17;;-1:-1:-1;;;;;;10090:17:0;-1:-1:-1;;;;;10090:17:0;;;;;;;;;;10034:81::o;64870:214::-;-1:-1:-1;;;;;65037:14:0;;;;;;;:7;:14;;;;;;;;:23;;;;;;;;;;65012:64;;65021:5;;65028:7;;65037:38;;65065:9;65037:27;:38::i;:::-;65012:8;:64::i;867:181::-;925:7;957:5;;;981:6;;;;973:46;;;;;-1:-1:-1;;;973:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52108:655;52276:46;52304:10;52316:5;52276:27;:46::i;:::-;52355:110;;;44864:66;52355:110;;;;-1:-1:-1;;;;;52355:110:0;;;;;;;;52335:17;52355:110;;;;;;;;;;;;;;;;;;;;;;;52513:16;;52355:110;;;52498:47;;52531:1;52534;52537;52355:110;52498:14;:47::i;:::-;-1:-1:-1;;;;;52498:61:0;;52476:141;;;;;-1:-1:-1;;;52476:141:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52476:141:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52630:32:0;;;;;;:20;:32;;;;;;;;:39;;;;;;;;;:69;;-1:-1:-1;;52630:69:0;52672:27;52630:69;;;52715:40;52630:39;;:32;52715:40;;;52108:655;;;;;;:::o;65325:354::-;65467:204;65490:5;65510:7;65532:128;65578:9;65532:128;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;65532:14:0;;;;;;;:7;:14;;;;;;;;:23;;;;;;;;;;;:128;:27;:128::i;49483:870::-;49774:65;49801:5;49808;49815:10;49827:11;49774:26;:65::i;:::-;49872:219;;;44566:66;49872:219;;;;-1:-1:-1;;;;;49872:219:0;;;;;;;;;;;;49852:17;49872:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50139:16;;49872:219;;;50124:47;;50157:1;50160;50163;49872:219;50124:14;:47::i;:::-;-1:-1:-1;;;;;50124:56:0;;50102:136;;;;;-1:-1:-1;;;50102:136:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;50102:136:0;;;;;;;;;;;;;;;50251:38;50276:5;50283;50251:24;:38::i;:::-;50300:45;50319:5;50326:7;50335:9;50300:18;:45::i;:::-;49483:870;;;;;;;;;;:::o;32873:248::-;33044:58;;;-1:-1:-1;;;;;33044:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33044:58:0;-1:-1:-1;;;33044:58:0;;;32990:123;;33024:5;;32990:19;:123::i;47946:870::-;48237:65;48264:5;48271;48278:10;48290:11;48237:26;:65::i;:::-;48335:219;;;44251:66;48335:219;;;;-1:-1:-1;;;;;48335:219:0;;;;;;;;;;;;48315:17;48335:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48602:16;;48335:219;;;48587:47;;48620:1;48623;48626;48335:219;48587:14;:47::i;:::-;-1:-1:-1;;;;;48587:56:0;;48565:136;;;;;-1:-1:-1;;;48565:136:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;48565:136:0;;;;;;;;;;;;;;;48714:38;48739:5;48746;48714:24;:38::i;:::-;48763:45;48782:5;48789:7;48798:9;48763:18;:45::i;56017:666::-;56240:3;56228:8;:15;;56220:58;;;;;-1:-1:-1;;;56220:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56428:20:0;;;56336:15;56428:20;;;:13;:20;;;;;;;;;:22;;;;;;;;56311:173;;55091:66;56311:173;;;;;;;;;;;;;;;;56291:17;56311:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56532:16;;56517:47;;56550:1;56553;56556;56311:173;56517:14;:47::i;:::-;-1:-1:-1;;;;;56517:56:0;;56495:136;;;;;-1:-1:-1;;;56495:136:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;56495:136:0;;;;;;;;;;;;;;;56644:31;56653:5;56660:7;56669:5;56644:8;:31::i;:::-;56017:666;;;;;;;;:::o;41386:708::-;41916:22;;;;;;;41961:25;;;;;;;;;41672:399;;;41705:66;41672:399;;;;;;;;;;;;;;;;;;41594:9;41672:399;;;;42047:4;41672:399;;;;;;;;;;;;;;;;;;;;;;;;41644:442;;;;;;41386:708::o;50954:827::-;51231:65;51258:5;51265;51272:10;51284:11;51231:26;:65::i;:::-;51329:204;;;43950:66;51329:204;;;;-1:-1:-1;;;;;51329:204:0;;;;;;;;;;;;51309:17;51329:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51581:16;;51329:204;;;51566:47;;51599:1;51602;51605;51329:204;51566:14;:47::i;:::-;-1:-1:-1;;;;;51566:56:0;;51544:136;;;;;-1:-1:-1;;;51544:136:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;51544:136:0;;;;;;;;;;;;;;;51693:38;51718:5;51725;51693:24;:38::i;:::-;51742:31;51751:5;51758:7;51767:5;51742:8;:31::i;46469:809::-;46741:64;46768:4;46774:5;46781:10;46793:11;46741:26;:64::i;:::-;46838:199;;;43665:66;46838:199;;;;-1:-1:-1;;;;;46838:199:0;;;;;;;;;;;;46818:17;46838:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47085:16;;46838:199;;;47070:47;;47103:1;47106;47109;46838:199;47070:14;:47::i;:::-;-1:-1:-1;;;;;47070:55:0;;47048:135;;;;;-1:-1:-1;;;47048:135:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;47048:135:0;;;;;;;;;;;;;;;47196:37;47221:4;47227:5;47196:24;:37::i;:::-;47244:26;47254:4;47260:2;47264:5;47244:9;:26::i;1770:226::-;1890:7;1926:12;1918:6;;;;1910:29;;;;-1:-1:-1;;;1910:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1962:5:0;;;1770:226::o;52949:308::-;-1:-1:-1;;;;;53090:32:0;;53150:25;53090:32;;;:20;:32;;;;;;;;:39;;;;;;;;;;;:85;;;;;;;;;53068:181;;;;-1:-1:-1;;;53068:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52949:308;;:::o;42490:449::-;42827:26;;;;;;;;;;42729:139;;;-1:-1:-1;;;42729:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42705:174;;;;;42668:7;;42897:34;42705:174;42923:1;42926;42929;42897:17;:34::i;:::-;42890:41;42490:449;-1:-1:-1;;;;;;;42490:449:0:o;53592:431::-;53799:10;53793:3;:16;53771:109;;;;-1:-1:-1;;;53771:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:11;53899:3;:17;53891:67;;;;-1:-1:-1;;;53891:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53969:46;53997:10;54009:5;53969:27;:46::i;:::-;53592:431;;;;:::o;54201:227::-;-1:-1:-1;;;;;54303:32:0;;;;;;:20;:32;;;;;;;;:39;;;;;;;;;:65;;-1:-1:-1;;54303:65:0;54345:23;54303:65;;;54384:36;54303:39;;:32;54384:36;;;54201:227;;:::o;35749:860::-;36173:23;36199:106;36241:4;36199:106;;;;;;;;;;;;;;;;;36207:5;-1:-1:-1;;;;;36199:27:0;;;:106;;;;;:::i;:::-;36320:17;;36173:132;;-1:-1:-1;36320:21:0;36316:286;;36493:10;36482:30;;;;;;;;;;;;;;;-1:-1:-1;36482:30:0;36456:134;;;;-1:-1:-1;;;36456:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39438:1587;39568:7;40515:66;40489:92;;40471:197;;;40608:48;;-1:-1:-1;;;40608:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40471:197;40684:1;:7;;40689:2;40684:7;;:18;;;;;40695:1;:7;;40700:2;40695:7;;40684:18;40680:99;;;40719:48;;-1:-1:-1;;;40719:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40680:99;40876:14;40893:26;40903:6;40911:1;40914;40917;40893:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40893:26:0;;-1:-1:-1;;40893:26:0;;;-1:-1:-1;;;;;;;40938:20:0;;40930:61;;;;;-1:-1:-1;;;40930:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41011:6;-1:-1:-1;39438:1587:0;;;;;;;:::o;29553:230::-;29690:12;29722:53;29745:6;29753:4;29759:1;29762:12;31347;31380:18;31391:6;31380:10;:18::i;:::-;31372:60;;;;;-1:-1:-1;;;31372:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31506:12;31520:23;31547:6;-1:-1:-1;;;;;31547:11:0;31580:8;31600:4;31547:58;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31547:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31505:100;;;;31620:7;31616:595;;;31651:10;-1:-1:-1;31644:17:0;;-1:-1:-1;31644:17:0;31616:595;31765:17;;:21;31761:439;;32028:10;32022:17;32089:15;32076:10;32072:2;32068:19;32061:44;31976:148;32164:20;;-1:-1:-1;;;32164:20:0;;;;;;;;;;;;;;;;;32171:12;;32164:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26301:657;26361:4;26858:20;;26688:66;26907:23;;;;;;:42;;-1:-1:-1;;26934:15:0;;;26899:51;-1:-1:-1;;26301:657:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://c45ccffc7c1ada5ac028fb491cc3d9bfacc8ed86c9a0e613b6070090b9160ac0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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