OjamuToken
Deploy on AlchemyContract Information
Summary: The following smart contract is called OjamuToken and it is an ERC20 token with snapshot functionality and access control. It has a constant INITIAL_SUPPLY of 100 million tokens and a BURNER_ROLE that allows certain addresses to burn tokens. The contract also has a snapshot function that can only be called by an address with the DEFAULT_ADMIN_ROLE.
More Info
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @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 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) {
return msg.data;
}
}
/**
* @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 default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
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");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
/**
* @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 Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a / b + (a % b == 0 ? 0 : 1);
}
}
/**
* @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;
}
}
}
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library 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;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
/**
* @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.
*
* NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
* return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
* function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
*
* Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
* alternative consider {ERC20Votes}.
*
* ==== 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 = _getCurrentSnapshotId();
emit Snapshot(currentId);
return currentId;
}
/**
* @dev Get the current snapshotId
*/
function _getCurrentSnapshotId() internal view virtual returns (uint256) {
return _currentSnapshotId.current();
}
/**
* @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");
require(snapshotId <= _getCurrentSnapshotId(), "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 = _getCurrentSnapshotId();
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 String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
/**
* @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 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());
}
}
}
contract OjamuToken is ERC20Snapshot, AccessControl {
uint256 constant INITIAL_SUPPLY = 100000000 * (10**18);
bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
constructor() ERC20("Ojamu Token", "OJA") {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(BURNER_ROLE, _msgSender());
_mint(_msgSender(), INITIAL_SUPPLY);
}
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public {
require(hasRole(BURNER_ROLE, msg.sender), "Caller is not BURNER_ROLE");
_burn(_msgSender(), amount);
}
/**
* @dev Creates a new snapshot and returns its snapshot id.
*
* Emits a {Snapshot} event that contains the same id.
*/
function snapshot() public {
require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not DEFAULT_ADMIN_ROLE");
_snapshot();
}
}
[{"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":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"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_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":[],"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":"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":[],"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":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"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_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":[],"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":"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"}]
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4f6a616d7520546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4a41000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000727565b508060049080519060200190620000af92919062000727565b505050620000d66000801b620000ca6200014960201b60201c565b6200015160201b60201c565b620001177f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486200010b6200014960201b60201c565b6200015160201b60201c565b620001436200012b6200014960201b60201c565b6a52b7d2dcc80cd2e40000006200016760201b60201c565b620009ed565b600033905090565b620001638282620002e060201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d1906200080f565b60405180910390fd5b620001ee60008383620003d260201b60201c565b80600260008282546200020291906200085f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200025991906200085f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c0919062000831565b60405180910390a3620002dc60008383620004cd60201b60201c565b5050565b620002f28282620004d260201b60201c565b620003ce5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003736200014960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003ea8383836200053d60201b62000d0b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620004475762000431826200054260201b60201c565b62000441620005a560201b60201c565b620004c8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a4576200048e836200054260201b60201c565b6200049e620005a560201b60201c565b620004c7565b620004b5836200054260201b60201c565b620004c6826200054260201b60201c565b5b5b505050565b505050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b620005a2600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200059683620005c960201b60201c565b6200061160201b60201c565b50565b620005c76006620005bb6200069d60201b60201c565b6200061160201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000623620006a760201b60201c565b9050806200063a84600001620006c560201b60201c565b1015620006985782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b6000620006c060086200071960201b62000d101760201c565b905090565b60008082805490501415620006de576000905062000714565b8160018380549050620006f29190620008bc565b8154811062000706576200070562000995565b5b906000526020600020015490505b919050565b600081600001549050919050565b828054620007359062000901565b90600052602060002090601f016020900481019282620007595760008555620007a5565b82601f106200077457805160ff1916838001178555620007a5565b82800160010185558215620007a5579182015b82811115620007a457825182559160200191906001019062000787565b5b509050620007b49190620007b8565b5090565b5b80821115620007d3576000816000905550600101620007b9565b5090565b6000620007e6601f836200084e565b9150620007f382620009c4565b602082019050919050565b6200080981620008f7565b82525050565b600060208201905081810360008301526200082a81620007d7565b9050919050565b6000602082019050620008486000830184620007fe565b92915050565b600082825260208201905092915050565b60006200086c82620008f7565b91506200087983620008f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008b157620008b062000937565b5b828201905092915050565b6000620008c982620008f7565b9150620008d683620008f7565b925082821015620008ec57620008eb62000937565b5b828203905092915050565b6000819050919050565b600060028204905060018216806200091a57607f821691505b6020821081141562000931576200093062000966565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612cfc80620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063981b24d01161007c578063981b24d0146103c6578063a217fddf146103f6578063a457c2d714610414578063a9059cbb14610444578063d547741f14610474578063dd62ed3e146104905761014d565b806342966c68146102f25780634ee2cd7e1461030e57806370a082311461033e57806391d148541461036e57806395d89b411461039e5780639711715a146103bc5761014d565b8063248a9ca311610115578063248a9ca31461021e578063282c51f31461024e5780632f2ff15d1461026c578063313ce5671461028857806336568abe146102a657806339509351146102c25761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611eb2565b6104c0565b604051610179919061223f565b60405180910390f35b61018a61053a565b6040516101979190612275565b60405180910390f35b6101ba60048036038101906101b59190611e05565b6105cc565b6040516101c7919061223f565b60405180910390f35b6101d86105ea565b6040516101e59190612477565b60405180910390f35b61020860048036038101906102039190611db2565b6105f4565b604051610215919061223f565b60405180910390f35b61023860048036038101906102339190611e45565b6106ec565b604051610245919061225a565b60405180910390f35b61025661070c565b604051610263919061225a565b60405180910390f35b61028660048036038101906102819190611e72565b610730565b005b610290610759565b60405161029d9190612492565b60405180910390f35b6102c060048036038101906102bb9190611e72565b610762565b005b6102dc60048036038101906102d79190611e05565b6107e5565b6040516102e9919061223f565b60405180910390f35b61030c60048036038101906103079190611edf565b610891565b005b61032860048036038101906103239190611e05565b61090e565b6040516103359190612477565b60405180910390f35b61035860048036038101906103539190611d45565b61097e565b6040516103659190612477565b60405180910390f35b61038860048036038101906103839190611e72565b6109c6565b604051610395919061223f565b60405180910390f35b6103a6610a31565b6040516103b39190612275565b60405180910390f35b6103c4610ac3565b005b6103e060048036038101906103db9190611edf565b610b1a565b6040516103ed9190612477565b60405180910390f35b6103fe610b4b565b60405161040b919061225a565b60405180910390f35b61042e60048036038101906104299190611e05565b610b52565b60405161043b919061223f565b60405180910390f35b61045e60048036038101906104599190611e05565b610c3d565b60405161046b919061223f565b60405180910390f35b61048e60048036038101906104899190611e72565b610c5b565b005b6104aa60048036038101906104a59190611d72565b610c84565b6040516104b79190612477565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610533575061053282610d1e565b5b9050919050565b606060038054610549906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906126d1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105e06105d9610d88565b8484610d90565b6001905092915050565b6000600254905090565b6000610601848484610f5b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061064c610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c390612357565b60405180910390fd5b6106e0856106d8610d88565b858403610d90565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610739826106ec565b61074a81610745610d88565b6111dc565b6107548383611279565b505050565b60006012905090565b61076a610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90612457565b60405180910390fd5b6107e1828261135a565b5050565b60006108876107f2610d88565b848460016000610800610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088291906124d4565b610d90565b6001905092915050565b6108bb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336109c6565b6108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612377565b60405180910390fd5b61090b610905610d88565b8261143c565b50565b600080600061095b84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611613565b91509150816109725761096d8561097e565b610974565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a40906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c906126d1565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610ad06000801b336109c6565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612417565b60405180910390fd5b610b17611709565b50565b6000806000610b2a846006611613565b9150915081610b4057610b3b6105ea565b610b42565b805b92505050919050565b6000801b81565b60008060016000610b61610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612437565b60405180910390fd5b610c32610c29610d88565b85858403610d90565b600191505092915050565b6000610c51610c4a610d88565b8484610f5b565b6001905092915050565b610c64826106ec565b610c7581610c70610d88565b6111dc565b610c7f838361135a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612317565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4e9190612477565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906123b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906122d7565b60405180910390fd5b61104683838361175f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612337565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115f91906124d4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c39190612477565b60405180910390a36111d6848484611819565b50505050565b6111e682826109c6565b6112755761120b8173ffffffffffffffffffffffffffffffffffffffff16601461181e565b6112198360001c602061181e565b60405160200161122a929190612205565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9190612275565b60405180910390fd5b5050565b61128382826109c6565b6113565760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112fb610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61136482826109c6565b156114385760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dd610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612397565b60405180910390fd5b6114b88260008361175f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906122f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461159591906125b5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fa9190612477565b60405180910390a361160e83600084611819565b505050565b60008060008411611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906123f7565b60405180910390fd5b611661611a5a565b8411156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612297565b60405180910390fd5b60006116bb8585600001611a6b90919063ffffffff16565b905083600001805490508114156116d9576000809250925050611702565b60018460010182815481106116f1576116f06127c1565b5b906000526020600020015492509250505b9250929050565b60006117156008611b45565b600061171f611a5a565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516117509190612477565b60405180910390a18091505090565b61176a838383610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b5576117a882611b5b565b6117b0611bae565b611814565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611800576117f383611b5b565b6117fb611bae565b611813565b61180983611b5b565b61181282611b5b565b5b5b505050565b505050565b606060006002836002611831919061255b565b61183b91906124d4565b67ffffffffffffffff811115611854576118536127f0565b5b6040519080825280601f01601f1916602001820160405280156118865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118be576118bd6127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611922576119216127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611962919061255b565b61196c91906124d4565b90505b6001811115611a0c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119ae576119ad6127c1565b5b1a60f81b8282815181106119c5576119c46127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a05906126a7565b905061196f565b5060008414611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906122b7565b60405180910390fd5b8091505092915050565b6000611a666008610d10565b905090565b60008083805490501415611a825760009050611b3f565b600080848054905090505b80821015611ae6576000611aa18383611bc2565b905084868281548110611ab757611ab66127c1565b5b90600052602060002001541115611ad057809150611ae0565b600181611add91906124d4565b92505b50611a8d565b600082118015611b1e57508385600184611b0091906125b5565b81548110611b1157611b106127c1565b5b9060005260206000200154145b15611b3957600182611b3091906125b5565b92505050611b3f565b81925050505b92915050565b6001816000016000828254019250508190555050565b611bab600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ba68361097e565b611c29565b50565b611bc06006611bbb6105ea565b611c29565b565b600060028083611bd29190612703565b600285611bdf9190612703565b611be991906124d4565b611bf3919061252a565b600283611c00919061252a565b600285611c0d919061252a565b611c1791906124d4565b611c2191906124d4565b905092915050565b6000611c33611a5a565b905080611c4284600001611ca4565b1015611c9f5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611cbb5760009050611cec565b8160018380549050611ccd91906125b5565b81548110611cde57611cdd6127c1565b5b906000526020600020015490505b919050565b600081359050611d0081612c6a565b92915050565b600081359050611d1581612c81565b92915050565b600081359050611d2a81612c98565b92915050565b600081359050611d3f81612caf565b92915050565b600060208284031215611d5b57611d5a61281f565b5b6000611d6984828501611cf1565b91505092915050565b60008060408385031215611d8957611d8861281f565b5b6000611d9785828601611cf1565b9250506020611da885828601611cf1565b9150509250929050565b600080600060608486031215611dcb57611dca61281f565b5b6000611dd986828701611cf1565b9350506020611dea86828701611cf1565b9250506040611dfb86828701611d30565b9150509250925092565b60008060408385031215611e1c57611e1b61281f565b5b6000611e2a85828601611cf1565b9250506020611e3b85828601611d30565b9150509250929050565b600060208284031215611e5b57611e5a61281f565b5b6000611e6984828501611d06565b91505092915050565b60008060408385031215611e8957611e8861281f565b5b6000611e9785828601611d06565b9250506020611ea885828601611cf1565b9150509250929050565b600060208284031215611ec857611ec761281f565b5b6000611ed684828501611d1b565b91505092915050565b600060208284031215611ef557611ef461281f565b5b6000611f0384828501611d30565b91505092915050565b611f15816125fb565b82525050565b611f2481612607565b82525050565b6000611f35826124ad565b611f3f81856124b8565b9350611f4f818560208601612674565b611f5881612824565b840191505092915050565b6000611f6e826124ad565b611f7881856124c9565b9350611f88818560208601612674565b80840191505092915050565b6000611fa1601d836124b8565b9150611fac82612835565b602082019050919050565b6000611fc46020836124b8565b9150611fcf8261285e565b602082019050919050565b6000611fe76023836124b8565b9150611ff282612887565b604082019050919050565b600061200a6022836124b8565b9150612015826128d6565b604082019050919050565b600061202d6022836124b8565b915061203882612925565b604082019050919050565b60006120506026836124b8565b915061205b82612974565b604082019050919050565b60006120736028836124b8565b915061207e826129c3565b604082019050919050565b60006120966019836124b8565b91506120a182612a12565b602082019050919050565b60006120b96021836124b8565b91506120c482612a3b565b604082019050919050565b60006120dc6025836124b8565b91506120e782612a8a565b604082019050919050565b60006120ff6024836124b8565b915061210a82612ad9565b604082019050919050565b60006121226016836124b8565b915061212d82612b28565b602082019050919050565b60006121456017836124c9565b915061215082612b51565b601782019050919050565b60006121686020836124b8565b915061217382612b7a565b602082019050919050565b600061218b6025836124b8565b915061219682612ba3565b604082019050919050565b60006121ae6011836124c9565b91506121b982612bf2565b601182019050919050565b60006121d1602f836124b8565b91506121dc82612c1b565b604082019050919050565b6121f08161265d565b82525050565b6121ff81612667565b82525050565b600061221082612138565b915061221c8285611f63565b9150612227826121a1565b91506122338284611f63565b91508190509392505050565b60006020820190506122546000830184611f0c565b92915050565b600060208201905061226f6000830184611f1b565b92915050565b6000602082019050818103600083015261228f8184611f2a565b905092915050565b600060208201905081810360008301526122b081611f94565b9050919050565b600060208201905081810360008301526122d081611fb7565b9050919050565b600060208201905081810360008301526122f081611fda565b9050919050565b6000602082019050818103600083015261231081611ffd565b9050919050565b6000602082019050818103600083015261233081612020565b9050919050565b6000602082019050818103600083015261235081612043565b9050919050565b6000602082019050818103600083015261237081612066565b9050919050565b6000602082019050818103600083015261239081612089565b9050919050565b600060208201905081810360008301526123b0816120ac565b9050919050565b600060208201905081810360008301526123d0816120cf565b9050919050565b600060208201905081810360008301526123f0816120f2565b9050919050565b6000602082019050818103600083015261241081612115565b9050919050565b600060208201905081810360008301526124308161215b565b9050919050565b600060208201905081810360008301526124508161217e565b9050919050565b60006020820190508181036000830152612470816121c4565b9050919050565b600060208201905061248c60008301846121e7565b92915050565b60006020820190506124a760008301846121f6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124df8261265d565b91506124ea8361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561251f5761251e612734565b5b828201905092915050565b60006125358261265d565b91506125408361265d565b9250826125505761254f612763565b5b828204905092915050565b60006125668261265d565b91506125718361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125aa576125a9612734565b5b828202905092915050565b60006125c08261265d565b91506125cb8361265d565b9250828210156125de576125dd612734565b5b828203905092915050565b60006125f48261263d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612692578082015181840152602081019050612677565b838111156126a1576000848401525b50505050565b60006126b28261265d565b915060008214156126c6576126c5612734565b5b600182039050919050565b600060028204905060018216806126e957607f821691505b602082108114156126fd576126fc612792565b5b50919050565b600061270e8261265d565b91506127198361265d565b92508261272957612728612763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74204255524e45525f524f4c4500000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616c6c6572206973206e6f742044454641554c545f41444d494e5f524f4c45600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612c73816125e9565b8114612c7e57600080fd5b50565b612c8a81612607565b8114612c9557600080fd5b50565b612ca181612611565b8114612cac57600080fd5b50565b612cb88161265d565b8114612cc357600080fd5b5056fea26469706673582212207e194fa2fbccd89f92207af5b16f68d26fd1047fd0a58ac7bb3715b5f7f75a4d64736f6c63430008060033
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4f6a616d7520546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4a41000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000727565b508060049080519060200190620000af92919062000727565b505050620000d66000801b620000ca6200014960201b60201c565b6200015160201b60201c565b620001177f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486200010b6200014960201b60201c565b6200015160201b60201c565b620001436200012b6200014960201b60201c565b6a52b7d2dcc80cd2e40000006200016760201b60201c565b620009ed565b600033905090565b620001638282620002e060201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d1906200080f565b60405180910390fd5b620001ee60008383620003d260201b60201c565b80600260008282546200020291906200085f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200025991906200085f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c0919062000831565b60405180910390a3620002dc60008383620004cd60201b60201c565b5050565b620002f28282620004d260201b60201c565b620003ce5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003736200014960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003ea8383836200053d60201b62000d0b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620004475762000431826200054260201b60201c565b62000441620005a560201b60201c565b620004c8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a4576200048e836200054260201b60201c565b6200049e620005a560201b60201c565b620004c7565b620004b5836200054260201b60201c565b620004c6826200054260201b60201c565b5b5b505050565b505050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b620005a2600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200059683620005c960201b60201c565b6200061160201b60201c565b50565b620005c76006620005bb6200069d60201b60201c565b6200061160201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000623620006a760201b60201c565b9050806200063a84600001620006c560201b60201c565b1015620006985782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b6000620006c060086200071960201b62000d101760201c565b905090565b60008082805490501415620006de576000905062000714565b8160018380549050620006f29190620008bc565b8154811062000706576200070562000995565b5b906000526020600020015490505b919050565b600081600001549050919050565b828054620007359062000901565b90600052602060002090601f016020900481019282620007595760008555620007a5565b82601f106200077457805160ff1916838001178555620007a5565b82800160010185558215620007a5579182015b82811115620007a457825182559160200191906001019062000787565b5b509050620007b49190620007b8565b5090565b5b80821115620007d3576000816000905550600101620007b9565b5090565b6000620007e6601f836200084e565b9150620007f382620009c4565b602082019050919050565b6200080981620008f7565b82525050565b600060208201905081810360008301526200082a81620007d7565b9050919050565b6000602082019050620008486000830184620007fe565b92915050565b600082825260208201905092915050565b60006200086c82620008f7565b91506200087983620008f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008b157620008b062000937565b5b828201905092915050565b6000620008c982620008f7565b9150620008d683620008f7565b925082821015620008ec57620008eb62000937565b5b828203905092915050565b6000819050919050565b600060028204905060018216806200091a57607f821691505b6020821081141562000931576200093062000966565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612cfc80620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063981b24d01161007c578063981b24d0146103c6578063a217fddf146103f6578063a457c2d714610414578063a9059cbb14610444578063d547741f14610474578063dd62ed3e146104905761014d565b806342966c68146102f25780634ee2cd7e1461030e57806370a082311461033e57806391d148541461036e57806395d89b411461039e5780639711715a146103bc5761014d565b8063248a9ca311610115578063248a9ca31461021e578063282c51f31461024e5780632f2ff15d1461026c578063313ce5671461028857806336568abe146102a657806339509351146102c25761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611eb2565b6104c0565b604051610179919061223f565b60405180910390f35b61018a61053a565b6040516101979190612275565b60405180910390f35b6101ba60048036038101906101b59190611e05565b6105cc565b6040516101c7919061223f565b60405180910390f35b6101d86105ea565b6040516101e59190612477565b60405180910390f35b61020860048036038101906102039190611db2565b6105f4565b604051610215919061223f565b60405180910390f35b61023860048036038101906102339190611e45565b6106ec565b604051610245919061225a565b60405180910390f35b61025661070c565b604051610263919061225a565b60405180910390f35b61028660048036038101906102819190611e72565b610730565b005b610290610759565b60405161029d9190612492565b60405180910390f35b6102c060048036038101906102bb9190611e72565b610762565b005b6102dc60048036038101906102d79190611e05565b6107e5565b6040516102e9919061223f565b60405180910390f35b61030c60048036038101906103079190611edf565b610891565b005b61032860048036038101906103239190611e05565b61090e565b6040516103359190612477565b60405180910390f35b61035860048036038101906103539190611d45565b61097e565b6040516103659190612477565b60405180910390f35b61038860048036038101906103839190611e72565b6109c6565b604051610395919061223f565b60405180910390f35b6103a6610a31565b6040516103b39190612275565b60405180910390f35b6103c4610ac3565b005b6103e060048036038101906103db9190611edf565b610b1a565b6040516103ed9190612477565b60405180910390f35b6103fe610b4b565b60405161040b919061225a565b60405180910390f35b61042e60048036038101906104299190611e05565b610b52565b60405161043b919061223f565b60405180910390f35b61045e60048036038101906104599190611e05565b610c3d565b60405161046b919061223f565b60405180910390f35b61048e60048036038101906104899190611e72565b610c5b565b005b6104aa60048036038101906104a59190611d72565b610c84565b6040516104b79190612477565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610533575061053282610d1e565b5b9050919050565b606060038054610549906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906126d1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105e06105d9610d88565b8484610d90565b6001905092915050565b6000600254905090565b6000610601848484610f5b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061064c610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c390612357565b60405180910390fd5b6106e0856106d8610d88565b858403610d90565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610739826106ec565b61074a81610745610d88565b6111dc565b6107548383611279565b505050565b60006012905090565b61076a610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90612457565b60405180910390fd5b6107e1828261135a565b5050565b60006108876107f2610d88565b848460016000610800610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088291906124d4565b610d90565b6001905092915050565b6108bb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336109c6565b6108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612377565b60405180910390fd5b61090b610905610d88565b8261143c565b50565b600080600061095b84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611613565b91509150816109725761096d8561097e565b610974565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a40906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c906126d1565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610ad06000801b336109c6565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612417565b60405180910390fd5b610b17611709565b50565b6000806000610b2a846006611613565b9150915081610b4057610b3b6105ea565b610b42565b805b92505050919050565b6000801b81565b60008060016000610b61610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612437565b60405180910390fd5b610c32610c29610d88565b85858403610d90565b600191505092915050565b6000610c51610c4a610d88565b8484610f5b565b6001905092915050565b610c64826106ec565b610c7581610c70610d88565b6111dc565b610c7f838361135a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612317565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4e9190612477565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906123b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906122d7565b60405180910390fd5b61104683838361175f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612337565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115f91906124d4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c39190612477565b60405180910390a36111d6848484611819565b50505050565b6111e682826109c6565b6112755761120b8173ffffffffffffffffffffffffffffffffffffffff16601461181e565b6112198360001c602061181e565b60405160200161122a929190612205565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9190612275565b60405180910390fd5b5050565b61128382826109c6565b6113565760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112fb610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61136482826109c6565b156114385760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dd610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612397565b60405180910390fd5b6114b88260008361175f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906122f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461159591906125b5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fa9190612477565b60405180910390a361160e83600084611819565b505050565b60008060008411611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906123f7565b60405180910390fd5b611661611a5a565b8411156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612297565b60405180910390fd5b60006116bb8585600001611a6b90919063ffffffff16565b905083600001805490508114156116d9576000809250925050611702565b60018460010182815481106116f1576116f06127c1565b5b906000526020600020015492509250505b9250929050565b60006117156008611b45565b600061171f611a5a565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516117509190612477565b60405180910390a18091505090565b61176a838383610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b5576117a882611b5b565b6117b0611bae565b611814565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611800576117f383611b5b565b6117fb611bae565b611813565b61180983611b5b565b61181282611b5b565b5b5b505050565b505050565b606060006002836002611831919061255b565b61183b91906124d4565b67ffffffffffffffff811115611854576118536127f0565b5b6040519080825280601f01601f1916602001820160405280156118865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118be576118bd6127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611922576119216127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611962919061255b565b61196c91906124d4565b90505b6001811115611a0c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119ae576119ad6127c1565b5b1a60f81b8282815181106119c5576119c46127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a05906126a7565b905061196f565b5060008414611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906122b7565b60405180910390fd5b8091505092915050565b6000611a666008610d10565b905090565b60008083805490501415611a825760009050611b3f565b600080848054905090505b80821015611ae6576000611aa18383611bc2565b905084868281548110611ab757611ab66127c1565b5b90600052602060002001541115611ad057809150611ae0565b600181611add91906124d4565b92505b50611a8d565b600082118015611b1e57508385600184611b0091906125b5565b81548110611b1157611b106127c1565b5b9060005260206000200154145b15611b3957600182611b3091906125b5565b92505050611b3f565b81925050505b92915050565b6001816000016000828254019250508190555050565b611bab600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ba68361097e565b611c29565b50565b611bc06006611bbb6105ea565b611c29565b565b600060028083611bd29190612703565b600285611bdf9190612703565b611be991906124d4565b611bf3919061252a565b600283611c00919061252a565b600285611c0d919061252a565b611c1791906124d4565b611c2191906124d4565b905092915050565b6000611c33611a5a565b905080611c4284600001611ca4565b1015611c9f5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611cbb5760009050611cec565b8160018380549050611ccd91906125b5565b81548110611cde57611cdd6127c1565b5b906000526020600020015490505b919050565b600081359050611d0081612c6a565b92915050565b600081359050611d1581612c81565b92915050565b600081359050611d2a81612c98565b92915050565b600081359050611d3f81612caf565b92915050565b600060208284031215611d5b57611d5a61281f565b5b6000611d6984828501611cf1565b91505092915050565b60008060408385031215611d8957611d8861281f565b5b6000611d9785828601611cf1565b9250506020611da885828601611cf1565b9150509250929050565b600080600060608486031215611dcb57611dca61281f565b5b6000611dd986828701611cf1565b9350506020611dea86828701611cf1565b9250506040611dfb86828701611d30565b9150509250925092565b60008060408385031215611e1c57611e1b61281f565b5b6000611e2a85828601611cf1565b9250506020611e3b85828601611d30565b9150509250929050565b600060208284031215611e5b57611e5a61281f565b5b6000611e6984828501611d06565b91505092915050565b60008060408385031215611e8957611e8861281f565b5b6000611e9785828601611d06565b9250506020611ea885828601611cf1565b9150509250929050565b600060208284031215611ec857611ec761281f565b5b6000611ed684828501611d1b565b91505092915050565b600060208284031215611ef557611ef461281f565b5b6000611f0384828501611d30565b91505092915050565b611f15816125fb565b82525050565b611f2481612607565b82525050565b6000611f35826124ad565b611f3f81856124b8565b9350611f4f818560208601612674565b611f5881612824565b840191505092915050565b6000611f6e826124ad565b611f7881856124c9565b9350611f88818560208601612674565b80840191505092915050565b6000611fa1601d836124b8565b9150611fac82612835565b602082019050919050565b6000611fc46020836124b8565b9150611fcf8261285e565b602082019050919050565b6000611fe76023836124b8565b9150611ff282612887565b604082019050919050565b600061200a6022836124b8565b9150612015826128d6565b604082019050919050565b600061202d6022836124b8565b915061203882612925565b604082019050919050565b60006120506026836124b8565b915061205b82612974565b604082019050919050565b60006120736028836124b8565b915061207e826129c3565b604082019050919050565b60006120966019836124b8565b91506120a182612a12565b602082019050919050565b60006120b96021836124b8565b91506120c482612a3b565b604082019050919050565b60006120dc6025836124b8565b91506120e782612a8a565b604082019050919050565b60006120ff6024836124b8565b915061210a82612ad9565b604082019050919050565b60006121226016836124b8565b915061212d82612b28565b602082019050919050565b60006121456017836124c9565b915061215082612b51565b601782019050919050565b60006121686020836124b8565b915061217382612b7a565b602082019050919050565b600061218b6025836124b8565b915061219682612ba3565b604082019050919050565b60006121ae6011836124c9565b91506121b982612bf2565b601182019050919050565b60006121d1602f836124b8565b91506121dc82612c1b565b604082019050919050565b6121f08161265d565b82525050565b6121ff81612667565b82525050565b600061221082612138565b915061221c8285611f63565b9150612227826121a1565b91506122338284611f63565b91508190509392505050565b60006020820190506122546000830184611f0c565b92915050565b600060208201905061226f6000830184611f1b565b92915050565b6000602082019050818103600083015261228f8184611f2a565b905092915050565b600060208201905081810360008301526122b081611f94565b9050919050565b600060208201905081810360008301526122d081611fb7565b9050919050565b600060208201905081810360008301526122f081611fda565b9050919050565b6000602082019050818103600083015261231081611ffd565b9050919050565b6000602082019050818103600083015261233081612020565b9050919050565b6000602082019050818103600083015261235081612043565b9050919050565b6000602082019050818103600083015261237081612066565b9050919050565b6000602082019050818103600083015261239081612089565b9050919050565b600060208201905081810360008301526123b0816120ac565b9050919050565b600060208201905081810360008301526123d0816120cf565b9050919050565b600060208201905081810360008301526123f0816120f2565b9050919050565b6000602082019050818103600083015261241081612115565b9050919050565b600060208201905081810360008301526124308161215b565b9050919050565b600060208201905081810360008301526124508161217e565b9050919050565b60006020820190508181036000830152612470816121c4565b9050919050565b600060208201905061248c60008301846121e7565b92915050565b60006020820190506124a760008301846121f6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124df8261265d565b91506124ea8361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561251f5761251e612734565b5b828201905092915050565b60006125358261265d565b91506125408361265d565b9250826125505761254f612763565b5b828204905092915050565b60006125668261265d565b91506125718361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125aa576125a9612734565b5b828202905092915050565b60006125c08261265d565b91506125cb8361265d565b9250828210156125de576125dd612734565b5b828203905092915050565b60006125f48261263d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612692578082015181840152602081019050612677565b838111156126a1576000848401525b50505050565b60006126b28261265d565b915060008214156126c6576126c5612734565b5b600182039050919050565b600060028204905060018216806126e957607f821691505b602082108114156126fd576126fc612792565b5b50919050565b600061270e8261265d565b91506127198361265d565b92508261272957612728612763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74204255524e45525f524f4c4500000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616c6c6572206973206e6f742044454641554c545f41444d494e5f524f4c45600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612c73816125e9565b8114612c7e57600080fd5b50565b612c8a81612607565b8114612c9557600080fd5b50565b612ca181612611565b8114612cac57600080fd5b50565b612cb88161265d565b8114612cc357600080fd5b5056fea26469706673582212207e194fa2fbccd89f92207af5b16f68d26fd1047fd0a58ac7bb3715b5f7f75a4d64736f6c63430008060033