ETH Price: $3,310.31 (+1.18%)
Gas: 2 Gwei

Token

Credmark (CMK)
 

Overview

Max Total Supply

100,000,000 CMK

Holders

304 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,818.628764226466049382 CMK

Value
$0.00
0x0799442CE0f90F8837fdeEce82Cd2735625B4bf9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Credmark provides these services on the retail users’ behalf by bootstrapping the platform with risk management tools and analysis.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CMKToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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




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




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

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

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

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




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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}




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

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

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

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

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

}














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

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

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



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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








/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}














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

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

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


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}



/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}













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


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}







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

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

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

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

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

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

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









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

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

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








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

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;
    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

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

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





/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // 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.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

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

        return signer;
    }

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

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



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

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

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

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

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

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

        bytes32 hash = _hashTypedDataV4(structHash);

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

        _approve(owner, spender, value);
    }

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

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

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


contract CMKToken is ERC20, ERC20Burnable, ERC20Snapshot, AccessControl, Pausable, ERC20Permit {
    bytes32 public constant SNAPSHOT_ROLE = keccak256("SNAPSHOT_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    constructor() ERC20("Credmark", "CMK") ERC20Permit("Credmark") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(SNAPSHOT_ROLE, msg.sender);
        _setupRole(PAUSER_ROLE, msg.sender);
        _mint(msg.sender, 100000000 * 10 ** decimals());
    }

    function snapshot() public {
        require(hasRole(SNAPSHOT_ROLE, msg.sender));
        _snapshot();
    }

    function pause() public {
        require(hasRole(PAUSER_ROLE, msg.sender));
        _pause();
    }

    function unpause() public {
        require(hasRole(PAUSER_ROLE, msg.sender));
        _unpause();
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","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":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SNAPSHOT_ROLE","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600881526020017f437265646d61726b000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f437265646d61726b0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434d4b000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c9291906200093e565b508060049080519060200190620001459291906200093e565b5050506000600a60006101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001cb818484620002a060201b60201c565b60808181525050806101008181525050505050505050620001f66000801b33620002dc60201b60201c565b620002287f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f33620002dc60201b60201c565b6200025a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620002dc60201b60201c565b6200029a336200026f620002f260201b60201c565b600a6200027d919062000c2c565b6305f5e1006200028e919062000d69565b620002fb60201b60201c565b62000efb565b60008383834630604051602001620002bd95949392919062000aa5565b6040516020818303038152906040528051906020012090509392505050565b620002ee82826200046060201b60201c565b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200036e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003659062000b24565b60405180910390fd5b62000382600083836200055260201b60201c565b806002600082825462000396919062000b74565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003ed919062000b74565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000454919062000b46565b60405180910390a35050565b620004728282620005c260201b60201c565b6200054e5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004f36200062d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620005626200063560201b60201c565b15620005a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059c9062000b02565b60405180910390fd5b620005bd8383836200064c60201b620010e31760201c565b505050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6000600a60009054906101000a900460ff16905090565b620006648383836200074760201b6200119d1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620006c157620006ab826200074c60201b60201c565b620006bb620007af60201b60201c565b62000742565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200071e5762000708836200074c60201b60201c565b62000718620007af60201b60201c565b62000741565b6200072f836200074c60201b60201c565b62000740826200074c60201b60201c565b5b5b505050565b505050565b620007ac600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620007a083620007d360201b60201c565b6200081b60201b60201c565b50565b620007d16006620007c5620008ae60201b60201c565b6200081b60201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620008346008620008b860201b620011a21760201c565b9050806200084b84600001620008c660201b60201c565b1015620008a95782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b600081600001549050919050565b60008082805490501415620008df576000905062000939565b8160018380549050620008f3919062000dca565b815481106200092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b8280546200094c9062000e5a565b90600052602060002090601f016020900481019282620009705760008555620009bc565b82601f106200098b57805160ff1916838001178555620009bc565b82800160010185558215620009bc579182015b82811115620009bb5782518255916020019190600101906200099e565b5b509050620009cb9190620009cf565b5090565b5b80821115620009ea576000816000905550600101620009d0565b5090565b620009f98162000e05565b82525050565b62000a0a8162000e19565b82525050565b600062000a1f60108362000b63565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600062000a61601f8362000b63565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000a9f8162000e43565b82525050565b600060a08201905062000abc6000830188620009ff565b62000acb6020830187620009ff565b62000ada6040830186620009ff565b62000ae9606083018562000a94565b62000af86080830184620009ee565b9695505050505050565b6000602082019050818103600083015262000b1d8162000a10565b9050919050565b6000602082019050818103600083015262000b3f8162000a52565b9050919050565b600060208201905062000b5d600083018462000a94565b92915050565b600082825260208201905092915050565b600062000b818262000e43565b915062000b8e8362000e43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bc65762000bc562000e90565b5b828201905092915050565b6000808291508390505b600185111562000c235780860481111562000bfb5762000bfa62000e90565b5b600185161562000c0b5780820291505b808102905062000c1b8562000eee565b945062000bdb565b94509492505050565b600062000c398262000e43565b915062000c468362000e4d565b925062000c757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c7d565b905092915050565b60008262000c8f576001905062000d62565b8162000c9f576000905062000d62565b816001811462000cb8576002811462000cc35762000cf9565b600191505062000d62565b60ff84111562000cd85762000cd762000e90565b5b8360020a91508482111562000cf25762000cf162000e90565b5b5062000d62565b5060208310610133831016604e8410600b841016171562000d335782820a90508381111562000d2d5762000d2c62000e90565b5b62000d62565b62000d42848484600162000bd1565b9250905081840481111562000d5c5762000d5b62000e90565b5b81810290505b9392505050565b600062000d768262000e43565b915062000d838362000e43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dbf5762000dbe62000e90565b5b828202905092915050565b600062000dd78262000e43565b915062000de48362000e43565b92508282101562000dfa5762000df962000e90565b5b828203905092915050565b600062000e128262000e23565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000e7357607f821691505b6020821081141562000e8a5762000e8962000ebf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b60805160a05160c05160e0516101005161012051613acd62000f4b6000396000610f14015260006118410152600061188301526000611862015260006117ee015260006118160152613acd6000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80637028e2cd1161010f578063981b24d0116100a2578063d505accf11610071578063d505accf146105a8578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063981b24d0146104fa578063a217fddf1461052a578063a457c2d714610548578063a9059cbb14610578576101e5565b80638456cb59116100de5780638456cb591461049857806391d14854146104a257806395d89b41146104d25780639711715a146104f0576101e5565b80637028e2cd146103fe57806370a082311461041c57806379cc67901461044c5780637ecebe0014610468576101e5565b8063313ce567116101875780633f4ba83a116101565780633f4ba83a1461038a57806342966c68146103945780634ee2cd7e146103b05780635c975abb146103e0576101e5565b8063313ce567146103025780633644e5151461032057806336568abe1461033e578063395093511461035a576101e5565b806318160ddd116101c357806318160ddd1461026857806323b872dd14610286578063248a9ca3146102b65780632f2ff15d146102e6576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff9190612936565b61062e565b60405161021191906132ce565b60405180910390f35b6102226106a8565b60405161022f91906133fd565b60405180910390f35b610252600480360381019061024d9190612895565b61073a565b60405161025f91906132ce565b60405180910390f35b610270610758565b60405161027d91906136bf565b60405180910390f35b6102a0600480360381019061029b91906127a8565b610762565b6040516102ad91906132ce565b60405180910390f35b6102d060048036038101906102cb91906128d1565b610863565b6040516102dd91906132e9565b60405180910390f35b61030060048036038101906102fb91906128fa565b610883565b005b61030a6108ac565b60405161031791906136da565b60405180910390f35b6103286108b5565b60405161033591906132e9565b60405180910390f35b610358600480360381019061035391906128fa565b6108c4565b005b610374600480360381019061036f9190612895565b610947565b60405161038191906132ce565b60405180910390f35b6103926109f3565b005b6103ae60048036038101906103a9919061295f565b610a30565b005b6103ca60048036038101906103c59190612895565b610a44565b6040516103d791906136bf565b60405180910390f35b6103e8610ab4565b6040516103f591906132ce565b60405180910390f35b610406610acb565b60405161041391906132e9565b60405180910390f35b61043660048036038101906104319190612743565b610aef565b60405161044391906136bf565b60405180910390f35b61046660048036038101906104619190612895565b610b37565b005b610482600480360381019061047d9190612743565b610bbb565b60405161048f91906136bf565b60405180910390f35b6104a0610c0b565b005b6104bc60048036038101906104b791906128fa565b610c48565b6040516104c991906132ce565b60405180910390f35b6104da610cb3565b6040516104e791906133fd565b60405180910390f35b6104f8610d45565b005b610514600480360381019061050f919061295f565b610d83565b60405161052191906136bf565b60405180910390f35b610532610db4565b60405161053f91906132e9565b60405180910390f35b610562600480360381019061055d9190612895565b610dbb565b60405161056f91906132ce565b60405180910390f35b610592600480360381019061058d9190612895565b610eaf565b60405161059f91906132ce565b60405180910390f35b6105c260048036038101906105bd91906127f7565b610ecd565b005b6105de60048036038101906105d991906128fa565b61100f565b005b6105fa60048036038101906105f5919061276c565b611038565b60405161060791906136bf565b60405180910390f35b6106186110bf565b60405161062591906132e9565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a0826111b0565b5b9050919050565b6060600380546106b790613919565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390613919565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600061074e61074761121a565b8484611222565b6001905092915050565b6000600254905090565b600061076f8484846113ed565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107ba61121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561083a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610831906135bf565b60405180910390fd5b6108578561084661121a565b858461085291906137fd565b611222565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b61088c82610863565b61089d8161089861121a565b61166c565b6108a78383611709565b505050565b60006012905090565b60006108bf6117ea565b905090565b6108cc61121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109309061369f565b60405180910390fd5b61094382826118ad565b5050565b60006109e961095461121a565b84846001600061096261121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109e4919061371c565b611222565b6001905092915050565b610a1d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610c48565b610a2657600080fd5b610a2e61198f565b565b610a41610a3b61121a565b82611a31565b50565b6000806000610a9184600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c05565b9150915081610aa857610aa385610aef565b610aaa565b805b9250505092915050565b6000600a60009054906101000a900460ff16905090565b7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b4a83610b4561121a565b611038565b905081811015610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906135df565b60405180910390fd5b610bac83610b9b61121a565b8484610ba791906137fd565b611222565b610bb68383611a31565b505050565b6000610c04600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206111a2565b9050919050565b610c357f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610c48565b610c3e57600080fd5b610c46611d23565b565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610cc290613919565b80601f0160208091040260200160405190810160405280929190818152602001828054610cee90613919565b8015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b5050505050905090565b610d6f7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f33610c48565b610d7857600080fd5b610d80611dc6565b50565b6000806000610d93846006611c05565b9150915081610da957610da4610758565b610dab565b805b92505050919050565b6000801b81565b60008060016000610dca61121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e9061367f565b60405180910390fd5b610ea4610e9261121a565b858584610e9f91906137fd565b611222565b600191505092915050565b6000610ec3610ebc61121a565b84846113ed565b6001905092915050565b83421115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906134ff565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000888888610f3f8c611e1e565b89604051602001610f5596959493929190613304565b6040516020818303038152906040528051906020012090506000610f7882611e7c565b90506000610f8882878787611e96565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef9061359f565b60405180910390fd5b6110038a8a8a611222565b50505050505050505050565b61101882610863565b6110298161102461121a565b61166c565b61103383836118ad565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6110ee83838361119d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111395761112c82612021565b611134612074565b611198565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111845761117783612021565b61117f612074565b611197565b61118d83612021565b61119682612021565b5b5b505050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112899061363f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906134df565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e091906136bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114549061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061347f565b60405180910390fd5b6114d8838383612088565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061351f565b60405180910390fd5b818161156a91906137fd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115fa919061371c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165e91906136bf565b60405180910390a350505050565b6116768282610c48565b6117055761169b8173ffffffffffffffffffffffffffffffffffffffff1660146120e0565b6116a98360001c60206120e0565b6040516020016116ba929190613279565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc91906133fd565b60405180910390fd5b5050565b6117138282610c48565b6117e65760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061178b61121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561183c577f000000000000000000000000000000000000000000000000000000000000000090506118aa565b6118a77f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006123da565b90505b90565b6118b78282610c48565b1561198b5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193061121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611997610ab4565b6119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061349f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a1a61121a565b604051611a2791906132b3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a98906135ff565b60405180910390fd5b611aad82600083612088565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906134bf565b60405180910390fd5b8181611b3f91906137fd565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b9391906137fd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf891906136bf565b60405180910390a3505050565b60008060008411611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c429061365f565b60405180910390fd5b611c5560086111a2565b841115611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e9061343f565b60405180910390fd5b6000611caf858560000161241490919063ffffffff16565b90508360000180549050811415611ccd576000809250925050611d1c565b6001846001018281548110611d0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611d2b610ab4565b15611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d629061355f565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611daf61121a565b604051611dbc91906132b3565b60405180910390a1565b6000611dd2600861253a565b6000611dde60086111a2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611e0f91906136bf565b60405180910390a18091505090565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e6b816111a2565b9150611e768161253a565b50919050565b6000611e8f611e896117ea565b83612550565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef59061353f565b60405180910390fd5b601b8460ff161480611f135750601c8460ff16145b611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061357f565b60405180910390fd5b600060018686868660405160008152602001604052604051611f7794939291906133b8565b6020604051602081039080840390855afa158015611f99573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c9061341f565b60405180910390fd5b80915050949350505050565b612071600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061206c83610aef565b612583565b50565b6120866006612081610758565b612583565b565b612090610ab4565b156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c79061355f565b60405180910390fd5b6120db8383836110e3565b505050565b6060600060028360026120f391906137a3565b6120fd919061371c565b67ffffffffffffffff81111561213c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561216e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106121cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612256577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261229691906137a3565b6122a0919061371c565b90505b600181111561238c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612308577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612345577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612385906138ef565b90506122a3565b50600084146123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c79061345f565b60405180910390fd5b8091505092915050565b600083838346306040516020016123f5959493929190613365565b6040516020818303038152906040528051906020012090509392505050565b6000808380549050141561242b5760009050612534565b600080848054905090505b808210156124b557600061244a8383612600565b905084868281548110612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154111561249f578091506124af565b6001816124ac919061371c565b92505b50612436565b600082118015612513575083856001846124cf91906137fd565b81548110612506577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561252e5760018261252591906137fd565b92505050612534565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612565929190613242565b60405160208183030381529060405280519060200120905092915050565b600061258f60086111a2565b90508061259e84600001612667565b10156125fb5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600280836126109190613955565b60028561261d9190613955565b612627919061371c565b6126319190613772565b60028361263e9190613772565b60028561264b9190613772565b612655919061371c565b61265f919061371c565b905092915050565b6000808280549050141561267e57600090506126d5565b816001838054905061269091906137fd565b815481106126c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506126e981613a24565b92915050565b6000813590506126fe81613a3b565b92915050565b60008135905061271381613a52565b92915050565b60008135905061272881613a69565b92915050565b60008135905061273d81613a80565b92915050565b60006020828403121561275557600080fd5b6000612763848285016126da565b91505092915050565b6000806040838503121561277f57600080fd5b600061278d858286016126da565b925050602061279e858286016126da565b9150509250929050565b6000806000606084860312156127bd57600080fd5b60006127cb868287016126da565b93505060206127dc868287016126da565b92505060406127ed86828701612719565b9150509250925092565b600080600080600080600060e0888a03121561281257600080fd5b60006128208a828b016126da565b97505060206128318a828b016126da565b96505060406128428a828b01612719565b95505060606128538a828b01612719565b94505060806128648a828b0161272e565b93505060a06128758a828b016126ef565b92505060c06128868a828b016126ef565b91505092959891949750929550565b600080604083850312156128a857600080fd5b60006128b6858286016126da565b92505060206128c785828601612719565b9150509250929050565b6000602082840312156128e357600080fd5b60006128f1848285016126ef565b91505092915050565b6000806040838503121561290d57600080fd5b600061291b858286016126ef565b925050602061292c858286016126da565b9150509250929050565b60006020828403121561294857600080fd5b600061295684828501612704565b91505092915050565b60006020828403121561297157600080fd5b600061297f84828501612719565b91505092915050565b61299181613831565b82525050565b6129a081613843565b82525050565b6129af8161384f565b82525050565b6129c66129c18261384f565b61394b565b82525050565b60006129d7826136f5565b6129e18185613700565b93506129f18185602086016138bc565b6129fa81613a13565b840191505092915050565b6000612a10826136f5565b612a1a8185613711565b9350612a2a8185602086016138bc565b80840191505092915050565b6000612a43601883613700565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000612a83601d83613700565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b6000612ac3602083613700565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612b03602383613700565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b69601483613700565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612ba9602283613700565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c0f602283613700565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c75600283613711565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000612cb5601d83613700565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b6000612cf5602683613700565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d5b602283613700565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612dc1601083613700565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612e01602283613700565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e67601e83613700565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b6000612ea7602883613700565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f0d602483613700565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f73602183613700565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fd9602583613700565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061303f602483613700565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130a5601683613700565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b60006130e5601783613711565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000613125602583613700565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061318b601183613711565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006131cb602f83613700565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61322d816138a5565b82525050565b61323c816138af565b82525050565b600061324d82612c68565b915061325982856129b5565b60208201915061326982846129b5565b6020820191508190509392505050565b6000613284826130d8565b91506132908285612a05565b915061329b8261317e565b91506132a78284612a05565b91508190509392505050565b60006020820190506132c86000830184612988565b92915050565b60006020820190506132e36000830184612997565b92915050565b60006020820190506132fe60008301846129a6565b92915050565b600060c08201905061331960008301896129a6565b6133266020830188612988565b6133336040830187612988565b6133406060830186613224565b61334d6080830185613224565b61335a60a0830184613224565b979650505050505050565b600060a08201905061337a60008301886129a6565b61338760208301876129a6565b61339460408301866129a6565b6133a16060830185613224565b6133ae6080830184612988565b9695505050505050565b60006080820190506133cd60008301876129a6565b6133da6020830186613233565b6133e760408301856129a6565b6133f460608301846129a6565b95945050505050565b6000602082019050818103600083015261341781846129cc565b905092915050565b6000602082019050818103600083015261343881612a36565b9050919050565b6000602082019050818103600083015261345881612a76565b9050919050565b6000602082019050818103600083015261347881612ab6565b9050919050565b6000602082019050818103600083015261349881612af6565b9050919050565b600060208201905081810360008301526134b881612b5c565b9050919050565b600060208201905081810360008301526134d881612b9c565b9050919050565b600060208201905081810360008301526134f881612c02565b9050919050565b6000602082019050818103600083015261351881612ca8565b9050919050565b6000602082019050818103600083015261353881612ce8565b9050919050565b6000602082019050818103600083015261355881612d4e565b9050919050565b6000602082019050818103600083015261357881612db4565b9050919050565b6000602082019050818103600083015261359881612df4565b9050919050565b600060208201905081810360008301526135b881612e5a565b9050919050565b600060208201905081810360008301526135d881612e9a565b9050919050565b600060208201905081810360008301526135f881612f00565b9050919050565b6000602082019050818103600083015261361881612f66565b9050919050565b6000602082019050818103600083015261363881612fcc565b9050919050565b6000602082019050818103600083015261365881613032565b9050919050565b6000602082019050818103600083015261367881613098565b9050919050565b6000602082019050818103600083015261369881613118565b9050919050565b600060208201905081810360008301526136b8816131be565b9050919050565b60006020820190506136d46000830184613224565b92915050565b60006020820190506136ef6000830184613233565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613727826138a5565b9150613732836138a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376757613766613986565b5b828201905092915050565b600061377d826138a5565b9150613788836138a5565b925082613798576137976139b5565b5b828204905092915050565b60006137ae826138a5565b91506137b9836138a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f2576137f1613986565b5b828202905092915050565b6000613808826138a5565b9150613813836138a5565b92508282101561382657613825613986565b5b828203905092915050565b600061383c82613885565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156138da5780820151818401526020810190506138bf565b838111156138e9576000848401525b50505050565b60006138fa826138a5565b9150600082141561390e5761390d613986565b5b600182039050919050565b6000600282049050600182168061393157607f821691505b60208210811415613945576139446139e4565b5b50919050565b6000819050919050565b6000613960826138a5565b915061396b836138a5565b92508261397b5761397a6139b5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613a2d81613831565b8114613a3857600080fd5b50565b613a448161384f565b8114613a4f57600080fd5b50565b613a5b81613859565b8114613a6657600080fd5b50565b613a72816138a5565b8114613a7d57600080fd5b50565b613a89816138af565b8114613a9457600080fd5b5056fea2646970667358221220a98d9eb8541d9b91fc6d74ffd2ae2be42ebcaf311c8a877d6f545c1d7282eb9e64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80637028e2cd1161010f578063981b24d0116100a2578063d505accf11610071578063d505accf146105a8578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063981b24d0146104fa578063a217fddf1461052a578063a457c2d714610548578063a9059cbb14610578576101e5565b80638456cb59116100de5780638456cb591461049857806391d14854146104a257806395d89b41146104d25780639711715a146104f0576101e5565b80637028e2cd146103fe57806370a082311461041c57806379cc67901461044c5780637ecebe0014610468576101e5565b8063313ce567116101875780633f4ba83a116101565780633f4ba83a1461038a57806342966c68146103945780634ee2cd7e146103b05780635c975abb146103e0576101e5565b8063313ce567146103025780633644e5151461032057806336568abe1461033e578063395093511461035a576101e5565b806318160ddd116101c357806318160ddd1461026857806323b872dd14610286578063248a9ca3146102b65780632f2ff15d146102e6576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff9190612936565b61062e565b60405161021191906132ce565b60405180910390f35b6102226106a8565b60405161022f91906133fd565b60405180910390f35b610252600480360381019061024d9190612895565b61073a565b60405161025f91906132ce565b60405180910390f35b610270610758565b60405161027d91906136bf565b60405180910390f35b6102a0600480360381019061029b91906127a8565b610762565b6040516102ad91906132ce565b60405180910390f35b6102d060048036038101906102cb91906128d1565b610863565b6040516102dd91906132e9565b60405180910390f35b61030060048036038101906102fb91906128fa565b610883565b005b61030a6108ac565b60405161031791906136da565b60405180910390f35b6103286108b5565b60405161033591906132e9565b60405180910390f35b610358600480360381019061035391906128fa565b6108c4565b005b610374600480360381019061036f9190612895565b610947565b60405161038191906132ce565b60405180910390f35b6103926109f3565b005b6103ae60048036038101906103a9919061295f565b610a30565b005b6103ca60048036038101906103c59190612895565b610a44565b6040516103d791906136bf565b60405180910390f35b6103e8610ab4565b6040516103f591906132ce565b60405180910390f35b610406610acb565b60405161041391906132e9565b60405180910390f35b61043660048036038101906104319190612743565b610aef565b60405161044391906136bf565b60405180910390f35b61046660048036038101906104619190612895565b610b37565b005b610482600480360381019061047d9190612743565b610bbb565b60405161048f91906136bf565b60405180910390f35b6104a0610c0b565b005b6104bc60048036038101906104b791906128fa565b610c48565b6040516104c991906132ce565b60405180910390f35b6104da610cb3565b6040516104e791906133fd565b60405180910390f35b6104f8610d45565b005b610514600480360381019061050f919061295f565b610d83565b60405161052191906136bf565b60405180910390f35b610532610db4565b60405161053f91906132e9565b60405180910390f35b610562600480360381019061055d9190612895565b610dbb565b60405161056f91906132ce565b60405180910390f35b610592600480360381019061058d9190612895565b610eaf565b60405161059f91906132ce565b60405180910390f35b6105c260048036038101906105bd91906127f7565b610ecd565b005b6105de60048036038101906105d991906128fa565b61100f565b005b6105fa60048036038101906105f5919061276c565b611038565b60405161060791906136bf565b60405180910390f35b6106186110bf565b60405161062591906132e9565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a0826111b0565b5b9050919050565b6060600380546106b790613919565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390613919565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600061074e61074761121a565b8484611222565b6001905092915050565b6000600254905090565b600061076f8484846113ed565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107ba61121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561083a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610831906135bf565b60405180910390fd5b6108578561084661121a565b858461085291906137fd565b611222565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b61088c82610863565b61089d8161089861121a565b61166c565b6108a78383611709565b505050565b60006012905090565b60006108bf6117ea565b905090565b6108cc61121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109309061369f565b60405180910390fd5b61094382826118ad565b5050565b60006109e961095461121a565b84846001600061096261121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109e4919061371c565b611222565b6001905092915050565b610a1d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610c48565b610a2657600080fd5b610a2e61198f565b565b610a41610a3b61121a565b82611a31565b50565b6000806000610a9184600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c05565b9150915081610aa857610aa385610aef565b610aaa565b805b9250505092915050565b6000600a60009054906101000a900460ff16905090565b7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b4a83610b4561121a565b611038565b905081811015610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906135df565b60405180910390fd5b610bac83610b9b61121a565b8484610ba791906137fd565b611222565b610bb68383611a31565b505050565b6000610c04600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206111a2565b9050919050565b610c357f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610c48565b610c3e57600080fd5b610c46611d23565b565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610cc290613919565b80601f0160208091040260200160405190810160405280929190818152602001828054610cee90613919565b8015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b5050505050905090565b610d6f7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f33610c48565b610d7857600080fd5b610d80611dc6565b50565b6000806000610d93846006611c05565b9150915081610da957610da4610758565b610dab565b805b92505050919050565b6000801b81565b60008060016000610dca61121a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e9061367f565b60405180910390fd5b610ea4610e9261121a565b858584610e9f91906137fd565b611222565b600191505092915050565b6000610ec3610ebc61121a565b84846113ed565b6001905092915050565b83421115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906134ff565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610f3f8c611e1e565b89604051602001610f5596959493929190613304565b6040516020818303038152906040528051906020012090506000610f7882611e7c565b90506000610f8882878787611e96565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef9061359f565b60405180910390fd5b6110038a8a8a611222565b50505050505050505050565b61101882610863565b6110298161102461121a565b61166c565b61103383836118ad565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6110ee83838361119d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111395761112c82612021565b611134612074565b611198565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111845761117783612021565b61117f612074565b611197565b61118d83612021565b61119682612021565b5b5b505050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112899061363f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906134df565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e091906136bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114549061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061347f565b60405180910390fd5b6114d8838383612088565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061351f565b60405180910390fd5b818161156a91906137fd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115fa919061371c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165e91906136bf565b60405180910390a350505050565b6116768282610c48565b6117055761169b8173ffffffffffffffffffffffffffffffffffffffff1660146120e0565b6116a98360001c60206120e0565b6040516020016116ba929190613279565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc91906133fd565b60405180910390fd5b5050565b6117138282610c48565b6117e65760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061178b61121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f000000000000000000000000000000000000000000000000000000000000000146141561183c577f36ee5edd3c155f3ab1e09247358c30333c04ad93ae5cc1d720a95e6c3fbf850d90506118aa565b6118a77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fcec2716803a01240eb1b178bc8825f49cbdc2042ee9084908d7d93f5b04d2d9e7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66123da565b90505b90565b6118b78282610c48565b1561198b5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193061121a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611997610ab4565b6119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061349f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a1a61121a565b604051611a2791906132b3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a98906135ff565b60405180910390fd5b611aad82600083612088565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906134bf565b60405180910390fd5b8181611b3f91906137fd565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b9391906137fd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf891906136bf565b60405180910390a3505050565b60008060008411611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c429061365f565b60405180910390fd5b611c5560086111a2565b841115611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e9061343f565b60405180910390fd5b6000611caf858560000161241490919063ffffffff16565b90508360000180549050811415611ccd576000809250925050611d1c565b6001846001018281548110611d0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611d2b610ab4565b15611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d629061355f565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611daf61121a565b604051611dbc91906132b3565b60405180910390a1565b6000611dd2600861253a565b6000611dde60086111a2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611e0f91906136bf565b60405180910390a18091505090565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e6b816111a2565b9150611e768161253a565b50919050565b6000611e8f611e896117ea565b83612550565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef59061353f565b60405180910390fd5b601b8460ff161480611f135750601c8460ff16145b611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061357f565b60405180910390fd5b600060018686868660405160008152602001604052604051611f7794939291906133b8565b6020604051602081039080840390855afa158015611f99573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c9061341f565b60405180910390fd5b80915050949350505050565b612071600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061206c83610aef565b612583565b50565b6120866006612081610758565b612583565b565b612090610ab4565b156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c79061355f565b60405180910390fd5b6120db8383836110e3565b505050565b6060600060028360026120f391906137a3565b6120fd919061371c565b67ffffffffffffffff81111561213c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561216e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106121cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612256577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261229691906137a3565b6122a0919061371c565b90505b600181111561238c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612308577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612345577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612385906138ef565b90506122a3565b50600084146123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c79061345f565b60405180910390fd5b8091505092915050565b600083838346306040516020016123f5959493929190613365565b6040516020818303038152906040528051906020012090509392505050565b6000808380549050141561242b5760009050612534565b600080848054905090505b808210156124b557600061244a8383612600565b905084868281548110612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154111561249f578091506124af565b6001816124ac919061371c565b92505b50612436565b600082118015612513575083856001846124cf91906137fd565b81548110612506577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561252e5760018261252591906137fd565b92505050612534565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612565929190613242565b60405160208183030381529060405280519060200120905092915050565b600061258f60086111a2565b90508061259e84600001612667565b10156125fb5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600280836126109190613955565b60028561261d9190613955565b612627919061371c565b6126319190613772565b60028361263e9190613772565b60028561264b9190613772565b612655919061371c565b61265f919061371c565b905092915050565b6000808280549050141561267e57600090506126d5565b816001838054905061269091906137fd565b815481106126c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506126e981613a24565b92915050565b6000813590506126fe81613a3b565b92915050565b60008135905061271381613a52565b92915050565b60008135905061272881613a69565b92915050565b60008135905061273d81613a80565b92915050565b60006020828403121561275557600080fd5b6000612763848285016126da565b91505092915050565b6000806040838503121561277f57600080fd5b600061278d858286016126da565b925050602061279e858286016126da565b9150509250929050565b6000806000606084860312156127bd57600080fd5b60006127cb868287016126da565b93505060206127dc868287016126da565b92505060406127ed86828701612719565b9150509250925092565b600080600080600080600060e0888a03121561281257600080fd5b60006128208a828b016126da565b97505060206128318a828b016126da565b96505060406128428a828b01612719565b95505060606128538a828b01612719565b94505060806128648a828b0161272e565b93505060a06128758a828b016126ef565b92505060c06128868a828b016126ef565b91505092959891949750929550565b600080604083850312156128a857600080fd5b60006128b6858286016126da565b92505060206128c785828601612719565b9150509250929050565b6000602082840312156128e357600080fd5b60006128f1848285016126ef565b91505092915050565b6000806040838503121561290d57600080fd5b600061291b858286016126ef565b925050602061292c858286016126da565b9150509250929050565b60006020828403121561294857600080fd5b600061295684828501612704565b91505092915050565b60006020828403121561297157600080fd5b600061297f84828501612719565b91505092915050565b61299181613831565b82525050565b6129a081613843565b82525050565b6129af8161384f565b82525050565b6129c66129c18261384f565b61394b565b82525050565b60006129d7826136f5565b6129e18185613700565b93506129f18185602086016138bc565b6129fa81613a13565b840191505092915050565b6000612a10826136f5565b612a1a8185613711565b9350612a2a8185602086016138bc565b80840191505092915050565b6000612a43601883613700565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000612a83601d83613700565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b6000612ac3602083613700565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612b03602383613700565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b69601483613700565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612ba9602283613700565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c0f602283613700565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c75600283613711565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000612cb5601d83613700565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b6000612cf5602683613700565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d5b602283613700565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612dc1601083613700565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612e01602283613700565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e67601e83613700565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b6000612ea7602883613700565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f0d602483613700565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f73602183613700565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fd9602583613700565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061303f602483613700565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130a5601683613700565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b60006130e5601783613711565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000613125602583613700565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061318b601183613711565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006131cb602f83613700565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61322d816138a5565b82525050565b61323c816138af565b82525050565b600061324d82612c68565b915061325982856129b5565b60208201915061326982846129b5565b6020820191508190509392505050565b6000613284826130d8565b91506132908285612a05565b915061329b8261317e565b91506132a78284612a05565b91508190509392505050565b60006020820190506132c86000830184612988565b92915050565b60006020820190506132e36000830184612997565b92915050565b60006020820190506132fe60008301846129a6565b92915050565b600060c08201905061331960008301896129a6565b6133266020830188612988565b6133336040830187612988565b6133406060830186613224565b61334d6080830185613224565b61335a60a0830184613224565b979650505050505050565b600060a08201905061337a60008301886129a6565b61338760208301876129a6565b61339460408301866129a6565b6133a16060830185613224565b6133ae6080830184612988565b9695505050505050565b60006080820190506133cd60008301876129a6565b6133da6020830186613233565b6133e760408301856129a6565b6133f460608301846129a6565b95945050505050565b6000602082019050818103600083015261341781846129cc565b905092915050565b6000602082019050818103600083015261343881612a36565b9050919050565b6000602082019050818103600083015261345881612a76565b9050919050565b6000602082019050818103600083015261347881612ab6565b9050919050565b6000602082019050818103600083015261349881612af6565b9050919050565b600060208201905081810360008301526134b881612b5c565b9050919050565b600060208201905081810360008301526134d881612b9c565b9050919050565b600060208201905081810360008301526134f881612c02565b9050919050565b6000602082019050818103600083015261351881612ca8565b9050919050565b6000602082019050818103600083015261353881612ce8565b9050919050565b6000602082019050818103600083015261355881612d4e565b9050919050565b6000602082019050818103600083015261357881612db4565b9050919050565b6000602082019050818103600083015261359881612df4565b9050919050565b600060208201905081810360008301526135b881612e5a565b9050919050565b600060208201905081810360008301526135d881612e9a565b9050919050565b600060208201905081810360008301526135f881612f00565b9050919050565b6000602082019050818103600083015261361881612f66565b9050919050565b6000602082019050818103600083015261363881612fcc565b9050919050565b6000602082019050818103600083015261365881613032565b9050919050565b6000602082019050818103600083015261367881613098565b9050919050565b6000602082019050818103600083015261369881613118565b9050919050565b600060208201905081810360008301526136b8816131be565b9050919050565b60006020820190506136d46000830184613224565b92915050565b60006020820190506136ef6000830184613233565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613727826138a5565b9150613732836138a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376757613766613986565b5b828201905092915050565b600061377d826138a5565b9150613788836138a5565b925082613798576137976139b5565b5b828204905092915050565b60006137ae826138a5565b91506137b9836138a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f2576137f1613986565b5b828202905092915050565b6000613808826138a5565b9150613813836138a5565b92508282101561382657613825613986565b5b828203905092915050565b600061383c82613885565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156138da5780820151818401526020810190506138bf565b838111156138e9576000848401525b50505050565b60006138fa826138a5565b9150600082141561390e5761390d613986565b5b600182039050919050565b6000600282049050600182168061393157607f821691505b60208210811415613945576139446139e4565b5b50919050565b6000819050919050565b6000613960826138a5565b915061396b836138a5565b92508261397b5761397a6139b5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613a2d81613831565b8114613a3857600080fd5b50565b613a448161384f565b8114613a4f57600080fd5b50565b613a5b81613859565b8114613a6657600080fd5b50565b613a72816138a5565b8114613a7d57600080fd5b50565b613a89816138af565b8114613a9457600080fd5b5056fea2646970667358221220a98d9eb8541d9b91fc6d74ffd2ae2be42ebcaf311c8a877d6f545c1d7282eb9e64736f6c63430008000033

Deployed Bytecode Sourcemap

56488:1099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35279:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10191:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12358:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11311:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13009:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36590:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36975:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11153:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56019:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38023:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13840:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57248:107;;;:::i;:::-;;19355:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26485:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40741:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56590:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11482:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19765:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55761:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57137:103;;;:::i;:::-;;35588:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57018:111;;;:::i;:::-;;26855:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33553:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14558:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54924:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37367:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12060:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56663:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35279:217;35364:4;35403:32;35388:47;;;:11;:47;;;;:100;;;;35452:36;35476:11;35452:23;:36::i;:::-;35388:100;35381:107;;35279:217;;;:::o;10191:100::-;10245:13;10278:5;10271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10191:100;:::o;12358:169::-;12441:4;12458:39;12467:12;:10;:12::i;:::-;12481:7;12490:6;12458:8;:39::i;:::-;12515:4;12508:11;;12358:169;;;;:::o;11311:108::-;11372:7;11399:12;;11392:19;;11311:108;:::o;13009:422::-;13115:4;13132:36;13142:6;13150:9;13161:6;13132:9;:36::i;:::-;13181:24;13208:11;:19;13220:6;13208:19;;;;;;;;;;;;;;;:33;13228:12;:10;:12::i;:::-;13208:33;;;;;;;;;;;;;;;;13181:60;;13280:6;13260:16;:26;;13252:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13342:57;13351:6;13359:12;:10;:12::i;:::-;13392:6;13373:16;:25;;;;:::i;:::-;13342:8;:57::i;:::-;13419:4;13412:11;;;13009:422;;;;;:::o;36590:123::-;36656:7;36683:6;:12;36690:4;36683:12;;;;;;;;;;;:22;;;36676:29;;36590:123;;;:::o;36975:147::-;37058:18;37071:4;37058:12;:18::i;:::-;35157:30;35168:4;35174:12;:10;:12::i;:::-;35157:10;:30::i;:::-;37089:25:::1;37100:4;37106:7;37089:10;:25::i;:::-;36975:147:::0;;;:::o;11153:93::-;11211:5;11236:2;11229:9;;11153:93;:::o;56019:115::-;56079:7;56106:20;:18;:20::i;:::-;56099:27;;56019:115;:::o;38023:218::-;38130:12;:10;:12::i;:::-;38119:23;;:7;:23;;;38111:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;38207:26;38219:4;38225:7;38207:11;:26::i;:::-;38023:218;;:::o;13840:215::-;13928:4;13945:80;13954:12;:10;:12::i;:::-;13968:7;14014:10;13977:11;:25;13989:12;:10;:12::i;:::-;13977:25;;;;;;;;;;;;;;;:34;14003:7;13977:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13945:8;:80::i;:::-;14043:4;14036:11;;13840:215;;;;:::o;57248:107::-;57293:32;56701:24;57314:10;57293:7;:32::i;:::-;57285:41;;;;;;57337:10;:8;:10::i;:::-;57248:107::o;19355:91::-;19411:27;19417:12;:10;:12::i;:::-;19431:6;19411:5;:27::i;:::-;19355:91;:::o;26485:266::-;26572:7;26593:16;26611:13;26628:55;26637:10;26649:24;:33;26674:7;26649:33;;;;;;;;;;;;;;;26628:8;:55::i;:::-;26592:91;;;;26703:11;:40;;26725:18;26735:7;26725:9;:18::i;:::-;26703:40;;;26717:5;26703:40;26696:47;;;;26485:266;;;;:::o;40741:86::-;40788:4;40812:7;;;;;;;;;;;40805:14;;40741:86;:::o;56590:66::-;56630:26;56590:66;:::o;11482:127::-;11556:7;11583:9;:18;11593:7;11583:18;;;;;;;;;;;;;;;;11576:25;;11482:127;;;:::o;19765:332::-;19842:24;19869:32;19879:7;19888:12;:10;:12::i;:::-;19869:9;:32::i;:::-;19842:59;;19940:6;19920:16;:26;;19912:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19998:58;20007:7;20016:12;:10;:12::i;:::-;20049:6;20030:16;:25;;;;:::i;:::-;19998:8;:58::i;:::-;20067:22;20073:7;20082:6;20067:5;:22::i;:::-;19765:332;;;:::o;55761:128::-;55830:7;55857:24;:7;:14;55865:5;55857:14;;;;;;;;;;;;;;;:22;:24::i;:::-;55850:31;;55761:128;;;:::o;57137:103::-;57180:32;56701:24;57201:10;57180:7;:32::i;:::-;57172:41;;;;;;57224:8;:6;:8::i;:::-;57137:103::o;35588:139::-;35666:4;35690:6;:12;35697:4;35690:12;;;;;;;;;;;:20;;:29;35711:7;35690:29;;;;;;;;;;;;;;;;;;;;;;;;;35683:36;;35588:139;;;;:::o;10410:104::-;10466:13;10499:7;10492:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10410:104;:::o;57018:111::-;57064:34;56630:26;57087:10;57064:7;:34::i;:::-;57056:43;;;;;;57110:11;:9;:11::i;:::-;;57018:111::o;26855:233::-;26926:7;26947:16;26965:13;26982:43;26991:10;27003:21;26982:8;:43::i;:::-;26946:79;;;;27045:11;:35;;27067:13;:11;:13::i;:::-;27045:35;;;27059:5;27045:35;27038:42;;;;26855:233;;;:::o;33553:49::-;33598:4;33553:49;;;:::o;14558:377::-;14651:4;14668:24;14695:11;:25;14707:12;:10;:12::i;:::-;14695:25;;;;;;;;;;;;;;;:34;14721:7;14695:34;;;;;;;;;;;;;;;;14668:61;;14768:15;14748:16;:35;;14740:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:67;14845:12;:10;:12::i;:::-;14859:7;14887:15;14868:16;:34;;;;:::i;:::-;14836:8;:67::i;:::-;14923:4;14916:11;;;14558:377;;;;:::o;11822:175::-;11908:4;11925:42;11935:12;:10;:12::i;:::-;11949:9;11960:6;11925:9;:42::i;:::-;11985:4;11978:11;;11822:175;;;;:::o;54924:771::-;55153:8;55134:15;:27;;55126:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;55208:18;55282:16;55317:5;55341:7;55367:5;55391:16;55401:5;55391:9;:16::i;:::-;55426:8;55253:196;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55229:231;;;;;;55208:252;;55473:12;55488:28;55505:10;55488:16;:28::i;:::-;55473:43;;55529:14;55546:28;55560:4;55566:1;55569;55572;55546:13;:28::i;:::-;55529:45;;55603:5;55593:15;;:6;:15;;;55585:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55656:31;55665:5;55672:7;55681:5;55656:8;:31::i;:::-;54924:771;;;;;;;;;;:::o;37367:149::-;37451:18;37464:4;37451:12;:18::i;:::-;35157:30;35168:4;35174:12;:10;:12::i;:::-;35157:10;:30::i;:::-;37482:26:::1;37494:4;37500:7;37482:11;:26::i;:::-;37367:149:::0;;;:::o;12060:151::-;12149:7;12176:11;:18;12188:5;12176:18;;;;;;;;;;;;;;;:27;12195:7;12176:27;;;;;;;;;;;;;;;;12169:34;;12060:151;;;;:::o;56663:62::-;56701:24;56663:62;:::o;27307:542::-;27414:44;27441:4;27447:2;27451:6;27414:26;:44::i;:::-;27489:1;27473:18;;:4;:18;;;27469:373;;;27521:26;27544:2;27521:22;:26::i;:::-;27558:28;:26;:28::i;:::-;27469:373;;;27620:1;27606:16;;:2;:16;;;27602:240;;;27652:28;27675:4;27652:22;:28::i;:::-;27691;:26;:28::i;:::-;27602:240;;;27767:28;27790:4;27767:22;:28::i;:::-;27806:26;27829:2;27806:22;:26::i;:::-;27602:240;27469:373;27307:542;;;:::o;18863:92::-;;;;:::o;4268:114::-;4333:7;4360;:14;;;4353:21;;4268:114;;;:::o;31101:157::-;31186:4;31225:25;31210:40;;;:11;:40;;;;31203:47;;31101:157;;;:::o;5312:98::-;5365:7;5392:10;5385:17;;5312:98;:::o;17914:346::-;18033:1;18016:19;;:5;:19;;;;18008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18114:1;18095:21;;:7;:21;;;;18087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18198:6;18168:11;:18;18180:5;18168:18;;;;;;;;;;;;;;;:27;18187:7;18168:27;;;;;;;;;;;;;;;:36;;;;18236:7;18220:32;;18229:5;18220:32;;;18245:6;18220:32;;;;;;:::i;:::-;;;;;;;;17914:346;;;:::o;15425:604::-;15549:1;15531:20;;:6;:20;;;;15523:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15633:1;15612:23;;:9;:23;;;;15604:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15688:47;15709:6;15717:9;15728:6;15688:20;:47::i;:::-;15748:21;15772:9;:17;15782:6;15772:17;;;;;;;;;;;;;;;;15748:41;;15825:6;15808:13;:23;;15800:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:6;15905:13;:22;;;;:::i;:::-;15885:9;:17;15895:6;15885:17;;;;;;;;;;;;;;;:42;;;;15962:6;15938:9;:20;15948:9;15938:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16003:9;15986:35;;15995:6;15986:35;;;16014:6;15986:35;;;;;;:::i;:::-;;;;;;;;15425:604;;;;:::o;36017:384::-;36097:22;36105:4;36111:7;36097;:22::i;:::-;36093:301;;36229:41;36257:7;36229:41;;36267:2;36229:19;:41::i;:::-;36327:38;36355:4;36347:13;;36362:2;36327:19;:38::i;:::-;36150:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36136:246;;;;;;;;;;;:::i;:::-;;;;;;;;36093:301;36017:384;;:::o;39271:229::-;39346:22;39354:4;39360:7;39346;:22::i;:::-;39341:152;;39417:4;39385:6;:12;39392:4;39385:12;;;;;;;;;;;:20;;:29;39406:7;39385:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;39468:12;:10;:12::i;:::-;39441:40;;39459:7;39441:40;;39453:4;39441:40;;;;;;;;;;39341:152;39271:229;;:::o;47000:281::-;47053:7;47094:16;47077:13;:33;47073:201;;;47134:24;47127:31;;;;47073:201;47198:64;47220:10;47232:12;47246:15;47198:21;:64::i;:::-;47191:71;;47000:281;;:::o;39508:230::-;39583:22;39591:4;39597:7;39583;:22::i;:::-;39579:152;;;39654:5;39622:6;:12;39629:4;39622:12;;;;;;;;;;;:20;;:29;39643:7;39622:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;39706:12;:10;:12::i;:::-;39679:40;;39697:7;39679:40;;39691:4;39679:40;;;;;;;;;;39579:152;39508:230;;:::o;41800:120::-;41344:8;:6;:8::i;:::-;41336:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;41869:5:::1;41859:7;;:15;;;;;;;;;;;;;;;;;;41890:22;41899:12;:10;:12::i;:::-;41890:22;;;;;;:::i;:::-;;;;;;;;41800:120::o:0;16982:494::-;17085:1;17066:21;;:7;:21;;;;17058:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17138:49;17159:7;17176:1;17180:6;17138:20;:49::i;:::-;17200:22;17225:9;:18;17235:7;17225:18;;;;;;;;;;;;;;;;17200:43;;17280:6;17262:14;:24;;17254:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17374:6;17357:14;:23;;;;:::i;:::-;17336:9;:18;17346:7;17336:18;;;;;;;;;;;;;;;:44;;;;17407:6;17391:12;;:22;;;;;;;:::i;:::-;;;;;;;;17457:1;17431:37;;17440:7;17431:37;;;17461:6;17431:37;;;;;;:::i;:::-;;;;;;;;16982:494;;;:::o;27857:1692::-;27955:4;27961:7;28007:1;27994:10;:14;27986:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;28122:28;:18;:26;:28::i;:::-;28108:10;:42;;28100:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;29323:13;29339:40;29368:10;29339:9;:13;;:28;;:40;;;;:::i;:::-;29323:56;;29405:9;:13;;:20;;;;29396:5;:29;29392:150;;;29450:5;29457:1;29442:17;;;;;;;29392:150;29500:4;29506:9;:16;;29523:5;29506:23;;;;;;;;;;;;;;;;;;;;;;;;29492:38;;;;;27857:1692;;;;;;:::o;41541:118::-;41067:8;:6;:8::i;:::-;41066:9;41058:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41611:4:::1;41601:7;;:14;;;;;;;;;;;;;;;;;;41631:20;41638:12;:10;:12::i;:::-;41631:20;;;;;;:::i;:::-;;;;;;;;41541:118::o:0;26145:228::-;26192:7;26212:30;:18;:28;:30::i;:::-;26255:17;26275:28;:18;:26;:28::i;:::-;26255:48;;26319:19;26328:9;26319:19;;;;;;:::i;:::-;;;;;;;;26356:9;26349:16;;;26145:228;:::o;56272:207::-;56332:15;56360:30;56393:7;:14;56401:5;56393:14;;;;;;;;;;;;;;;56360:47;;56428:15;:5;:13;:15::i;:::-;56418:25;;56454:17;:5;:15;:17::i;:::-;56272:207;;;;:::o;48268:167::-;48345:7;48372:55;48394:20;:18;:20::i;:::-;48416:10;48372:21;:55::i;:::-;48365:62;;48268:167;;;:::o;51108:1432::-;51193:7;52118:66;52112:1;52104:10;;:80;;52096:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;52247:2;52242:1;:7;;;:18;;;;52258:2;52253:1;:7;;;52242:18;52234:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52397:14;52414:24;52424:4;52430:1;52433;52436;52414:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52397:41;;52475:1;52457:20;;:6;:20;;;;52449:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52526:6;52519:13;;;51108:1432;;;;;;:::o;29557:146::-;29625:70;29641:24;:33;29666:7;29641:33;;;;;;;;;;;;;;;29676:18;29686:7;29676:9;:18::i;:::-;29625:15;:70::i;:::-;29557:146;:::o;29711:118::-;29768:53;29784:21;29807:13;:11;:13::i;:::-;29768:15;:53::i;:::-;29711:118::o;57363:221::-;41067:8;:6;:8::i;:::-;41066:9;41058:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57532:44:::1;57559:4;57565:2;57569:6;57532:26;:44::i;:::-;57363:221:::0;;;:::o;7189:447::-;7264:13;7290:19;7335:1;7326:6;7322:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7312:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7290:47;;7348:15;:6;7355:1;7348:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;7374;:6;7381:1;7374:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;7405:9;7430:1;7421:6;7417:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7405:26;;7400:131;7437:1;7433;:5;7400:131;;;7472:8;7489:3;7481:5;:11;7472:21;;;;;;;;;;;;;;;;;;7460:6;7467:1;7460:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;7518:1;7508:11;;;;;7440:3;;;;:::i;:::-;;;7400:131;;;;7558:1;7549:5;:10;7541:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;7621:6;7607:21;;;7189:447;;;;:::o;47289:337::-;47391:7;47471:8;47498:4;47521:7;47547:13;47587:4;47442:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47418:200;;;;;;47411:207;;47289:337;;;;;:::o;21413:918::-;21502:7;21542:1;21526:5;:12;;;;:17;21522:58;;;21567:1;21560:8;;;;21522:58;21592:11;21618:12;21633:5;:12;;;;21618:27;;21658:424;21671:4;21665:3;:10;21658:424;;;21692:11;21706:23;21719:3;21724:4;21706:12;:23::i;:::-;21692:37;;21963:7;21950:5;21956:3;21950:10;;;;;;;;;;;;;;;;;;;;;;;;:20;21946:125;;;21998:3;21991:10;;21946:125;;;22054:1;22048:3;:7;;;;:::i;:::-;22042:13;;21946:125;21658:424;;;;22208:1;22202:3;:7;:36;;;;;22231:7;22213:5;22225:1;22219:3;:7;;;;:::i;:::-;22213:14;;;;;;;;;;;;;;;;;;;;;;;;:25;22202:36;22198:126;;;22268:1;22262:3;:7;;;;:::i;:::-;22255:14;;;;;;22198:126;22309:3;22302:10;;;;21413:918;;;;;:::o;4390:127::-;4497:1;4479:7;:14;;;:19;;;;;;;;;;;4390:127;:::o;53459:196::-;53552:7;53618:15;53635:10;53589:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53579:68;;;;;;53572:75;;53459:196;;;;:::o;29837:315::-;29932:17;29952:28;:18;:26;:28::i;:::-;29932:48;;30028:9;29995:30;30011:9;:13;;29995:15;:30::i;:::-;:42;29991:154;;;30054:9;:13;;30073:9;30054:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30098:9;:16;;30120:12;30098:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29991:154;29837:315;;;:::o;20702:193::-;20764:7;20885:1;20880;20876;:5;;;;:::i;:::-;20872:1;20868;:5;;;;:::i;:::-;:13;;;;:::i;:::-;20867:19;;;;:::i;:::-;20861:1;20857;:5;;;;:::i;:::-;20851:1;20847;:5;;;;:::i;:::-;20846:17;;;;:::i;:::-;:41;;;;:::i;:::-;20839:48;;20702:193;;;;:::o;30160:212::-;30230:7;30268:1;30254:3;:10;;;;:15;30250:115;;;30293:1;30286:8;;;;30250:115;30334:3;30351:1;30338:3;:10;;;;:14;;;;:::i;:::-;30334:19;;;;;;;;;;;;;;;;;;;;;;;;30327:26;;30160:212;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:135::-;;667:6;654:20;645:29;;683:31;708:5;683:31;:::i;:::-;635:85;;;;:::o;726:262::-;;834:2;822:9;813:7;809:23;805:32;802:2;;;850:1;847;840:12;802:2;893:1;918:53;963:7;954:6;943:9;939:22;918:53;:::i;:::-;908:63;;864:117;792:196;;;;:::o;994:407::-;;;1119:2;1107:9;1098:7;1094:23;1090:32;1087:2;;;1135:1;1132;1125:12;1087:2;1178:1;1203:53;1248:7;1239:6;1228:9;1224:22;1203:53;:::i;:::-;1193:63;;1149:117;1305:2;1331:53;1376:7;1367:6;1356:9;1352:22;1331:53;:::i;:::-;1321:63;;1276:118;1077:324;;;;;:::o;1407:552::-;;;;1549:2;1537:9;1528:7;1524:23;1520:32;1517:2;;;1565:1;1562;1555:12;1517:2;1608:1;1633:53;1678:7;1669:6;1658:9;1654:22;1633:53;:::i;:::-;1623:63;;1579:117;1735:2;1761:53;1806:7;1797:6;1786:9;1782:22;1761:53;:::i;:::-;1751:63;;1706:118;1863:2;1889:53;1934:7;1925:6;1914:9;1910:22;1889:53;:::i;:::-;1879:63;;1834:118;1507:452;;;;;:::o;1965:1132::-;;;;;;;;2173:3;2161:9;2152:7;2148:23;2144:33;2141:2;;;2190:1;2187;2180:12;2141:2;2233:1;2258:53;2303:7;2294:6;2283:9;2279:22;2258:53;:::i;:::-;2248:63;;2204:117;2360:2;2386:53;2431:7;2422:6;2411:9;2407:22;2386:53;:::i;:::-;2376:63;;2331:118;2488:2;2514:53;2559:7;2550:6;2539:9;2535:22;2514:53;:::i;:::-;2504:63;;2459:118;2616:2;2642:53;2687:7;2678:6;2667:9;2663:22;2642:53;:::i;:::-;2632:63;;2587:118;2744:3;2771:51;2814:7;2805:6;2794:9;2790:22;2771:51;:::i;:::-;2761:61;;2715:117;2871:3;2898:53;2943:7;2934:6;2923:9;2919:22;2898:53;:::i;:::-;2888:63;;2842:119;3000:3;3027:53;3072:7;3063:6;3052:9;3048:22;3027:53;:::i;:::-;3017:63;;2971:119;2131:966;;;;;;;;;;:::o;3103:407::-;;;3228:2;3216:9;3207:7;3203:23;3199:32;3196:2;;;3244:1;3241;3234:12;3196:2;3287:1;3312:53;3357:7;3348:6;3337:9;3333:22;3312:53;:::i;:::-;3302:63;;3258:117;3414:2;3440:53;3485:7;3476:6;3465:9;3461:22;3440:53;:::i;:::-;3430:63;;3385:118;3186:324;;;;;:::o;3516:262::-;;3624:2;3612:9;3603:7;3599:23;3595:32;3592:2;;;3640:1;3637;3630:12;3592:2;3683:1;3708:53;3753:7;3744:6;3733:9;3729:22;3708:53;:::i;:::-;3698:63;;3654:117;3582:196;;;;:::o;3784:407::-;;;3909:2;3897:9;3888:7;3884:23;3880:32;3877:2;;;3925:1;3922;3915:12;3877:2;3968:1;3993:53;4038:7;4029:6;4018:9;4014:22;3993:53;:::i;:::-;3983:63;;3939:117;4095:2;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4066:118;3867:324;;;;;:::o;4197:260::-;;4304:2;4292:9;4283:7;4279:23;4275:32;4272:2;;;4320:1;4317;4310:12;4272:2;4363:1;4388:52;4432:7;4423:6;4412:9;4408:22;4388:52;:::i;:::-;4378:62;;4334:116;4262:195;;;;:::o;4463:262::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4587:1;4584;4577:12;4539:2;4630:1;4655:53;4700:7;4691:6;4680:9;4676:22;4655:53;:::i;:::-;4645:63;;4601:117;4529:196;;;;:::o;4731:118::-;4818:24;4836:5;4818:24;:::i;:::-;4813:3;4806:37;4796:53;;:::o;4855:109::-;4936:21;4951:5;4936:21;:::i;:::-;4931:3;4924:34;4914:50;;:::o;4970:118::-;5057:24;5075:5;5057:24;:::i;:::-;5052:3;5045:37;5035:53;;:::o;5094:157::-;5199:45;5219:24;5237:5;5219:24;:::i;:::-;5199:45;:::i;:::-;5194:3;5187:58;5177:74;;:::o;5257:364::-;;5373:39;5406:5;5373:39;:::i;:::-;5428:71;5492:6;5487:3;5428:71;:::i;:::-;5421:78;;5508:52;5553:6;5548:3;5541:4;5534:5;5530:16;5508:52;:::i;:::-;5585:29;5607:6;5585:29;:::i;:::-;5580:3;5576:39;5569:46;;5349:272;;;;;:::o;5627:377::-;;5761:39;5794:5;5761:39;:::i;:::-;5816:89;5898:6;5893:3;5816:89;:::i;:::-;5809:96;;5914:52;5959:6;5954:3;5947:4;5940:5;5936:16;5914:52;:::i;:::-;5991:6;5986:3;5982:16;5975:23;;5737:267;;;;;:::o;6010:322::-;;6173:67;6237:2;6232:3;6173:67;:::i;:::-;6166:74;;6270:26;6266:1;6261:3;6257:11;6250:47;6323:2;6318:3;6314:12;6307:19;;6156:176;;;:::o;6338:327::-;;6501:67;6565:2;6560:3;6501:67;:::i;:::-;6494:74;;6598:31;6594:1;6589:3;6585:11;6578:52;6656:2;6651:3;6647:12;6640:19;;6484:181;;;:::o;6671:330::-;;6834:67;6898:2;6893:3;6834:67;:::i;:::-;6827:74;;6931:34;6927:1;6922:3;6918:11;6911:55;6992:2;6987:3;6983:12;6976:19;;6817:184;;;:::o;7007:367::-;;7170:67;7234:2;7229:3;7170:67;:::i;:::-;7163:74;;7267:34;7263:1;7258:3;7254:11;7247:55;7333:5;7328:2;7323:3;7319:12;7312:27;7365:2;7360:3;7356:12;7349:19;;7153:221;;;:::o;7380:318::-;;7543:67;7607:2;7602:3;7543:67;:::i;:::-;7536:74;;7640:22;7636:1;7631:3;7627:11;7620:43;7689:2;7684:3;7680:12;7673:19;;7526:172;;;:::o;7704:366::-;;7867:67;7931:2;7926:3;7867:67;:::i;:::-;7860:74;;7964:34;7960:1;7955:3;7951:11;7944:55;8030:4;8025:2;8020:3;8016:12;8009:26;8061:2;8056:3;8052:12;8045:19;;7850:220;;;:::o;8076:366::-;;8239:67;8303:2;8298:3;8239:67;:::i;:::-;8232:74;;8336:34;8332:1;8327:3;8323:11;8316:55;8402:4;8397:2;8392:3;8388:12;8381:26;8433:2;8428:3;8424:12;8417:19;;8222:220;;;:::o;8448:396::-;;8629:84;8711:1;8706:3;8629:84;:::i;:::-;8622:91;;8743:66;8739:1;8734:3;8730:11;8723:87;8836:1;8831:3;8827:11;8820:18;;8612:232;;;:::o;8850:327::-;;9013:67;9077:2;9072:3;9013:67;:::i;:::-;9006:74;;9110:31;9106:1;9101:3;9097:11;9090:52;9168:2;9163:3;9159:12;9152:19;;8996:181;;;:::o;9183:370::-;;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9443:34;9439:1;9434:3;9430:11;9423:55;9509:8;9504:2;9499:3;9495:12;9488:30;9544:2;9539:3;9535:12;9528:19;;9329:224;;;:::o;9559:366::-;;9722:67;9786:2;9781:3;9722:67;:::i;:::-;9715:74;;9819:34;9815:1;9810:3;9806:11;9799:55;9885:4;9880:2;9875:3;9871:12;9864:26;9916:2;9911:3;9907:12;9900:19;;9705:220;;;:::o;9931:314::-;;10094:67;10158:2;10153:3;10094:67;:::i;:::-;10087:74;;10191:18;10187:1;10182:3;10178:11;10171:39;10236:2;10231:3;10227:12;10220:19;;10077:168;;;:::o;10251:366::-;;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10511:34;10507:1;10502:3;10498:11;10491:55;10577:4;10572:2;10567:3;10563:12;10556:26;10608:2;10603:3;10599:12;10592:19;;10397:220;;;:::o;10623:328::-;;10786:67;10850:2;10845:3;10786:67;:::i;:::-;10779:74;;10883:32;10879:1;10874:3;10870:11;10863:53;10942:2;10937:3;10933:12;10926:19;;10769:182;;;:::o;10957:372::-;;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11217:34;11213:1;11208:3;11204:11;11197:55;11283:10;11278:2;11273:3;11269:12;11262:32;11320:2;11315:3;11311:12;11304:19;;11103:226;;;:::o;11335:368::-;;11498:67;11562:2;11557:3;11498:67;:::i;:::-;11491:74;;11595:34;11591:1;11586:3;11582:11;11575:55;11661:6;11656:2;11651:3;11647:12;11640:28;11694:2;11689:3;11685:12;11678:19;;11481:222;;;:::o;11709:365::-;;11872:67;11936:2;11931:3;11872:67;:::i;:::-;11865:74;;11969:34;11965:1;11960:3;11956:11;11949:55;12035:3;12030:2;12025:3;12021:12;12014:25;12065:2;12060:3;12056:12;12049:19;;11855:219;;;:::o;12080:369::-;;12243:67;12307:2;12302:3;12243:67;:::i;:::-;12236:74;;12340:34;12336:1;12331:3;12327:11;12320:55;12406:7;12401:2;12396:3;12392:12;12385:29;12440:2;12435:3;12431:12;12424:19;;12226:223;;;:::o;12455:368::-;;12618:67;12682:2;12677:3;12618:67;:::i;:::-;12611:74;;12715:34;12711:1;12706:3;12702:11;12695:55;12781:6;12776:2;12771:3;12767:12;12760:28;12814:2;12809:3;12805:12;12798:19;;12601:222;;;:::o;12829:320::-;;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13089:24;13085:1;13080:3;13076:11;13069:45;13140:2;13135:3;13131:12;13124:19;;12975:174;;;:::o;13155:357::-;;13336:85;13418:2;13413:3;13336:85;:::i;:::-;13329:92;;13451:25;13447:1;13442:3;13438:11;13431:46;13503:2;13498:3;13494:12;13487:19;;13319:193;;;:::o;13518:369::-;;13681:67;13745:2;13740:3;13681:67;:::i;:::-;13674:74;;13778:34;13774:1;13769:3;13765:11;13758:55;13844:7;13839:2;13834:3;13830:12;13823:29;13878:2;13873:3;13869:12;13862:19;;13664:223;;;:::o;13893:351::-;;14074:85;14156:2;14151:3;14074:85;:::i;:::-;14067:92;;14189:19;14185:1;14180:3;14176:11;14169:40;14235:2;14230:3;14226:12;14219:19;;14057:187;;;:::o;14250:379::-;;14413:67;14477:2;14472:3;14413:67;:::i;:::-;14406:74;;14510:34;14506:1;14501:3;14497:11;14490:55;14576:17;14571:2;14566:3;14562:12;14555:39;14620:2;14615:3;14611:12;14604:19;;14396:233;;;:::o;14635:118::-;14722:24;14740:5;14722:24;:::i;:::-;14717:3;14710:37;14700:53;;:::o;14759:112::-;14842:22;14858:5;14842:22;:::i;:::-;14837:3;14830:35;14820:51;;:::o;14877:663::-;;15140:148;15284:3;15140:148;:::i;:::-;15133:155;;15298:75;15369:3;15360:6;15298:75;:::i;:::-;15398:2;15393:3;15389:12;15382:19;;15411:75;15482:3;15473:6;15411:75;:::i;:::-;15511:2;15506:3;15502:12;15495:19;;15531:3;15524:10;;15122:418;;;;;:::o;15546:967::-;;15950:148;16094:3;15950:148;:::i;:::-;15943:155;;16115:95;16206:3;16197:6;16115:95;:::i;:::-;16108:102;;16227:148;16371:3;16227:148;:::i;:::-;16220:155;;16392:95;16483:3;16474:6;16392:95;:::i;:::-;16385:102;;16504:3;16497:10;;15932:581;;;;;:::o;16519:222::-;;16650:2;16639:9;16635:18;16627:26;;16663:71;16731:1;16720:9;16716:17;16707:6;16663:71;:::i;:::-;16617:124;;;;:::o;16747:210::-;;16872:2;16861:9;16857:18;16849:26;;16885:65;16947:1;16936:9;16932:17;16923:6;16885:65;:::i;:::-;16839:118;;;;:::o;16963:222::-;;17094:2;17083:9;17079:18;17071:26;;17107:71;17175:1;17164:9;17160:17;17151:6;17107:71;:::i;:::-;17061:124;;;;:::o;17191:775::-;;17462:3;17451:9;17447:19;17439:27;;17476:71;17544:1;17533:9;17529:17;17520:6;17476:71;:::i;:::-;17557:72;17625:2;17614:9;17610:18;17601:6;17557:72;:::i;:::-;17639;17707:2;17696:9;17692:18;17683:6;17639:72;:::i;:::-;17721;17789:2;17778:9;17774:18;17765:6;17721:72;:::i;:::-;17803:73;17871:3;17860:9;17856:19;17847:6;17803:73;:::i;:::-;17886;17954:3;17943:9;17939:19;17930:6;17886:73;:::i;:::-;17429:537;;;;;;;;;:::o;17972:664::-;;18215:3;18204:9;18200:19;18192:27;;18229:71;18297:1;18286:9;18282:17;18273:6;18229:71;:::i;:::-;18310:72;18378:2;18367:9;18363:18;18354:6;18310:72;:::i;:::-;18392;18460:2;18449:9;18445:18;18436:6;18392:72;:::i;:::-;18474;18542:2;18531:9;18527:18;18518:6;18474:72;:::i;:::-;18556:73;18624:3;18613:9;18609:19;18600:6;18556:73;:::i;:::-;18182:454;;;;;;;;:::o;18642:545::-;;18853:3;18842:9;18838:19;18830:27;;18867:71;18935:1;18924:9;18920:17;18911:6;18867:71;:::i;:::-;18948:68;19012:2;19001:9;18997:18;18988:6;18948:68;:::i;:::-;19026:72;19094:2;19083:9;19079:18;19070:6;19026:72;:::i;:::-;19108;19176:2;19165:9;19161:18;19152:6;19108:72;:::i;:::-;18820:367;;;;;;;:::o;19193:313::-;;19344:2;19333:9;19329:18;19321:26;;19393:9;19387:4;19383:20;19379:1;19368:9;19364:17;19357:47;19421:78;19494:4;19485:6;19421:78;:::i;:::-;19413:86;;19311:195;;;;:::o;19512:419::-;;19716:2;19705:9;19701:18;19693:26;;19765:9;19759:4;19755:20;19751:1;19740:9;19736:17;19729:47;19793:131;19919:4;19793:131;:::i;:::-;19785:139;;19683:248;;;:::o;19937:419::-;;20141:2;20130:9;20126:18;20118:26;;20190:9;20184:4;20180:20;20176:1;20165:9;20161:17;20154:47;20218:131;20344:4;20218:131;:::i;:::-;20210:139;;20108:248;;;:::o;20362:419::-;;20566:2;20555:9;20551:18;20543:26;;20615:9;20609:4;20605:20;20601:1;20590:9;20586:17;20579:47;20643:131;20769:4;20643:131;:::i;:::-;20635:139;;20533:248;;;:::o;20787:419::-;;20991:2;20980:9;20976:18;20968:26;;21040:9;21034:4;21030:20;21026:1;21015:9;21011:17;21004:47;21068:131;21194:4;21068:131;:::i;:::-;21060:139;;20958:248;;;:::o;21212:419::-;;21416:2;21405:9;21401:18;21393:26;;21465:9;21459:4;21455:20;21451:1;21440:9;21436:17;21429:47;21493:131;21619:4;21493:131;:::i;:::-;21485:139;;21383:248;;;:::o;21637:419::-;;21841:2;21830:9;21826:18;21818:26;;21890:9;21884:4;21880:20;21876:1;21865:9;21861:17;21854:47;21918:131;22044:4;21918:131;:::i;:::-;21910:139;;21808:248;;;:::o;22062:419::-;;22266:2;22255:9;22251:18;22243:26;;22315:9;22309:4;22305:20;22301:1;22290:9;22286:17;22279:47;22343:131;22469:4;22343:131;:::i;:::-;22335:139;;22233:248;;;:::o;22487:419::-;;22691:2;22680:9;22676:18;22668:26;;22740:9;22734:4;22730:20;22726:1;22715:9;22711:17;22704:47;22768:131;22894:4;22768:131;:::i;:::-;22760:139;;22658:248;;;:::o;22912:419::-;;23116:2;23105:9;23101:18;23093:26;;23165:9;23159:4;23155:20;23151:1;23140:9;23136:17;23129:47;23193:131;23319:4;23193:131;:::i;:::-;23185:139;;23083:248;;;:::o;23337:419::-;;23541:2;23530:9;23526:18;23518:26;;23590:9;23584:4;23580:20;23576:1;23565:9;23561:17;23554:47;23618:131;23744:4;23618:131;:::i;:::-;23610:139;;23508:248;;;:::o;23762:419::-;;23966:2;23955:9;23951:18;23943:26;;24015:9;24009:4;24005:20;24001:1;23990:9;23986:17;23979:47;24043:131;24169:4;24043:131;:::i;:::-;24035:139;;23933:248;;;:::o;24187:419::-;;24391:2;24380:9;24376:18;24368:26;;24440:9;24434:4;24430:20;24426:1;24415:9;24411:17;24404:47;24468:131;24594:4;24468:131;:::i;:::-;24460:139;;24358:248;;;:::o;24612:419::-;;24816:2;24805:9;24801:18;24793:26;;24865:9;24859:4;24855:20;24851:1;24840:9;24836:17;24829:47;24893:131;25019:4;24893:131;:::i;:::-;24885:139;;24783:248;;;:::o;25037:419::-;;25241:2;25230:9;25226:18;25218:26;;25290:9;25284:4;25280:20;25276:1;25265:9;25261:17;25254:47;25318:131;25444:4;25318:131;:::i;:::-;25310:139;;25208:248;;;:::o;25462:419::-;;25666:2;25655:9;25651:18;25643:26;;25715:9;25709:4;25705:20;25701:1;25690:9;25686:17;25679:47;25743:131;25869:4;25743:131;:::i;:::-;25735:139;;25633:248;;;:::o;25887:419::-;;26091:2;26080:9;26076:18;26068:26;;26140:9;26134:4;26130:20;26126:1;26115:9;26111:17;26104:47;26168:131;26294:4;26168:131;:::i;:::-;26160:139;;26058:248;;;:::o;26312:419::-;;26516:2;26505:9;26501:18;26493:26;;26565:9;26559:4;26555:20;26551:1;26540:9;26536:17;26529:47;26593:131;26719:4;26593:131;:::i;:::-;26585:139;;26483:248;;;:::o;26737:419::-;;26941:2;26930:9;26926:18;26918:26;;26990:9;26984:4;26980:20;26976:1;26965:9;26961:17;26954:47;27018:131;27144:4;27018:131;:::i;:::-;27010:139;;26908:248;;;:::o;27162:419::-;;27366:2;27355:9;27351:18;27343:26;;27415:9;27409:4;27405:20;27401:1;27390:9;27386:17;27379:47;27443:131;27569:4;27443:131;:::i;:::-;27435:139;;27333:248;;;:::o;27587:419::-;;27791:2;27780:9;27776:18;27768:26;;27840:9;27834:4;27830:20;27826:1;27815:9;27811:17;27804:47;27868:131;27994:4;27868:131;:::i;:::-;27860:139;;27758:248;;;:::o;28012:419::-;;28216:2;28205:9;28201:18;28193:26;;28265:9;28259:4;28255:20;28251:1;28240:9;28236:17;28229:47;28293:131;28419:4;28293:131;:::i;:::-;28285:139;;28183:248;;;:::o;28437:222::-;;28568:2;28557:9;28553:18;28545:26;;28581:71;28649:1;28638:9;28634:17;28625:6;28581:71;:::i;:::-;28535:124;;;;:::o;28665:214::-;;28792:2;28781:9;28777:18;28769:26;;28805:67;28869:1;28858:9;28854:17;28845:6;28805:67;:::i;:::-;28759:120;;;;:::o;28885:99::-;;28971:5;28965:12;28955:22;;28944:40;;;:::o;28990:169::-;;29108:6;29103:3;29096:19;29148:4;29143:3;29139:14;29124:29;;29086:73;;;;:::o;29165:148::-;;29304:3;29289:18;;29279:34;;;;:::o;29319:305::-;;29378:20;29396:1;29378:20;:::i;:::-;29373:25;;29412:20;29430:1;29412:20;:::i;:::-;29407:25;;29566:1;29498:66;29494:74;29491:1;29488:81;29485:2;;;29572:18;;:::i;:::-;29485:2;29616:1;29613;29609:9;29602:16;;29363:261;;;;:::o;29630:185::-;;29687:20;29705:1;29687:20;:::i;:::-;29682:25;;29721:20;29739:1;29721:20;:::i;:::-;29716:25;;29760:1;29750:2;;29765:18;;:::i;:::-;29750:2;29807:1;29804;29800:9;29795:14;;29672:143;;;;:::o;29821:348::-;;29884:20;29902:1;29884:20;:::i;:::-;29879:25;;29918:20;29936:1;29918:20;:::i;:::-;29913:25;;30106:1;30038:66;30034:74;30031:1;30028:81;30023:1;30016:9;30009:17;30005:105;30002:2;;;30113:18;;:::i;:::-;30002:2;30161:1;30158;30154:9;30143:20;;29869:300;;;;:::o;30175:191::-;;30235:20;30253:1;30235:20;:::i;:::-;30230:25;;30269:20;30287:1;30269:20;:::i;:::-;30264:25;;30308:1;30305;30302:8;30299:2;;;30313:18;;:::i;:::-;30299:2;30358:1;30355;30351:9;30343:17;;30220:146;;;;:::o;30372:96::-;;30438:24;30456:5;30438:24;:::i;:::-;30427:35;;30417:51;;;:::o;30474:90::-;;30551:5;30544:13;30537:21;30526:32;;30516:48;;;:::o;30570:77::-;;30636:5;30625:16;;30615:32;;;:::o;30653:149::-;;30729:66;30722:5;30718:78;30707:89;;30697:105;;;:::o;30808:126::-;;30885:42;30878:5;30874:54;30863:65;;30853:81;;;:::o;30940:77::-;;31006:5;30995:16;;30985:32;;;:::o;31023:86::-;;31098:4;31091:5;31087:16;31076:27;;31066:43;;;:::o;31115:307::-;31183:1;31193:113;31207:6;31204:1;31201:13;31193:113;;;31292:1;31287:3;31283:11;31277:18;31273:1;31268:3;31264:11;31257:39;31229:2;31226:1;31222:10;31217:15;;31193:113;;;31324:6;31321:1;31318:13;31315:2;;;31404:1;31395:6;31390:3;31386:16;31379:27;31315:2;31164:258;;;;:::o;31428:171::-;;31490:24;31508:5;31490:24;:::i;:::-;31481:33;;31536:4;31529:5;31526:15;31523:2;;;31544:18;;:::i;:::-;31523:2;31591:1;31584:5;31580:13;31573:20;;31471:128;;;:::o;31605:320::-;;31686:1;31680:4;31676:12;31666:22;;31733:1;31727:4;31723:12;31754:18;31744:2;;31810:4;31802:6;31798:17;31788:27;;31744:2;31872;31864:6;31861:14;31841:18;31838:38;31835:2;;;31891:18;;:::i;:::-;31835:2;31656:269;;;;:::o;31931:79::-;;31999:5;31988:16;;31978:32;;;:::o;32016:176::-;;32065:20;32083:1;32065:20;:::i;:::-;32060:25;;32099:20;32117:1;32099:20;:::i;:::-;32094:25;;32138:1;32128:2;;32143:18;;:::i;:::-;32128:2;32184:1;32181;32177:9;32172:14;;32050:142;;;;:::o;32198:180::-;32246:77;32243:1;32236:88;32343:4;32340:1;32333:15;32367:4;32364:1;32357:15;32384:180;32432:77;32429:1;32422:88;32529:4;32526:1;32519:15;32553:4;32550:1;32543:15;32570:180;32618:77;32615:1;32608:88;32715:4;32712:1;32705:15;32739:4;32736:1;32729:15;32756:102;;32848:2;32844:7;32839:2;32832:5;32828:14;32824:28;32814:38;;32804:54;;;:::o;32864:122::-;32937:24;32955:5;32937:24;:::i;:::-;32930:5;32927:35;32917:2;;32976:1;32973;32966:12;32917:2;32907:79;:::o;32992:122::-;33065:24;33083:5;33065:24;:::i;:::-;33058:5;33055:35;33045:2;;33104:1;33101;33094:12;33045:2;33035:79;:::o;33120:120::-;33192:23;33209:5;33192:23;:::i;:::-;33185:5;33182:34;33172:2;;33230:1;33227;33220:12;33172:2;33162:78;:::o;33246:122::-;33319:24;33337:5;33319:24;:::i;:::-;33312:5;33309:35;33299:2;;33358:1;33355;33348:12;33299:2;33289:79;:::o;33374:118::-;33445:22;33461:5;33445:22;:::i;:::-;33438:5;33435:33;33425:2;;33482:1;33479;33472:12;33425:2;33415:77;:::o

Swarm Source

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