ASTOToken
Deploy on AlchemyContract Information
The following smart contract is an ERC20 token contract named ASTOToken. It inherits from ERC20Burnable and ReentrancyGuard contracts. It has a fixed supply of 2,384,000,000 tokens and can only be minted by a specific agent. The contract also interacts with Aragon Finance contract to deposit the minted tokens.
More Info
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, 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) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][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) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - 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 {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
interface IAragonFinance {
/**
* @notice Deposit token `_token` to AragonDAO Finance with amout: `_amount`. Reference: `_reference`
* param _token The token address to be deposited
* param _amount The amount of token to be deposited
* param _reference The reference message
*/
function deposit(
address _token,
uint256 _amount,
string calldata _reference
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "../IAragonFinance.sol";
contract ASTOToken is ERC20Burnable, ReentrancyGuard {
uint256 private constant SUPPLY = 2_384_000_000 * 10**18;
address public immutable aragonAgent;
address public immutable aragonFinance;
/**
* @notice Initialize the contract
* @param agent The contract address of AragonDAO Agent
* @param finance The contract address of AragonDAO Finance
*/
constructor(address agent, address finance)
ERC20("Altered State Machine Utility Token", "ASTO")
{
aragonAgent = agent;
aragonFinance = finance;
}
/**
* @notice Mint and deposit `amount` $ASTO tokens to AragonDAO Finance
* @param amount The amount of tokens to be minted
*/
function mint(uint256 amount) public nonReentrant {
require(msg.sender == aragonAgent, "Permission denied!");
require(totalSupply() + amount <= SUPPLY, "Max supply exceeded!");
_mint(address(this), amount);
ERC20(this).approve(address(aragonFinance), amount);
IAragonFinance(aragonFinance).deposit(
address(this),
amount,
"Initialising $ASTO supply"
);
}
}
[{"inputs":[{"internalType":"address","name":"agent","type":"address"},{"internalType":"address","name":"finance","type":"address"}],"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":"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":[{"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":[],"name":"aragonAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aragonFinance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
[{"inputs":[{"internalType":"address","name":"agent","type":"address"},{"internalType":"address","name":"finance","type":"address"}],"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":"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":[{"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":[],"name":"aragonAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aragonFinance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
60c06040523480156200001157600080fd5b506040516200224138038062002241833981810160405281019062000037919062000200565b6040518060600160405280602381526020016200221e602391396040518060400160405280600481526020017f4153544f0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009f92919062000139565b508060049080519060200190620000b892919062000139565b50505060016005819055508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250505050620002ff565b82805462000147906200027b565b90600052602060002090601f0160209004810192826200016b5760008555620001b7565b82601f106200018657805160ff1916838001178555620001b7565b82800160010185558215620001b7579182015b82811115620001b657825182559160200191906001019062000199565b5b509050620001c69190620001ca565b5090565b5b80821115620001e5576000816000905550600101620001cb565b5090565b600081519050620001fa81620002e5565b92915050565b600080604083850312156200021a5762000219620002e0565b5b60006200022a85828601620001e9565b92505060206200023d85828601620001e9565b9150509250929050565b600062000254826200025b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620002f08162000247565b8114620002fc57600080fd5b50565b60805160601c60a05160601c611ede6200034060003960008181610514015281816107b9015261084b0152600081816105a001526106a40152611ede6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a0712d6811610066578063a0712d68146102b1578063a457c2d7146102cd578063a9059cbb146102fd578063dd62ed3e1461032d57610100565b806370a082311461022957806379cc6790146102595780637c73f3431461027557806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780634ec871001461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611729565b60405180910390f35b61013d60048036038101906101389190611395565b6103ef565b60405161014a919061170e565b60405180910390f35b61015b610412565b60405161016891906118eb565b60405180910390f35b61018b60048036038101906101869190611342565b61041c565b604051610198919061170e565b60405180910390f35b6101a961044b565b6040516101b69190611906565b60405180910390f35b6101d960048036038101906101d49190611395565b610454565b6040516101e6919061170e565b60405180910390f35b61020960048036038101906102049190611402565b6104fe565b005b610213610512565b604051610220919061168e565b60405180910390f35b610243600480360381019061023e91906112d5565b610536565b60405161025091906118eb565b60405180910390f35b610273600480360381019061026e9190611395565b61057e565b005b61027d61059e565b60405161028a919061168e565b60405180910390f35b61029b6105c2565b6040516102a89190611729565b60405180910390f35b6102cb60048036038101906102c69190611402565b610654565b005b6102e760048036038101906102e29190611395565b6108e1565b6040516102f4919061170e565b60405180910390f35b61031760048036038101906103129190611395565b6109cb565b604051610324919061170e565b60405180910390f35b61034760048036038101906103429190611302565b6109ee565b60405161035491906118eb565b60405180910390f35b60606003805461036c90611a4f565b80601f016020809104026020016040519081016040528092919081815260200182805461039890611a4f565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610a75565b9050610407818585610a7d565b600191505092915050565b6000600254905090565b600080610427610a75565b9050610434858285610c48565b61043f858585610cd4565b60019150509392505050565b60006012905090565b60008061045f610a75565b90506104f3818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104ee919061193d565b610a7d565b600191505092915050565b61050f610509610a75565b82610f55565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105908261058a610a75565b83610c48565b61059a8282610f55565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546105d190611a4f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90611a4f565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b6002600554141561069a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106919061188b565b60405180910390fd5b60026005819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610727906117eb565b60405180910390fd5b6b07b3ffa2f5d464eb5000000081610746610412565b610750919061193d565b1115610791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107889061184b565b60405180910390fd5b61079b308261112c565b3073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b81526004016107f69291906116a9565b602060405180830381600087803b15801561081057600080fd5b505af1158015610824573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084891906113d5565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663bfe07da630836040518363ffffffff1660e01b81526004016108a49291906116d2565b600060405180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b50505050600160058190555050565b6000806108ec610a75565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906118ab565b60405180910390fd5b6109bf8286868403610a7d565b60019250505092915050565b6000806109d6610a75565b90506109e3818585610cd4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b549061178b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3b91906118eb565b60405180910390a3505050565b6000610c5484846109ee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cce5781811015610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906117ab565b60405180910390fd5b610ccd8484848403610a7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061174b565b60405180910390fd5b610dbf83838361128c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906117cb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed8919061193d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c91906118eb565b60405180910390a3610f4f848484611291565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061180b565b60405180910390fd5b610fd18260008361128c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061176b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110ae9190611993565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111391906118eb565b60405180910390a361112783600084611291565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906118cb565b60405180910390fd5b6111a86000838361128c565b80600260008282546111ba919061193d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461120f919061193d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127491906118eb565b60405180910390a361128860008383611291565b5050565b505050565b505050565b6000813590506112a581611e63565b92915050565b6000815190506112ba81611e7a565b92915050565b6000813590506112cf81611e91565b92915050565b6000602082840312156112eb576112ea611adf565b5b60006112f984828501611296565b91505092915050565b6000806040838503121561131957611318611adf565b5b600061132785828601611296565b925050602061133885828601611296565b9150509250929050565b60008060006060848603121561135b5761135a611adf565b5b600061136986828701611296565b935050602061137a86828701611296565b925050604061138b868287016112c0565b9150509250925092565b600080604083850312156113ac576113ab611adf565b5b60006113ba85828601611296565b92505060206113cb858286016112c0565b9150509250929050565b6000602082840312156113eb576113ea611adf565b5b60006113f9848285016112ab565b91505092915050565b60006020828403121561141857611417611adf565b5b6000611426848285016112c0565b91505092915050565b611438816119c7565b82525050565b611447816119d9565b82525050565b600061145882611921565b611462818561192c565b9350611472818560208601611a1c565b61147b81611ae4565b840191505092915050565b600061149360238361192c565b915061149e82611af5565b604082019050919050565b60006114b660228361192c565b91506114c182611b44565b604082019050919050565b60006114d960228361192c565b91506114e482611b93565b604082019050919050565b60006114fc601d8361192c565b915061150782611be2565b602082019050919050565b600061151f60268361192c565b915061152a82611c0b565b604082019050919050565b600061154260198361192c565b915061154d82611c5a565b602082019050919050565b600061156560128361192c565b915061157082611c83565b602082019050919050565b600061158860218361192c565b915061159382611cac565b604082019050919050565b60006115ab60258361192c565b91506115b682611cfb565b604082019050919050565b60006115ce60148361192c565b91506115d982611d4a565b602082019050919050565b60006115f160248361192c565b91506115fc82611d73565b604082019050919050565b6000611614601f8361192c565b915061161f82611dc2565b602082019050919050565b600061163760258361192c565b915061164282611deb565b604082019050919050565b600061165a601f8361192c565b915061166582611e3a565b602082019050919050565b61167981611a05565b82525050565b61168881611a0f565b82525050565b60006020820190506116a3600083018461142f565b92915050565b60006040820190506116be600083018561142f565b6116cb6020830184611670565b9392505050565b60006060820190506116e7600083018561142f565b6116f46020830184611670565b818103604083015261170581611535565b90509392505050565b6000602082019050611723600083018461143e565b92915050565b60006020820190508181036000830152611743818461144d565b905092915050565b6000602082019050818103600083015261176481611486565b9050919050565b60006020820190508181036000830152611784816114a9565b9050919050565b600060208201905081810360008301526117a4816114cc565b9050919050565b600060208201905081810360008301526117c4816114ef565b9050919050565b600060208201905081810360008301526117e481611512565b9050919050565b6000602082019050818103600083015261180481611558565b9050919050565b600060208201905081810360008301526118248161157b565b9050919050565b600060208201905081810360008301526118448161159e565b9050919050565b60006020820190508181036000830152611864816115c1565b9050919050565b60006020820190508181036000830152611884816115e4565b9050919050565b600060208201905081810360008301526118a481611607565b9050919050565b600060208201905081810360008301526118c48161162a565b9050919050565b600060208201905081810360008301526118e48161164d565b9050919050565b60006020820190506119006000830184611670565b92915050565b600060208201905061191b600083018461167f565b92915050565b600081519050919050565b600082825260208201905092915050565b600061194882611a05565b915061195383611a05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561198857611987611a81565b5b828201905092915050565b600061199e82611a05565b91506119a983611a05565b9250828210156119bc576119bb611a81565b5b828203905092915050565b60006119d2826119e5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a3a578082015181840152602081019050611a1f565b83811115611a49576000848401525b50505050565b60006002820490506001821680611a6757607f821691505b60208210811415611a7b57611a7a611ab0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c6973696e6720244153544f20737570706c7900000000000000600082015250565b7f5065726d697373696f6e2064656e696564210000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e6c816119c7565b8114611e7757600080fd5b50565b611e83816119d9565b8114611e8e57600080fd5b50565b611e9a81611a05565b8114611ea557600080fd5b5056fea264697066735822122017e40d9b03cbd0fa937ce4759606673d5a6d51d176c162ea2fdaadd8bb91e19c64736f6c63430008060033416c7465726564205374617465204d616368696e65205574696c69747920546f6b656e00000000000000000000000020d9c1e8a1efe490d1e0ef4dfa47b6390266b537000000000000000000000000e4193642526d9b5093f7ea72a08c957570888dd6
60c06040523480156200001157600080fd5b506040516200224138038062002241833981810160405281019062000037919062000200565b6040518060600160405280602381526020016200221e602391396040518060400160405280600481526020017f4153544f0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009f92919062000139565b508060049080519060200190620000b892919062000139565b50505060016005819055508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250505050620002ff565b82805462000147906200027b565b90600052602060002090601f0160209004810192826200016b5760008555620001b7565b82601f106200018657805160ff1916838001178555620001b7565b82800160010185558215620001b7579182015b82811115620001b657825182559160200191906001019062000199565b5b509050620001c69190620001ca565b5090565b5b80821115620001e5576000816000905550600101620001cb565b5090565b600081519050620001fa81620002e5565b92915050565b600080604083850312156200021a5762000219620002e0565b5b60006200022a85828601620001e9565b92505060206200023d85828601620001e9565b9150509250929050565b600062000254826200025b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620002f08162000247565b8114620002fc57600080fd5b50565b60805160601c60a05160601c611ede6200034060003960008181610514015281816107b9015261084b0152600081816105a001526106a40152611ede6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a0712d6811610066578063a0712d68146102b1578063a457c2d7146102cd578063a9059cbb146102fd578063dd62ed3e1461032d57610100565b806370a082311461022957806379cc6790146102595780637c73f3431461027557806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780634ec871001461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611729565b60405180910390f35b61013d60048036038101906101389190611395565b6103ef565b60405161014a919061170e565b60405180910390f35b61015b610412565b60405161016891906118eb565b60405180910390f35b61018b60048036038101906101869190611342565b61041c565b604051610198919061170e565b60405180910390f35b6101a961044b565b6040516101b69190611906565b60405180910390f35b6101d960048036038101906101d49190611395565b610454565b6040516101e6919061170e565b60405180910390f35b61020960048036038101906102049190611402565b6104fe565b005b610213610512565b604051610220919061168e565b60405180910390f35b610243600480360381019061023e91906112d5565b610536565b60405161025091906118eb565b60405180910390f35b610273600480360381019061026e9190611395565b61057e565b005b61027d61059e565b60405161028a919061168e565b60405180910390f35b61029b6105c2565b6040516102a89190611729565b60405180910390f35b6102cb60048036038101906102c69190611402565b610654565b005b6102e760048036038101906102e29190611395565b6108e1565b6040516102f4919061170e565b60405180910390f35b61031760048036038101906103129190611395565b6109cb565b604051610324919061170e565b60405180910390f35b61034760048036038101906103429190611302565b6109ee565b60405161035491906118eb565b60405180910390f35b60606003805461036c90611a4f565b80601f016020809104026020016040519081016040528092919081815260200182805461039890611a4f565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610a75565b9050610407818585610a7d565b600191505092915050565b6000600254905090565b600080610427610a75565b9050610434858285610c48565b61043f858585610cd4565b60019150509392505050565b60006012905090565b60008061045f610a75565b90506104f3818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104ee919061193d565b610a7d565b600191505092915050565b61050f610509610a75565b82610f55565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105908261058a610a75565b83610c48565b61059a8282610f55565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546105d190611a4f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90611a4f565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b6002600554141561069a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106919061188b565b60405180910390fd5b60026005819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610727906117eb565b60405180910390fd5b6b07b3ffa2f5d464eb5000000081610746610412565b610750919061193d565b1115610791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107889061184b565b60405180910390fd5b61079b308261112c565b3073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b81526004016107f69291906116a9565b602060405180830381600087803b15801561081057600080fd5b505af1158015610824573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084891906113d5565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663bfe07da630836040518363ffffffff1660e01b81526004016108a49291906116d2565b600060405180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b50505050600160058190555050565b6000806108ec610a75565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906118ab565b60405180910390fd5b6109bf8286868403610a7d565b60019250505092915050565b6000806109d6610a75565b90506109e3818585610cd4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b549061178b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3b91906118eb565b60405180910390a3505050565b6000610c5484846109ee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cce5781811015610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906117ab565b60405180910390fd5b610ccd8484848403610a7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061174b565b60405180910390fd5b610dbf83838361128c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906117cb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed8919061193d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c91906118eb565b60405180910390a3610f4f848484611291565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061180b565b60405180910390fd5b610fd18260008361128c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061176b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110ae9190611993565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111391906118eb565b60405180910390a361112783600084611291565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906118cb565b60405180910390fd5b6111a86000838361128c565b80600260008282546111ba919061193d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461120f919061193d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127491906118eb565b60405180910390a361128860008383611291565b5050565b505050565b505050565b6000813590506112a581611e63565b92915050565b6000815190506112ba81611e7a565b92915050565b6000813590506112cf81611e91565b92915050565b6000602082840312156112eb576112ea611adf565b5b60006112f984828501611296565b91505092915050565b6000806040838503121561131957611318611adf565b5b600061132785828601611296565b925050602061133885828601611296565b9150509250929050565b60008060006060848603121561135b5761135a611adf565b5b600061136986828701611296565b935050602061137a86828701611296565b925050604061138b868287016112c0565b9150509250925092565b600080604083850312156113ac576113ab611adf565b5b60006113ba85828601611296565b92505060206113cb858286016112c0565b9150509250929050565b6000602082840312156113eb576113ea611adf565b5b60006113f9848285016112ab565b91505092915050565b60006020828403121561141857611417611adf565b5b6000611426848285016112c0565b91505092915050565b611438816119c7565b82525050565b611447816119d9565b82525050565b600061145882611921565b611462818561192c565b9350611472818560208601611a1c565b61147b81611ae4565b840191505092915050565b600061149360238361192c565b915061149e82611af5565b604082019050919050565b60006114b660228361192c565b91506114c182611b44565b604082019050919050565b60006114d960228361192c565b91506114e482611b93565b604082019050919050565b60006114fc601d8361192c565b915061150782611be2565b602082019050919050565b600061151f60268361192c565b915061152a82611c0b565b604082019050919050565b600061154260198361192c565b915061154d82611c5a565b602082019050919050565b600061156560128361192c565b915061157082611c83565b602082019050919050565b600061158860218361192c565b915061159382611cac565b604082019050919050565b60006115ab60258361192c565b91506115b682611cfb565b604082019050919050565b60006115ce60148361192c565b91506115d982611d4a565b602082019050919050565b60006115f160248361192c565b91506115fc82611d73565b604082019050919050565b6000611614601f8361192c565b915061161f82611dc2565b602082019050919050565b600061163760258361192c565b915061164282611deb565b604082019050919050565b600061165a601f8361192c565b915061166582611e3a565b602082019050919050565b61167981611a05565b82525050565b61168881611a0f565b82525050565b60006020820190506116a3600083018461142f565b92915050565b60006040820190506116be600083018561142f565b6116cb6020830184611670565b9392505050565b60006060820190506116e7600083018561142f565b6116f46020830184611670565b818103604083015261170581611535565b90509392505050565b6000602082019050611723600083018461143e565b92915050565b60006020820190508181036000830152611743818461144d565b905092915050565b6000602082019050818103600083015261176481611486565b9050919050565b60006020820190508181036000830152611784816114a9565b9050919050565b600060208201905081810360008301526117a4816114cc565b9050919050565b600060208201905081810360008301526117c4816114ef565b9050919050565b600060208201905081810360008301526117e481611512565b9050919050565b6000602082019050818103600083015261180481611558565b9050919050565b600060208201905081810360008301526118248161157b565b9050919050565b600060208201905081810360008301526118448161159e565b9050919050565b60006020820190508181036000830152611864816115c1565b9050919050565b60006020820190508181036000830152611884816115e4565b9050919050565b600060208201905081810360008301526118a481611607565b9050919050565b600060208201905081810360008301526118c48161162a565b9050919050565b600060208201905081810360008301526118e48161164d565b9050919050565b60006020820190506119006000830184611670565b92915050565b600060208201905061191b600083018461167f565b92915050565b600081519050919050565b600082825260208201905092915050565b600061194882611a05565b915061195383611a05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561198857611987611a81565b5b828201905092915050565b600061199e82611a05565b91506119a983611a05565b9250828210156119bc576119bb611a81565b5b828203905092915050565b60006119d2826119e5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a3a578082015181840152602081019050611a1f565b83811115611a49576000848401525b50505050565b60006002820490506001821680611a6757607f821691505b60208210811415611a7b57611a7a611ab0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c6973696e6720244153544f20737570706c7900000000000000600082015250565b7f5065726d697373696f6e2064656e696564210000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e6c816119c7565b8114611e7757600080fd5b50565b611e83816119d9565b8114611e8e57600080fd5b50565b611e9a81611a05565b8114611ea557600080fd5b5056fea264697066735822122017e40d9b03cbd0fa937ce4759606673d5a6d51d176c162ea2fdaadd8bb91e19c64736f6c63430008060033416c7465726564205374617465204d616368696e65205574696c69747920546f6b656e00000000000000000000000020d9c1e8a1efe490d1e0ef4dfa47b6390266b537000000000000000000000000e4193642526d9b5093f7ea72a08c957570888dd6