Token
AAA (AAA)
ERC-20
Overview
Max Total Supply
1,000,000,000 AAA
Holders
996
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,000 AAALoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OREWA_Group
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at amoy.polygonscan.com on 2024-12-30 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: orewa.sol pragma solidity ^0.8.28; contract OREWA_Group is ERC20, Ownable, ReentrancyGuard { string public decimalName; mapping(address => bool) private _blacklist; address[] private _blacklistedAddresses; constructor() ERC20("AAA", "AAA") Ownable(msg.sender) { _mint(msg.sender, 1000000000 * 10**decimals()); // Initial supply of 1 billion tokens decimalName = "Ore"; } modifier notBlacklisted(address account) { require(!_blacklist[account], "This address is blacklisted"); _; } function setDecimalName(string memory newDecimalName) public onlyOwner { decimalName = newDecimalName; } function blacklistAdd(address account) public onlyOwner { require(account != address(0), "Cannot blacklist the zero address"); require(!_blacklist[account], "Address is already blacklisted"); _blacklist[account] = true; _blacklistedAddresses.push(account); } function blacklistRemove(address account) public onlyOwner { require(_blacklist[account], "Address is not blacklisted"); _blacklist[account] = false; // Remove the address from the array for (uint256 i = 0; i < _blacklistedAddresses.length; i++) { if (_blacklistedAddresses[i] == account) { _blacklistedAddresses[i] = _blacklistedAddresses[_blacklistedAddresses.length - 1]; _blacklistedAddresses.pop(); break; } } } function blacklistCheck(address account) public view returns (string memory) { if (_blacklist[account]) { return "Blacklist"; } else { return "Not in blacklist"; } } function blacklistTotal() public view returns (string memory) { string memory result = ""; for (uint256 i = 0; i < _blacklistedAddresses.length; i++) { if (i > 0) { result = string(abi.encodePacked(result, "\n")); } result = string(abi.encodePacked(result, addressToString(_blacklistedAddresses[i]))); } return result; } function addressToString(address _addr) internal pure returns (string memory) { bytes32 value = bytes32(uint256(uint160(_addr))); bytes memory alphabet = "0123456789abcdef"; bytes memory str = new bytes(42); str[0] = '0'; str[1] = 'x'; for (uint256 i = 0; i < 20; i++) { str[2 + i * 2] = alphabet[uint8(value[i + 12] >> 4)]; str[3 + i * 2] = alphabet[uint8(value[i + 12] & 0x0f)]; } return string(str); } function airdrop(address[] memory recipients, uint256 amount) public onlyOwner nonReentrant { require(recipients.length > 0, "Recipients list cannot be empty"); require(amount > 0, "Airdrop amount must be greater than 0"); uint256 totalAmount = amount * recipients.length; require(balanceOf(msg.sender) >= totalAmount, "Not enough tokens to airdrop"); address[] memory validRecipients = new address[](recipients.length); uint256 validCount = 0; for (uint256 i = 0; i < recipients.length; i++) { if (recipients[i] != address(0) && recipients[i] != address(0xdead) && balanceOf(recipients[i]) == 0 && !_blacklist[recipients[i]]) { validRecipients[validCount] = recipients[i]; validCount++; } } for (uint256 i = 0; i < validCount; i++) { _transfer(msg.sender, validRecipients[i], amount * 10**decimals()); } } function transfer(address recipient, uint256 amount) public override notBlacklisted(msg.sender) notBlacklisted(recipient) returns (bool) { return super.transfer(recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) public override notBlacklisted(sender) notBlacklisted(recipient) returns (bool) { return super.transferFrom(sender, recipient, amount); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklistCheck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistTotal","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimalName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDecimalName","type":"string"}],"name":"setDecimalName","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f5ffd5b50336040518060400160405280600381526020017f41414100000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4141410000000000000000000000000000000000000000000000000000000000815250816003908161008c919061074f565b50806004908161009c919061074f565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610106919061085d565b60405180910390fd5b61011e816101a960201b60201c565b50600160068190555061015f3361013961026c60201b60201c565b600a61014591906109de565b633b9aca006101549190610a28565b61027460201b60201c565b6040518060400160405280600381526020017f4f72650000000000000000000000000000000000000000000000000000000000815250600790816101a3919061074f565b50610af9565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102e4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102db919061085d565b60405180910390fd5b6102f55f83836102f960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610349578060025f82825461033d9190610a69565b92505081905550610417565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103d2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103c993929190610aab565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361045e578060025f82825403925050819055506104a8565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105059190610ae0565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061058d57607f821691505b6020821081036105a05761059f610549565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105c7565b61060c86836105c7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61065061064b61064684610624565b61062d565b610624565b9050919050565b5f819050919050565b61066983610636565b61067d61067582610657565b8484546105d3565b825550505050565b5f5f905090565b610694610685565b61069f818484610660565b505050565b5b818110156106c2576106b75f8261068c565b6001810190506106a5565b5050565b601f821115610707576106d8816105a6565b6106e1846105b8565b810160208510156106f0578190505b6107046106fc856105b8565b8301826106a4565b50505b505050565b5f82821c905092915050565b5f6107275f198460080261070c565b1980831691505092915050565b5f61073f8383610718565b9150826002028217905092915050565b61075882610512565b67ffffffffffffffff8111156107715761077061051c565b5b61077b8254610576565b6107868282856106c6565b5f60209050601f8311600181146107b7575f84156107a5578287015190505b6107af8582610734565b865550610816565b601f1984166107c5866105a6565b5f5b828110156107ec578489015182556001820191506020850194506020810190506107c7565b868310156108095784890151610805601f891682610718565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108478261081e565b9050919050565b6108578161083d565b82525050565b5f6020820190506108705f83018461084e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b60018511156108f8578086048111156108d4576108d3610876565b5b60018516156108e35780820291505b80810290506108f1856108a3565b94506108b8565b94509492505050565b5f8261091057600190506109cb565b8161091d575f90506109cb565b8160018114610933576002811461093d5761096c565b60019150506109cb565b60ff84111561094f5761094e610876565b5b8360020a91508482111561096657610965610876565b5b506109cb565b5060208310610133831016604e8410600b84101617156109a15782820a90508381111561099c5761099b610876565b5b6109cb565b6109ae84848460016108af565b925090508184048111156109c5576109c4610876565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6109e882610624565b91506109f3836109d2565b9250610a207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610901565b905092915050565b5f610a3282610624565b9150610a3d83610624565b9250828202610a4b81610624565b91508282048414831517610a6257610a61610876565b5b5092915050565b5f610a7382610624565b9150610a7e83610624565b9250828201905080821115610a9657610a95610876565b5b92915050565b610aa581610624565b82525050565b5f606082019050610abe5f83018661084e565b610acb6020830185610a9c565b610ad86040830184610a9c565b949350505050565b5f602082019050610af35f830184610a9c565b92915050565b612d1180610b065f395ff3fe608060405234801561000f575f5ffd5b506004361061011f575f3560e01c806381a5d89e116100ab578063aa22e8881161006f578063aa22e888146102f5578063b8de216a14610313578063c204642c14610343578063dd62ed3e1461035f578063f2fde38b1461038f5761011f565b806381a5d89e1461024f57806385348e9f1461026d5780638da5cb5b1461028957806395d89b41146102a7578063a9059cbb146102c55761011f565b806321a4d39f116100f257806321a4d39f146101ab57806323b872dd146101c7578063313ce567146101f757806370a0823114610215578063715018a6146102455761011f565b80630258ce561461012357806306fdde031461013f578063095ea7b31461015d57806318160ddd1461018d575b5f5ffd5b61013d60048036038101906101389190611d96565b6103ab565b005b610147610610565b6040516101549190611e31565b60405180910390f35b61017760048036038101906101729190611e84565b6106a0565b6040516101849190611edc565b60405180910390f35b6101956106c2565b6040516101a29190611f04565b60405180910390f35b6101c560048036038101906101c09190611d96565b6106cb565b005b6101e160048036038101906101dc9190611f1d565b610883565b6040516101ee9190611edc565b60405180910390f35b6101ff6109b0565b60405161020c9190611f88565b60405180910390f35b61022f600480360381019061022a9190611d96565b6109b8565b60405161023c9190611f04565b60405180910390f35b61024d6109fd565b005b610257610a10565b6040516102649190611e31565b60405180910390f35b610287600480360381019061028291906120cd565b610a9c565b005b610291610ab7565b60405161029e9190612123565b60405180910390f35b6102af610adf565b6040516102bc9190611e31565b60405180910390f35b6102df60048036038101906102da9190611e84565b610b6f565b6040516102ec9190611edc565b60405180910390f35b6102fd610c9a565b60405161030a9190611e31565b60405180910390f35b61032d60048036038101906103289190611d96565b610d67565b60405161033a9190611e31565b60405180910390f35b61035d60048036038101906103589190612200565b610e33565b005b6103796004803603810190610374919061225a565b6111b1565b6040516103869190611f04565b60405180910390f35b6103a960048036038101906103a49190611d96565b611233565b005b6103b36112b7565b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661043c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610433906122e2565b60405180910390fd5b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5f90505b60098054905081101561060c578173ffffffffffffffffffffffffffffffffffffffff16600982815481106104cd576104cc612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105ff5760096001600980549050610524919061235a565b8154811061053557610534612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061057157610570612300565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060098054806105c8576105c761238d565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561060c565b8080600101915050610495565b5050565b60606003805461061f906123e7565b80601f016020809104026020016040519081016040528092919081815260200182805461064b906123e7565b80156106965780601f1061066d57610100808354040283529160200191610696565b820191905f5260205f20905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b5f5f6106aa61133e565b90506106b7818585611345565b600191505092915050565b5f600254905090565b6106d36112b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612487565b60405180910390fd5b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c2906124ef565b60405180910390fd5b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612557565b60405180910390fd5b8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612557565b60405180910390fd5b6109a5868686611357565b925050509392505050565b5f6012905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a056112b7565b610a0e5f611385565b565b60078054610a1d906123e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a49906123e7565b8015610a945780601f10610a6b57610100808354040283529160200191610a94565b820191905f5260205f20905b815481529060010190602001808311610a7757829003601f168201915b505050505081565b610aa46112b7565b8060079081610ab39190612715565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610aee906123e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a906123e7565b8015610b655780601f10610b3c57610100808354040283529160200191610b65565b820191905f5260205f20905b815481529060010190602001808311610b4857829003601f168201915b5050505050905090565b5f3360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290612557565b60405180910390fd5b8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612557565b60405180910390fd5b610c908585611448565b9250505092915050565b60605f60405180602001604052805f81525090505f5f90505b600980549050811015610d5f575f811115610ceb5781604051602001610cd99190612868565b60405160208183030381529060405291505b81610d3060098381548110610d0357610d02612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661146a565b604051602001610d41929190612889565b60405160208183030381529060405291508080600101915050610cb3565b508091505090565b606060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610df5576040518060400160405280600981526020017f426c61636b6c69737400000000000000000000000000000000000000000000008152509050610e2e565b6040518060400160405280601081526020017f4e6f7420696e20626c61636b6c6973740000000000000000000000000000000081525090505b919050565b610e3b6112b7565b610e43611768565b5f825111610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906128f6565b60405180910390fd5b5f8111610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612984565b60405180910390fd5b5f825182610ed691906129a2565b905080610ee2336109b8565b1015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90612a2d565b60405180910390fd5b5f835167ffffffffffffffff811115610f3f57610f3e611fa9565b5b604051908082528060200260200182016040528015610f6d5781602001602082028036833780820191505090505b5090505f5f90505f5f90505b8551811015611143575f73ffffffffffffffffffffffffffffffffffffffff16868281518110610fac57610fab612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614158015611020575061dead73ffffffffffffffffffffffffffffffffffffffff16868281518110610fff57610ffe612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614155b801561104d57505f61104b87838151811061103e5761103d612300565b5b60200260200101516109b8565b145b80156110ba575060085f87838151811061106a57611069612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611136578581815181106110d2576110d1612300565b5b60200260200101518383815181106110ed576110ec612300565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050818061113290612a4b565b9250505b8080600101915050610f79565b505f5f90505b818110156111a1576111943384838151811061116857611167612300565b5b60200260200101516111786109b0565b600a6111849190612bc1565b8861118f91906129a2565b6117b7565b8080600101915050611149565b505050506111ad6118a7565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61123b6112b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ab575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112a29190612123565b60405180910390fd5b6112b481611385565b50565b6112bf61133e565b73ffffffffffffffffffffffffffffffffffffffff166112dd610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461133c5761130061133e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113339190612123565b60405180910390fd5b565b5f33905090565b61135283838360016118b1565b505050565b5f5f61136161133e565b905061136e858285611a80565b6113798585856117b7565b60019150509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f61145261133e565b905061145f8185856117b7565b600191505092915050565b60605f8273ffffffffffffffffffffffffffffffffffffffff165f1b90505f6040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090505f602a67ffffffffffffffff8111156114dd576114dc611fa9565b5b6040519080825280601f01601f19166020018201604052801561150f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f8151811061154657611545612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106115a9576115a8612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f5f90505b601481101561175c5782600485600c846115f69190612c0b565b6020811061160757611606612300565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff168151811061164657611645612300565b5b602001015160f81c60f81b8260028361165f91906129a2565b600261166b9190612c0b565b8151811061167c5761167b612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535082600f60f81b85600c846116be9190612c0b565b602081106116cf576116ce612300565b5b1a60f81b1660f81c60ff16815181106116eb576116ea612300565b5b602001015160f81c60f81b8260028361170491906129a2565b60036117109190612c0b565b8151811061172157611720612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535080806001019150506115dc565b50809350505050919050565b6002600654036117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490612c88565b60405180910390fd5b6002600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611827575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161181e9190612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611897575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161188e9190612123565b60405180910390fd5b6118a2838383611b12565b505050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611921575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119189190612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611991575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119889190612123565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611a7a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a719190611f04565b60405180910390a35b50505050565b5f611a8b84846111b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b0c5781811015611afd578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611af493929190612ca6565b60405180910390fd5b611b0b84848484035f6118b1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b62578060025f828254611b569190612c0b565b92505081905550611c30565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611beb578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611be293929190612ca6565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c77578060025f8282540392505081905550611cc1565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d1e9190611f04565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d6582611d3c565b9050919050565b611d7581611d5b565b8114611d7f575f5ffd5b50565b5f81359050611d9081611d6c565b92915050565b5f60208284031215611dab57611daa611d34565b5b5f611db884828501611d82565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e0382611dc1565b611e0d8185611dcb565b9350611e1d818560208601611ddb565b611e2681611de9565b840191505092915050565b5f6020820190508181035f830152611e498184611df9565b905092915050565b5f819050919050565b611e6381611e51565b8114611e6d575f5ffd5b50565b5f81359050611e7e81611e5a565b92915050565b5f5f60408385031215611e9a57611e99611d34565b5b5f611ea785828601611d82565b9250506020611eb885828601611e70565b9150509250929050565b5f8115159050919050565b611ed681611ec2565b82525050565b5f602082019050611eef5f830184611ecd565b92915050565b611efe81611e51565b82525050565b5f602082019050611f175f830184611ef5565b92915050565b5f5f5f60608486031215611f3457611f33611d34565b5b5f611f4186828701611d82565b9350506020611f5286828701611d82565b9250506040611f6386828701611e70565b9150509250925092565b5f60ff82169050919050565b611f8281611f6d565b82525050565b5f602082019050611f9b5f830184611f79565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fdf82611de9565b810181811067ffffffffffffffff82111715611ffe57611ffd611fa9565b5b80604052505050565b5f612010611d2b565b905061201c8282611fd6565b919050565b5f67ffffffffffffffff82111561203b5761203a611fa9565b5b61204482611de9565b9050602081019050919050565b828183375f83830152505050565b5f61207161206c84612021565b612007565b90508281526020810184848401111561208d5761208c611fa5565b5b612098848285612051565b509392505050565b5f82601f8301126120b4576120b3611fa1565b5b81356120c484826020860161205f565b91505092915050565b5f602082840312156120e2576120e1611d34565b5b5f82013567ffffffffffffffff8111156120ff576120fe611d38565b5b61210b848285016120a0565b91505092915050565b61211d81611d5b565b82525050565b5f6020820190506121365f830184612114565b92915050565b5f67ffffffffffffffff82111561215657612155611fa9565b5b602082029050602081019050919050565b5f5ffd5b5f61217d6121788461213c565b612007565b905080838252602082019050602084028301858111156121a05761219f612167565b5b835b818110156121c957806121b58882611d82565b8452602084019350506020810190506121a2565b5050509392505050565b5f82601f8301126121e7576121e6611fa1565b5b81356121f784826020860161216b565b91505092915050565b5f5f6040838503121561221657612215611d34565b5b5f83013567ffffffffffffffff81111561223357612232611d38565b5b61223f858286016121d3565b925050602061225085828601611e70565b9150509250929050565b5f5f604083850312156122705761226f611d34565b5b5f61227d85828601611d82565b925050602061228e85828601611d82565b9150509250929050565b7f41646472657373206973206e6f7420626c61636b6c69737465640000000000005f82015250565b5f6122cc601a83611dcb565b91506122d782612298565b602082019050919050565b5f6020820190508181035f8301526122f9816122c0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61236482611e51565b915061236f83611e51565b92508282039050818111156123875761238661232d565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123fe57607f821691505b602082108103612411576124106123ba565b5b50919050565b7f43616e6e6f7420626c61636b6c69737420746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612471602183611dcb565b915061247c82612417565b604082019050919050565b5f6020820190508181035f83015261249e81612465565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c697374656400005f82015250565b5f6124d9601e83611dcb565b91506124e4826124a5565b602082019050919050565b5f6020820190508181035f830152612506816124cd565b9050919050565b7f54686973206164647265737320697320626c61636b6c697374656400000000005f82015250565b5f612541601b83611dcb565b915061254c8261250d565b602082019050919050565b5f6020820190508181035f83015261256e81612535565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612596565b6125db8683612596565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61261661261161260c84611e51565b6125f3565b611e51565b9050919050565b5f819050919050565b61262f836125fc565b61264361263b8261261d565b8484546125a2565b825550505050565b5f5f905090565b61265a61264b565b612665818484612626565b505050565b5b818110156126885761267d5f82612652565b60018101905061266b565b5050565b601f8211156126cd5761269e81612575565b6126a784612587565b810160208510156126b6578190505b6126ca6126c285612587565b83018261266a565b50505b505050565b5f82821c905092915050565b5f6126ed5f19846008026126d2565b1980831691505092915050565b5f61270583836126de565b9150826002028217905092915050565b61271e82611dc1565b67ffffffffffffffff81111561273757612736611fa9565b5b61274182546123e7565b61274c82828561268c565b5f60209050601f83116001811461277d575f841561276b578287015190505b61277585826126fa565b8655506127dc565b601f19841661278b86612575565b5f5b828110156127b25784890151825560018201915060208501945060208101905061278d565b868310156127cf57848901516127cb601f8916826126de565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6127f882611dc1565b61280281856127e4565b9350612812818560208601611ddb565b80840191505092915050565b7f0a000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6128526001836127e4565b915061285d8261281e565b600182019050919050565b5f61287382846127ee565b915061287e82612846565b915081905092915050565b5f61289482856127ee565b91506128a082846127ee565b91508190509392505050565b7f526563697069656e7473206c6973742063616e6e6f7420626520656d707479005f82015250565b5f6128e0601f83611dcb565b91506128eb826128ac565b602082019050919050565b5f6020820190508181035f83015261290d816128d4565b9050919050565b7f41697264726f7020616d6f756e74206d757374206265206772656174657220745f8201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b5f61296e602583611dcb565b915061297982612914565b604082019050919050565b5f6020820190508181035f83015261299b81612962565b9050919050565b5f6129ac82611e51565b91506129b783611e51565b92508282026129c581611e51565b915082820484148315176129dc576129db61232d565b5b5092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2061697264726f70000000005f82015250565b5f612a17601c83611dcb565b9150612a22826129e3565b602082019050919050565b5f6020820190508181035f830152612a4481612a0b565b9050919050565b5f612a5582611e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a8757612a8661232d565b5b600182019050919050565b5f8160011c9050919050565b5f5f8291508390505b6001851115612ae757808604811115612ac357612ac261232d565b5b6001851615612ad25780820291505b8081029050612ae085612a92565b9450612aa7565b94509492505050565b5f82612aff5760019050612bba565b81612b0c575f9050612bba565b8160018114612b225760028114612b2c57612b5b565b6001915050612bba565b60ff841115612b3e57612b3d61232d565b5b8360020a915084821115612b5557612b5461232d565b5b50612bba565b5060208310610133831016604e8410600b8410161715612b905782820a905083811115612b8b57612b8a61232d565b5b612bba565b612b9d8484846001612a9e565b92509050818404811115612bb457612bb361232d565b5b81810290505b9392505050565b5f612bcb82611e51565b9150612bd683611f6d565b9250612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612af0565b905092915050565b5f612c1582611e51565b9150612c2083611e51565b9250828201905080821115612c3857612c3761232d565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612c72601f83611dcb565b9150612c7d82612c3e565b602082019050919050565b5f6020820190508181035f830152612c9f81612c66565b9050919050565b5f606082019050612cb95f830186612114565b612cc66020830185611ef5565b612cd36040830184611ef5565b94935050505056fea26469706673582212203fec43f6806a41cacf9d568cdb811b01bfc8b56d033f7c92d1127c70125df37564736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061011f575f3560e01c806381a5d89e116100ab578063aa22e8881161006f578063aa22e888146102f5578063b8de216a14610313578063c204642c14610343578063dd62ed3e1461035f578063f2fde38b1461038f5761011f565b806381a5d89e1461024f57806385348e9f1461026d5780638da5cb5b1461028957806395d89b41146102a7578063a9059cbb146102c55761011f565b806321a4d39f116100f257806321a4d39f146101ab57806323b872dd146101c7578063313ce567146101f757806370a0823114610215578063715018a6146102455761011f565b80630258ce561461012357806306fdde031461013f578063095ea7b31461015d57806318160ddd1461018d575b5f5ffd5b61013d60048036038101906101389190611d96565b6103ab565b005b610147610610565b6040516101549190611e31565b60405180910390f35b61017760048036038101906101729190611e84565b6106a0565b6040516101849190611edc565b60405180910390f35b6101956106c2565b6040516101a29190611f04565b60405180910390f35b6101c560048036038101906101c09190611d96565b6106cb565b005b6101e160048036038101906101dc9190611f1d565b610883565b6040516101ee9190611edc565b60405180910390f35b6101ff6109b0565b60405161020c9190611f88565b60405180910390f35b61022f600480360381019061022a9190611d96565b6109b8565b60405161023c9190611f04565b60405180910390f35b61024d6109fd565b005b610257610a10565b6040516102649190611e31565b60405180910390f35b610287600480360381019061028291906120cd565b610a9c565b005b610291610ab7565b60405161029e9190612123565b60405180910390f35b6102af610adf565b6040516102bc9190611e31565b60405180910390f35b6102df60048036038101906102da9190611e84565b610b6f565b6040516102ec9190611edc565b60405180910390f35b6102fd610c9a565b60405161030a9190611e31565b60405180910390f35b61032d60048036038101906103289190611d96565b610d67565b60405161033a9190611e31565b60405180910390f35b61035d60048036038101906103589190612200565b610e33565b005b6103796004803603810190610374919061225a565b6111b1565b6040516103869190611f04565b60405180910390f35b6103a960048036038101906103a49190611d96565b611233565b005b6103b36112b7565b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661043c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610433906122e2565b60405180910390fd5b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5f90505b60098054905081101561060c578173ffffffffffffffffffffffffffffffffffffffff16600982815481106104cd576104cc612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105ff5760096001600980549050610524919061235a565b8154811061053557610534612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061057157610570612300565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060098054806105c8576105c761238d565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561060c565b8080600101915050610495565b5050565b60606003805461061f906123e7565b80601f016020809104026020016040519081016040528092919081815260200182805461064b906123e7565b80156106965780601f1061066d57610100808354040283529160200191610696565b820191905f5260205f20905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b5f5f6106aa61133e565b90506106b7818585611345565b600191505092915050565b5f600254905090565b6106d36112b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612487565b60405180910390fd5b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c2906124ef565b60405180910390fd5b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612557565b60405180910390fd5b8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612557565b60405180910390fd5b6109a5868686611357565b925050509392505050565b5f6012905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a056112b7565b610a0e5f611385565b565b60078054610a1d906123e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a49906123e7565b8015610a945780601f10610a6b57610100808354040283529160200191610a94565b820191905f5260205f20905b815481529060010190602001808311610a7757829003601f168201915b505050505081565b610aa46112b7565b8060079081610ab39190612715565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610aee906123e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a906123e7565b8015610b655780601f10610b3c57610100808354040283529160200191610b65565b820191905f5260205f20905b815481529060010190602001808311610b4857829003601f168201915b5050505050905090565b5f3360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290612557565b60405180910390fd5b8360085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612557565b60405180910390fd5b610c908585611448565b9250505092915050565b60605f60405180602001604052805f81525090505f5f90505b600980549050811015610d5f575f811115610ceb5781604051602001610cd99190612868565b60405160208183030381529060405291505b81610d3060098381548110610d0357610d02612300565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661146a565b604051602001610d41929190612889565b60405160208183030381529060405291508080600101915050610cb3565b508091505090565b606060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610df5576040518060400160405280600981526020017f426c61636b6c69737400000000000000000000000000000000000000000000008152509050610e2e565b6040518060400160405280601081526020017f4e6f7420696e20626c61636b6c6973740000000000000000000000000000000081525090505b919050565b610e3b6112b7565b610e43611768565b5f825111610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906128f6565b60405180910390fd5b5f8111610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612984565b60405180910390fd5b5f825182610ed691906129a2565b905080610ee2336109b8565b1015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90612a2d565b60405180910390fd5b5f835167ffffffffffffffff811115610f3f57610f3e611fa9565b5b604051908082528060200260200182016040528015610f6d5781602001602082028036833780820191505090505b5090505f5f90505f5f90505b8551811015611143575f73ffffffffffffffffffffffffffffffffffffffff16868281518110610fac57610fab612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614158015611020575061dead73ffffffffffffffffffffffffffffffffffffffff16868281518110610fff57610ffe612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614155b801561104d57505f61104b87838151811061103e5761103d612300565b5b60200260200101516109b8565b145b80156110ba575060085f87838151811061106a57611069612300565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611136578581815181106110d2576110d1612300565b5b60200260200101518383815181106110ed576110ec612300565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050818061113290612a4b565b9250505b8080600101915050610f79565b505f5f90505b818110156111a1576111943384838151811061116857611167612300565b5b60200260200101516111786109b0565b600a6111849190612bc1565b8861118f91906129a2565b6117b7565b8080600101915050611149565b505050506111ad6118a7565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61123b6112b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ab575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112a29190612123565b60405180910390fd5b6112b481611385565b50565b6112bf61133e565b73ffffffffffffffffffffffffffffffffffffffff166112dd610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461133c5761130061133e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113339190612123565b60405180910390fd5b565b5f33905090565b61135283838360016118b1565b505050565b5f5f61136161133e565b905061136e858285611a80565b6113798585856117b7565b60019150509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f61145261133e565b905061145f8185856117b7565b600191505092915050565b60605f8273ffffffffffffffffffffffffffffffffffffffff165f1b90505f6040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090505f602a67ffffffffffffffff8111156114dd576114dc611fa9565b5b6040519080825280601f01601f19166020018201604052801561150f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f8151811061154657611545612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106115a9576115a8612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f5f90505b601481101561175c5782600485600c846115f69190612c0b565b6020811061160757611606612300565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff168151811061164657611645612300565b5b602001015160f81c60f81b8260028361165f91906129a2565b600261166b9190612c0b565b8151811061167c5761167b612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535082600f60f81b85600c846116be9190612c0b565b602081106116cf576116ce612300565b5b1a60f81b1660f81c60ff16815181106116eb576116ea612300565b5b602001015160f81c60f81b8260028361170491906129a2565b60036117109190612c0b565b8151811061172157611720612300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535080806001019150506115dc565b50809350505050919050565b6002600654036117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490612c88565b60405180910390fd5b6002600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611827575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161181e9190612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611897575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161188e9190612123565b60405180910390fd5b6118a2838383611b12565b505050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611921575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119189190612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611991575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119889190612123565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611a7a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a719190611f04565b60405180910390a35b50505050565b5f611a8b84846111b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b0c5781811015611afd578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611af493929190612ca6565b60405180910390fd5b611b0b84848484035f6118b1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b62578060025f828254611b569190612c0b565b92505081905550611c30565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611beb578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611be293929190612ca6565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c77578060025f8282540392505081905550611cc1565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d1e9190611f04565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d6582611d3c565b9050919050565b611d7581611d5b565b8114611d7f575f5ffd5b50565b5f81359050611d9081611d6c565b92915050565b5f60208284031215611dab57611daa611d34565b5b5f611db884828501611d82565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e0382611dc1565b611e0d8185611dcb565b9350611e1d818560208601611ddb565b611e2681611de9565b840191505092915050565b5f6020820190508181035f830152611e498184611df9565b905092915050565b5f819050919050565b611e6381611e51565b8114611e6d575f5ffd5b50565b5f81359050611e7e81611e5a565b92915050565b5f5f60408385031215611e9a57611e99611d34565b5b5f611ea785828601611d82565b9250506020611eb885828601611e70565b9150509250929050565b5f8115159050919050565b611ed681611ec2565b82525050565b5f602082019050611eef5f830184611ecd565b92915050565b611efe81611e51565b82525050565b5f602082019050611f175f830184611ef5565b92915050565b5f5f5f60608486031215611f3457611f33611d34565b5b5f611f4186828701611d82565b9350506020611f5286828701611d82565b9250506040611f6386828701611e70565b9150509250925092565b5f60ff82169050919050565b611f8281611f6d565b82525050565b5f602082019050611f9b5f830184611f79565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fdf82611de9565b810181811067ffffffffffffffff82111715611ffe57611ffd611fa9565b5b80604052505050565b5f612010611d2b565b905061201c8282611fd6565b919050565b5f67ffffffffffffffff82111561203b5761203a611fa9565b5b61204482611de9565b9050602081019050919050565b828183375f83830152505050565b5f61207161206c84612021565b612007565b90508281526020810184848401111561208d5761208c611fa5565b5b612098848285612051565b509392505050565b5f82601f8301126120b4576120b3611fa1565b5b81356120c484826020860161205f565b91505092915050565b5f602082840312156120e2576120e1611d34565b5b5f82013567ffffffffffffffff8111156120ff576120fe611d38565b5b61210b848285016120a0565b91505092915050565b61211d81611d5b565b82525050565b5f6020820190506121365f830184612114565b92915050565b5f67ffffffffffffffff82111561215657612155611fa9565b5b602082029050602081019050919050565b5f5ffd5b5f61217d6121788461213c565b612007565b905080838252602082019050602084028301858111156121a05761219f612167565b5b835b818110156121c957806121b58882611d82565b8452602084019350506020810190506121a2565b5050509392505050565b5f82601f8301126121e7576121e6611fa1565b5b81356121f784826020860161216b565b91505092915050565b5f5f6040838503121561221657612215611d34565b5b5f83013567ffffffffffffffff81111561223357612232611d38565b5b61223f858286016121d3565b925050602061225085828601611e70565b9150509250929050565b5f5f604083850312156122705761226f611d34565b5b5f61227d85828601611d82565b925050602061228e85828601611d82565b9150509250929050565b7f41646472657373206973206e6f7420626c61636b6c69737465640000000000005f82015250565b5f6122cc601a83611dcb565b91506122d782612298565b602082019050919050565b5f6020820190508181035f8301526122f9816122c0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61236482611e51565b915061236f83611e51565b92508282039050818111156123875761238661232d565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123fe57607f821691505b602082108103612411576124106123ba565b5b50919050565b7f43616e6e6f7420626c61636b6c69737420746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612471602183611dcb565b915061247c82612417565b604082019050919050565b5f6020820190508181035f83015261249e81612465565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c697374656400005f82015250565b5f6124d9601e83611dcb565b91506124e4826124a5565b602082019050919050565b5f6020820190508181035f830152612506816124cd565b9050919050565b7f54686973206164647265737320697320626c61636b6c697374656400000000005f82015250565b5f612541601b83611dcb565b915061254c8261250d565b602082019050919050565b5f6020820190508181035f83015261256e81612535565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612596565b6125db8683612596565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61261661261161260c84611e51565b6125f3565b611e51565b9050919050565b5f819050919050565b61262f836125fc565b61264361263b8261261d565b8484546125a2565b825550505050565b5f5f905090565b61265a61264b565b612665818484612626565b505050565b5b818110156126885761267d5f82612652565b60018101905061266b565b5050565b601f8211156126cd5761269e81612575565b6126a784612587565b810160208510156126b6578190505b6126ca6126c285612587565b83018261266a565b50505b505050565b5f82821c905092915050565b5f6126ed5f19846008026126d2565b1980831691505092915050565b5f61270583836126de565b9150826002028217905092915050565b61271e82611dc1565b67ffffffffffffffff81111561273757612736611fa9565b5b61274182546123e7565b61274c82828561268c565b5f60209050601f83116001811461277d575f841561276b578287015190505b61277585826126fa565b8655506127dc565b601f19841661278b86612575565b5f5b828110156127b25784890151825560018201915060208501945060208101905061278d565b868310156127cf57848901516127cb601f8916826126de565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6127f882611dc1565b61280281856127e4565b9350612812818560208601611ddb565b80840191505092915050565b7f0a000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6128526001836127e4565b915061285d8261281e565b600182019050919050565b5f61287382846127ee565b915061287e82612846565b915081905092915050565b5f61289482856127ee565b91506128a082846127ee565b91508190509392505050565b7f526563697069656e7473206c6973742063616e6e6f7420626520656d707479005f82015250565b5f6128e0601f83611dcb565b91506128eb826128ac565b602082019050919050565b5f6020820190508181035f83015261290d816128d4565b9050919050565b7f41697264726f7020616d6f756e74206d757374206265206772656174657220745f8201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b5f61296e602583611dcb565b915061297982612914565b604082019050919050565b5f6020820190508181035f83015261299b81612962565b9050919050565b5f6129ac82611e51565b91506129b783611e51565b92508282026129c581611e51565b915082820484148315176129dc576129db61232d565b5b5092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2061697264726f70000000005f82015250565b5f612a17601c83611dcb565b9150612a22826129e3565b602082019050919050565b5f6020820190508181035f830152612a4481612a0b565b9050919050565b5f612a5582611e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a8757612a8661232d565b5b600182019050919050565b5f8160011c9050919050565b5f5f8291508390505b6001851115612ae757808604811115612ac357612ac261232d565b5b6001851615612ad25780820291505b8081029050612ae085612a92565b9450612aa7565b94509492505050565b5f82612aff5760019050612bba565b81612b0c575f9050612bba565b8160018114612b225760028114612b2c57612b5b565b6001915050612bba565b60ff841115612b3e57612b3d61232d565b5b8360020a915084821115612b5557612b5461232d565b5b50612bba565b5060208310610133831016604e8410600b8410161715612b905782820a905083811115612b8b57612b8a61232d565b5b612bba565b612b9d8484846001612a9e565b92509050818404811115612bb457612bb361232d565b5b81810290505b9392505050565b5f612bcb82611e51565b9150612bd683611f6d565b9250612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612af0565b905092915050565b5f612c1582611e51565b9150612c2083611e51565b9250828201905080821115612c3857612c3761232d565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612c72601f83611dcb565b9150612c7d82612c3e565b602082019050919050565b5f6020820190508181035f830152612c9f81612c66565b9050919050565b5f606082019050612cb95f830186612114565b612cc66020830185611ef5565b612cd36040830184611ef5565b94935050505056fea26469706673582212203fec43f6806a41cacf9d568cdb811b01bfc8b56d033f7c92d1127c70125df37564736f6c634300081c0033
Deployed Bytecode Sourcemap
28868:4142:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29843:543;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13005:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15298:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14107:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29534:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32783:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13958:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14269:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24728:103;;;:::i;:::-;;28935:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29406:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24053:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32577:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30629:417;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30396:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31577:990;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14837:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24986:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29843:543;23939:13;:11;:13::i;:::-;29921:10:::1;:19;29932:7;29921:19;;;;;;;;;;;;;;;;;;;;;;;;;29913:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30004:5;29982:10;:19;29993:7;29982:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;30071:9;30083:1;30071:13;;30066:313;30090:21;:28;;;;30086:1;:32;30066:313;;;30172:7;30144:35;;:21;30166:1;30144:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:35;;::::0;30140:228:::1;;30227:21;30280:1;30249:21;:28;;;;:32;;;;:::i;:::-;30227:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30200:21;30222:1;30200:24;;;;;;;;:::i;:::-;;;;;;;;;;:82;;;;;;;;;;;;;;;;;;30301:21;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;30347:5;;30140:228;30120:3;;;;;;;30066:313;;;;29843:543:::0;:::o;13005:91::-;13050:13;13083:5;13076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;:::o;15298:190::-;15371:4;15388:13;15404:12;:10;:12::i;:::-;15388:28;;15427:31;15436:5;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15298:190;;;;:::o;14107:99::-;14159:7;14186:12;;14179:19;;14107:99;:::o;29534:299::-;23939:13;:11;:13::i;:::-;29628:1:::1;29609:21;;:7;:21;;::::0;29601:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29688:10;:19;29699:7;29688:19;;;;;;;;;;;;;;;;;;;;;;;;;29687:20;29679:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:4;29753:10;:19;29764:7;29753:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;29790:21;29817:7;29790:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29534:299:::0;:::o;32783:224::-;32930:4;32887:6;29325:10;:19;29336:7;29325:19;;;;;;;;;;;;;;;;;;;;;;;;;29324:20;29316:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32910:9:::1;29325:10;:19;29336:7;29325:19;;;;;;;;;;;;;;;;;;;;;;;;;29324:20;29316:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32954:45:::2;32973:6;32981:9;32992:6;32954:18;:45::i;:::-;32947:52;;29387:1:::1;32783:224:::0;;;;;;:::o;13958:84::-;14007:5;14032:2;14025:9;;13958:84;:::o;14269:118::-;14334:7;14361:9;:18;14371:7;14361:18;;;;;;;;;;;;;;;;14354:25;;14269:118;;;:::o;24728:103::-;23939:13;:11;:13::i;:::-;24793:30:::1;24820:1;24793:18;:30::i;:::-;24728:103::o:0;28935:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29406:118::-;23939:13;:11;:13::i;:::-;29502:14:::1;29488:11;:28;;;;;;:::i;:::-;;29406:118:::0;:::o;24053:87::-;24099:7;24126:6;;;;;;;;;;;24119:13;;24053:87;:::o;13215:95::-;13262:13;13295:7;13288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13215:95;:::o;32577:196::-;32708:4;32661:10;29325;:19;29336:7;29325:19;;;;;;;;;;;;;;;;;;;;;;;;;29324:20;29316:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32688:9:::1;29325:10;:19;29336:7;29325:19;;;;;;;;;;;;;;;;;;;;;;;;;29324:20;29316:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32732:33:::2;32747:9;32758:6;32732:14;:33::i;:::-;32725:40;;29387:1:::1;32577:196:::0;;;;;:::o;30629:417::-;30676:13;30702:20;:25;;;;;;;;;;;;;;30743:9;30755:1;30743:13;;30738:277;30762:21;:28;;;;30758:1;:32;30738:277;;;30820:1;30816;:5;30812:93;;;30875:6;30858:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;30842:47;;30812:93;30952:6;30960:41;30976:21;30998:1;30976:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30960:15;:41::i;:::-;30935:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30919:84;;30792:3;;;;;;;30738:277;;;;31032:6;31025:13;;;30629:417;:::o;30396:223::-;30458:13;30488:10;:19;30499:7;30488:19;;;;;;;;;;;;;;;;;;;;;;;;;30484:128;;;30524:18;;;;;;;;;;;;;;;;;;;;;30484:128;30575:25;;;;;;;;;;;;;;;;;;;30396:223;;;;:::o;31577:990::-;23939:13;:11;:13::i;:::-;27909:21:::1;:19;:21::i;:::-;31708:1:::2;31688:10;:17;:21;31680:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31773:1;31764:6;:10;31756:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;31831:19;31862:10;:17;31853:6;:26;;;;:::i;:::-;31831:48;;31923:11;31898:21;31908:10;31898:9;:21::i;:::-;:36;;31890:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;31982:32;32031:10;:17;32017:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31982:67;;32060:18;32081:1;32060:22;;32102:9;32114:1;32102:13;;32097:315;32121:10;:17;32117:1;:21;32097:315;;;32189:1;32164:27;;:10;32175:1;32164:13;;;;;;;;:::i;:::-;;;;;;;;:27;;;;:63;;;;;32220:6;32195:32;;:10;32206:1;32195:13;;;;;;;;:::i;:::-;;;;;;;;:32;;;;32164:63;:96;;;;;32259:1;32231:24;32241:10;32252:1;32241:13;;;;;;;;:::i;:::-;;;;;;;;32231:9;:24::i;:::-;:29;32164:96;:126;;;;;32265:10;:25;32276:10;32287:1;32276:13;;;;;;;;:::i;:::-;;;;;;;;32265:25;;;;;;;;;;;;;;;;;;;;;;;;;32264:26;32164:126;32160:241;;;32341:10;32352:1;32341:13;;;;;;;;:::i;:::-;;;;;;;;32311:15;32327:10;32311:27;;;;;;;;:::i;:::-;;;;;;;:43;;;;;;;;;::::0;::::2;32373:12;;;;;:::i;:::-;;;;32160:241;32140:3;;;;;;;32097:315;;;;32431:9;32443:1;32431:13;;32426:134;32450:10;32446:1;:14;32426:134;;;32482:66;32492:10;32504:15;32520:1;32504:18;;;;;;;;:::i;:::-;;;;;;;;32537:10;:8;:10::i;:::-;32533:2;:14;;;;:::i;:::-;32524:6;:23;;;;:::i;:::-;32482:9;:66::i;:::-;32462:3;;;;;;;32426:134;;;;31669:898;;;27953:20:::1;:18;:20::i;:::-;31577:990:::0;;:::o;14837:142::-;14917:7;14944:11;:18;14956:5;14944:18;;;;;;;;;;;;;;;:27;14963:7;14944:27;;;;;;;;;;;;;;;;14937:34;;14837:142;;;;:::o;24986:220::-;23939:13;:11;:13::i;:::-;25091:1:::1;25071:22;;:8;:22;;::::0;25067:93:::1;;25145:1;25117:31;;;;;;;;;;;:::i;:::-;;;;;;;;25067:93;25170:28;25189:8;25170:18;:28::i;:::-;24986:220:::0;:::o;24218:166::-;24289:12;:10;:12::i;:::-;24278:23;;:7;:5;:7::i;:::-;:23;;;24274:103;;24352:12;:10;:12::i;:::-;24325:40;;;;;;;;;;;:::i;:::-;;;;;;;;24274:103;24218:166::o;4304:98::-;4357:7;4384:10;4377:17;;4304:98;:::o;20157:130::-;20242:37;20251:5;20258:7;20267:5;20274:4;20242:8;:37::i;:::-;20157:130;;;:::o;16098:249::-;16185:4;16202:15;16220:12;:10;:12::i;:::-;16202:30;;16243:37;16259:4;16265:7;16274:5;16243:15;:37::i;:::-;16291:26;16301:4;16307:2;16311:5;16291:9;:26::i;:::-;16335:4;16328:11;;;16098:249;;;;;:::o;25366:191::-;25440:16;25459:6;;;;;;;;;;;25440:25;;25485:8;25476:6;;:17;;;;;;;;;;;;;;;;;;25540:8;25509:40;;25530:8;25509:40;;;;;;;;;;;;25429:128;25366:191;:::o;14592:182::-;14661:4;14678:13;14694:12;:10;:12::i;:::-;14678:28;;14717:27;14727:5;14734:2;14738:5;14717:9;:27::i;:::-;14762:4;14755:11;;;14592:182;;;;:::o;31056:511::-;31119:13;31145;31185:5;31169:23;;31161:32;;31145:48;;31204:21;:42;;;;;;;;;;;;;;;;;;;31261:16;31290:2;31280:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31261:32;;31304:12;:3;31308:1;31304:6;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;31327;:3;31331:1;31327:6;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;31355:9;31367:1;31355:13;;31350:181;31374:2;31370:1;:6;31350:181;;;31415:8;31447:1;31430:5;31440:2;31436:1;:6;;;;:::i;:::-;31430:13;;;;;;;:::i;:::-;;;;;:18;;;;;31424:25;;31415:35;;;;;;;;;;:::i;:::-;;;;;;;;;;31398:3;31410:1;31406;:5;;;;:::i;:::-;31402:1;:9;;;;:::i;:::-;31398:14;;;;;;;;:::i;:::-;;;;;:52;;;;;;;;;;;31482:8;31513:4;31497:20;;:5;31507:2;31503:1;:6;;;;:::i;:::-;31497:13;;;;;;;:::i;:::-;;;;;:20;31491:27;;31482:37;;;;;;;;;;:::i;:::-;;;;;;;;;;31465:3;31477:1;31473;:5;;;;:::i;:::-;31469:1;:9;;;;:::i;:::-;31465:14;;;;;;;;:::i;:::-;;;;;:54;;;;;;;;;;;31378:3;;;;;;;31350:181;;;;31555:3;31541:18;;;;;31056:511;;;:::o;27989:293::-;27391:1;28123:7;;:19;28115:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27391:1;28256:7;:18;;;;27989:293::o;16732:308::-;16832:1;16816:18;;:4;:18;;;16812:88;;16885:1;16858:30;;;;;;;;;;;:::i;:::-;;;;;;;;16812:88;16928:1;16914:16;;:2;:16;;;16910:88;;16983:1;16954:32;;;;;;;;;;;:::i;:::-;;;;;;;;16910:88;17008:24;17016:4;17022:2;17026:5;17008:7;:24::i;:::-;16732:308;;;:::o;28290:213::-;27347:1;28473:7;:22;;;;28290:213::o;21154:443::-;21284:1;21267:19;;:5;:19;;;21263:91;;21339:1;21310:32;;;;;;;;;;;:::i;:::-;;;;;;;;21263:91;21387:1;21368:21;;:7;:21;;;21364:92;;21441:1;21413:31;;;;;;;;;;;:::i;:::-;;;;;;;;21364:92;21496:5;21466:11;:18;21478:5;21466:18;;;;;;;;;;;;;;;:27;21485:7;21466:27;;;;;;;;;;;;;;;:35;;;;21516:9;21512:78;;;21563:7;21547:31;;21556:5;21547:31;;;21572:5;21547:31;;;;;;:::i;:::-;;;;;;;;21512:78;21154:443;;;;:::o;21889:487::-;21989:24;22016:25;22026:5;22033:7;22016:9;:25::i;:::-;21989:52;;22076:17;22056:16;:37;22052:317;;22133:5;22114:16;:24;22110:132;;;22193:7;22202:16;22220:5;22166:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22110:132;22285:57;22294:5;22301:7;22329:5;22310:16;:24;22336:5;22285:8;:57::i;:::-;22052:317;21978:398;21889:487;;;:::o;17364:1135::-;17470:1;17454:18;;:4;:18;;;17450:552;;17608:5;17592:12;;:21;;;;;;;:::i;:::-;;;;;;;;17450:552;;;17646:19;17668:9;:15;17678:4;17668:15;;;;;;;;;;;;;;;;17646:37;;17716:5;17702:11;:19;17698:117;;;17774:4;17780:11;17793:5;17749:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17698:117;17970:5;17956:11;:19;17938:9;:15;17948:4;17938:15;;;;;;;;;;;;;;;:37;;;;17631:371;17450:552;18032:1;18018:16;;:2;:16;;;18014:435;;18200:5;18184:12;;:21;;;;;;;;;;;18014:435;;;18417:5;18400:9;:13;18410:2;18400:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18014:435;18481:2;18466:25;;18475:4;18466:25;;;18485:5;18466:25;;;;;;:::i;:::-;;;;;;;;17364:1135;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:139::-;1545:6;1540:3;1535;1529:23;1586:1;1577:6;1572:3;1568:16;1561:27;1456:139;;;:::o;1601:102::-;1642:6;1693:2;1689:7;1684:2;1677:5;1673:14;1669:28;1659:38;;1601:102;;;:::o;1709:377::-;1797:3;1825:39;1858:5;1825:39;:::i;:::-;1880:71;1944:6;1939:3;1880:71;:::i;:::-;1873:78;;1960:65;2018:6;2013:3;2006:4;1999:5;1995:16;1960:65;:::i;:::-;2050:29;2072:6;2050:29;:::i;:::-;2045:3;2041:39;2034:46;;1801:285;1709:377;;;;:::o;2092:313::-;2205:4;2243:2;2232:9;2228:18;2220:26;;2292:9;2286:4;2282:20;2278:1;2267:9;2263:17;2256:47;2320:78;2393:4;2384:6;2320:78;:::i;:::-;2312:86;;2092:313;;;;:::o;2411:77::-;2448:7;2477:5;2466:16;;2411:77;;;:::o;2494:122::-;2567:24;2585:5;2567:24;:::i;:::-;2560:5;2557:35;2547:63;;2606:1;2603;2596:12;2547:63;2494:122;:::o;2622:139::-;2668:5;2706:6;2693:20;2684:29;;2722:33;2749:5;2722:33;:::i;:::-;2622:139;;;;:::o;2767:474::-;2835:6;2843;2892:2;2880:9;2871:7;2867:23;2863:32;2860:119;;;2898:79;;:::i;:::-;2860:119;3018:1;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2989:117;3145:2;3171:53;3216:7;3207:6;3196:9;3192:22;3171:53;:::i;:::-;3161:63;;3116:118;2767:474;;;;;:::o;3247:90::-;3281:7;3324:5;3317:13;3310:21;3299:32;;3247:90;;;:::o;3343:109::-;3424:21;3439:5;3424:21;:::i;:::-;3419:3;3412:34;3343:109;;:::o;3458:210::-;3545:4;3583:2;3572:9;3568:18;3560:26;;3596:65;3658:1;3647:9;3643:17;3634:6;3596:65;:::i;:::-;3458:210;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:117::-;5190:1;5187;5180:12;5204:117;5313:1;5310;5303:12;5327:180;5375:77;5372:1;5365:88;5472:4;5469:1;5462:15;5496:4;5493:1;5486:15;5513:281;5596:27;5618:4;5596:27;:::i;:::-;5588:6;5584:40;5726:6;5714:10;5711:22;5690:18;5678:10;5675:34;5672:62;5669:88;;;5737:18;;:::i;:::-;5669:88;5777:10;5773:2;5766:22;5556:238;5513:281;;:::o;5800:129::-;5834:6;5861:20;;:::i;:::-;5851:30;;5890:33;5918:4;5910:6;5890:33;:::i;:::-;5800:129;;;:::o;5935:308::-;5997:4;6087:18;6079:6;6076:30;6073:56;;;6109:18;;:::i;:::-;6073:56;6147:29;6169:6;6147:29;:::i;:::-;6139:37;;6231:4;6225;6221:15;6213:23;;5935:308;;;:::o;6249:148::-;6347:6;6342:3;6337;6324:30;6388:1;6379:6;6374:3;6370:16;6363:27;6249:148;;;:::o;6403:425::-;6481:5;6506:66;6522:49;6564:6;6522:49;:::i;:::-;6506:66;:::i;:::-;6497:75;;6595:6;6588:5;6581:21;6633:4;6626:5;6622:16;6671:3;6662:6;6657:3;6653:16;6650:25;6647:112;;;6678:79;;:::i;:::-;6647:112;6768:54;6815:6;6810:3;6805;6768:54;:::i;:::-;6487:341;6403:425;;;;;:::o;6848:340::-;6904:5;6953:3;6946:4;6938:6;6934:17;6930:27;6920:122;;6961:79;;:::i;:::-;6920:122;7078:6;7065:20;7103:79;7178:3;7170:6;7163:4;7155:6;7151:17;7103:79;:::i;:::-;7094:88;;6910:278;6848:340;;;;:::o;7194:509::-;7263:6;7312:2;7300:9;7291:7;7287:23;7283:32;7280:119;;;7318:79;;:::i;:::-;7280:119;7466:1;7455:9;7451:17;7438:31;7496:18;7488:6;7485:30;7482:117;;;7518:79;;:::i;:::-;7482:117;7623:63;7678:7;7669:6;7658:9;7654:22;7623:63;:::i;:::-;7613:73;;7409:287;7194:509;;;;:::o;7709:118::-;7796:24;7814:5;7796:24;:::i;:::-;7791:3;7784:37;7709:118;;:::o;7833:222::-;7926:4;7964:2;7953:9;7949:18;7941:26;;7977:71;8045:1;8034:9;8030:17;8021:6;7977:71;:::i;:::-;7833:222;;;;:::o;8061:311::-;8138:4;8228:18;8220:6;8217:30;8214:56;;;8250:18;;:::i;:::-;8214:56;8300:4;8292:6;8288:17;8280:25;;8360:4;8354;8350:15;8342:23;;8061:311;;;:::o;8378:117::-;8487:1;8484;8477:12;8518:710;8614:5;8639:81;8655:64;8712:6;8655:64;:::i;:::-;8639:81;:::i;:::-;8630:90;;8740:5;8769:6;8762:5;8755:21;8803:4;8796:5;8792:16;8785:23;;8856:4;8848:6;8844:17;8836:6;8832:30;8885:3;8877:6;8874:15;8871:122;;;8904:79;;:::i;:::-;8871:122;9019:6;9002:220;9036:6;9031:3;9028:15;9002:220;;;9111:3;9140:37;9173:3;9161:10;9140:37;:::i;:::-;9135:3;9128:50;9207:4;9202:3;9198:14;9191:21;;9078:144;9062:4;9057:3;9053:14;9046:21;;9002:220;;;9006:21;8620:608;;8518:710;;;;;:::o;9251:370::-;9322:5;9371:3;9364:4;9356:6;9352:17;9348:27;9338:122;;9379:79;;:::i;:::-;9338:122;9496:6;9483:20;9521:94;9611:3;9603:6;9596:4;9588:6;9584:17;9521:94;:::i;:::-;9512:103;;9328:293;9251:370;;;;:::o;9627:684::-;9720:6;9728;9777:2;9765:9;9756:7;9752:23;9748:32;9745:119;;;9783:79;;:::i;:::-;9745:119;9931:1;9920:9;9916:17;9903:31;9961:18;9953:6;9950:30;9947:117;;;9983:79;;:::i;:::-;9947:117;10088:78;10158:7;10149:6;10138:9;10134:22;10088:78;:::i;:::-;10078:88;;9874:302;10215:2;10241:53;10286:7;10277:6;10266:9;10262:22;10241:53;:::i;:::-;10231:63;;10186:118;9627:684;;;;;:::o;10317:474::-;10385:6;10393;10442:2;10430:9;10421:7;10417:23;10413:32;10410:119;;;10448:79;;:::i;:::-;10410:119;10568:1;10593:53;10638:7;10629:6;10618:9;10614:22;10593:53;:::i;:::-;10583:63;;10539:117;10695:2;10721:53;10766:7;10757:6;10746:9;10742:22;10721:53;:::i;:::-;10711:63;;10666:118;10317:474;;;;;:::o;10797:176::-;10937:28;10933:1;10925:6;10921:14;10914:52;10797:176;:::o;10979:366::-;11121:3;11142:67;11206:2;11201:3;11142:67;:::i;:::-;11135:74;;11218:93;11307:3;11218:93;:::i;:::-;11336:2;11331:3;11327:12;11320:19;;10979:366;;;:::o;11351:419::-;11517:4;11555:2;11544:9;11540:18;11532:26;;11604:9;11598:4;11594:20;11590:1;11579:9;11575:17;11568:47;11632:131;11758:4;11632:131;:::i;:::-;11624:139;;11351:419;;;:::o;11776:180::-;11824:77;11821:1;11814:88;11921:4;11918:1;11911:15;11945:4;11942:1;11935:15;11962:180;12010:77;12007:1;12000:88;12107:4;12104:1;12097:15;12131:4;12128:1;12121:15;12148:194;12188:4;12208:20;12226:1;12208:20;:::i;:::-;12203:25;;12242:20;12260:1;12242:20;:::i;:::-;12237:25;;12286:1;12283;12279:9;12271:17;;12310:1;12304:4;12301:11;12298:37;;;12315:18;;:::i;:::-;12298:37;12148:194;;;;:::o;12348:180::-;12396:77;12393:1;12386:88;12493:4;12490:1;12483:15;12517:4;12514:1;12507:15;12534:180;12582:77;12579:1;12572:88;12679:4;12676:1;12669:15;12703:4;12700:1;12693:15;12720:320;12764:6;12801:1;12795:4;12791:12;12781:22;;12848:1;12842:4;12838:12;12869:18;12859:81;;12925:4;12917:6;12913:17;12903:27;;12859:81;12987:2;12979:6;12976:14;12956:18;12953:38;12950:84;;13006:18;;:::i;:::-;12950:84;12771:269;12720:320;;;:::o;13046:220::-;13186:34;13182:1;13174:6;13170:14;13163:58;13255:3;13250:2;13242:6;13238:15;13231:28;13046:220;:::o;13272:366::-;13414:3;13435:67;13499:2;13494:3;13435:67;:::i;:::-;13428:74;;13511:93;13600:3;13511:93;:::i;:::-;13629:2;13624:3;13620:12;13613:19;;13272:366;;;:::o;13644:419::-;13810:4;13848:2;13837:9;13833:18;13825:26;;13897:9;13891:4;13887:20;13883:1;13872:9;13868:17;13861:47;13925:131;14051:4;13925:131;:::i;:::-;13917:139;;13644:419;;;:::o;14069:180::-;14209:32;14205:1;14197:6;14193:14;14186:56;14069:180;:::o;14255:366::-;14397:3;14418:67;14482:2;14477:3;14418:67;:::i;:::-;14411:74;;14494:93;14583:3;14494:93;:::i;:::-;14612:2;14607:3;14603:12;14596:19;;14255:366;;;:::o;14627:419::-;14793:4;14831:2;14820:9;14816:18;14808:26;;14880:9;14874:4;14870:20;14866:1;14855:9;14851:17;14844:47;14908:131;15034:4;14908:131;:::i;:::-;14900:139;;14627:419;;;:::o;15052:177::-;15192:29;15188:1;15180:6;15176:14;15169:53;15052:177;:::o;15235:366::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:419::-;15773:4;15811:2;15800:9;15796:18;15788:26;;15860:9;15854:4;15850:20;15846:1;15835:9;15831:17;15824:47;15888:131;16014:4;15888:131;:::i;:::-;15880:139;;15607:419;;;:::o;16032:141::-;16081:4;16104:3;16096:11;;16127:3;16124:1;16117:14;16161:4;16158:1;16148:18;16140:26;;16032:141;;;:::o;16179:93::-;16216:6;16263:2;16258;16251:5;16247:14;16243:23;16233:33;;16179:93;;;:::o;16278:107::-;16322:8;16372:5;16366:4;16362:16;16341:37;;16278:107;;;;:::o;16391:393::-;16460:6;16510:1;16498:10;16494:18;16533:97;16563:66;16552:9;16533:97;:::i;:::-;16651:39;16681:8;16670:9;16651:39;:::i;:::-;16639:51;;16723:4;16719:9;16712:5;16708:21;16699:30;;16772:4;16762:8;16758:19;16751:5;16748:30;16738:40;;16467:317;;16391:393;;;;;:::o;16790:60::-;16818:3;16839:5;16832:12;;16790:60;;;:::o;16856:142::-;16906:9;16939:53;16957:34;16966:24;16984:5;16966:24;:::i;:::-;16957:34;:::i;:::-;16939:53;:::i;:::-;16926:66;;16856:142;;;:::o;17004:75::-;17047:3;17068:5;17061:12;;17004:75;;;:::o;17085:269::-;17195:39;17226:7;17195:39;:::i;:::-;17256:91;17305:41;17329:16;17305:41;:::i;:::-;17297:6;17290:4;17284:11;17256:91;:::i;:::-;17250:4;17243:105;17161:193;17085:269;;;:::o;17360:73::-;17405:3;17426:1;17419:8;;17360:73;:::o;17439:189::-;17516:32;;:::i;:::-;17557:65;17615:6;17607;17601:4;17557:65;:::i;:::-;17492:136;17439:189;;:::o;17634:186::-;17694:120;17711:3;17704:5;17701:14;17694:120;;;17765:39;17802:1;17795:5;17765:39;:::i;:::-;17738:1;17731:5;17727:13;17718:22;;17694:120;;;17634:186;;:::o;17826:543::-;17927:2;17922:3;17919:11;17916:446;;;17961:38;17993:5;17961:38;:::i;:::-;18045:29;18063:10;18045:29;:::i;:::-;18035:8;18031:44;18228:2;18216:10;18213:18;18210:49;;;18249:8;18234:23;;18210:49;18272:80;18328:22;18346:3;18328:22;:::i;:::-;18318:8;18314:37;18301:11;18272:80;:::i;:::-;17931:431;;17916:446;17826:543;;;:::o;18375:117::-;18429:8;18479:5;18473:4;18469:16;18448:37;;18375:117;;;;:::o;18498:169::-;18542:6;18575:51;18623:1;18619:6;18611:5;18608:1;18604:13;18575:51;:::i;:::-;18571:56;18656:4;18650;18646:15;18636:25;;18549:118;18498:169;;;;:::o;18672:295::-;18748:4;18894:29;18919:3;18913:4;18894:29;:::i;:::-;18886:37;;18956:3;18953:1;18949:11;18943:4;18940:21;18932:29;;18672:295;;;;:::o;18972:1395::-;19089:37;19122:3;19089:37;:::i;:::-;19191:18;19183:6;19180:30;19177:56;;;19213:18;;:::i;:::-;19177:56;19257:38;19289:4;19283:11;19257:38;:::i;:::-;19342:67;19402:6;19394;19388:4;19342:67;:::i;:::-;19436:1;19460:4;19447:17;;19492:2;19484:6;19481:14;19509:1;19504:618;;;;20166:1;20183:6;20180:77;;;20232:9;20227:3;20223:19;20217:26;20208:35;;20180:77;20283:67;20343:6;20336:5;20283:67;:::i;:::-;20277:4;20270:81;20139:222;19474:887;;19504:618;19556:4;19552:9;19544:6;19540:22;19590:37;19622:4;19590:37;:::i;:::-;19649:1;19663:208;19677:7;19674:1;19671:14;19663:208;;;19756:9;19751:3;19747:19;19741:26;19733:6;19726:42;19807:1;19799:6;19795:14;19785:24;;19854:2;19843:9;19839:18;19826:31;;19700:4;19697:1;19693:12;19688:17;;19663:208;;;19899:6;19890:7;19887:19;19884:179;;;19957:9;19952:3;19948:19;19942:26;20000:48;20042:4;20034:6;20030:17;20019:9;20000:48;:::i;:::-;19992:6;19985:64;19907:156;19884:179;20109:1;20105;20097:6;20093:14;20089:22;20083:4;20076:36;19511:611;;;19474:887;;19064:1303;;;18972:1395;;:::o;20373:148::-;20475:11;20512:3;20497:18;;20373:148;;;;:::o;20527:390::-;20633:3;20661:39;20694:5;20661:39;:::i;:::-;20716:89;20798:6;20793:3;20716:89;:::i;:::-;20709:96;;20814:65;20872:6;20867:3;20860:4;20853:5;20849:16;20814:65;:::i;:::-;20904:6;20899:3;20895:16;20888:23;;20637:280;20527:390;;;;:::o;20923:214::-;21063:66;21059:1;21051:6;21047:14;21040:90;20923:214;:::o;21143:400::-;21303:3;21324:84;21406:1;21401:3;21324:84;:::i;:::-;21317:91;;21417:93;21506:3;21417:93;:::i;:::-;21535:1;21530:3;21526:11;21519:18;;21143:400;;;:::o;21549:541::-;21782:3;21804:95;21895:3;21886:6;21804:95;:::i;:::-;21797:102;;21916:148;22060:3;21916:148;:::i;:::-;21909:155;;22081:3;22074:10;;21549:541;;;;:::o;22096:435::-;22276:3;22298:95;22389:3;22380:6;22298:95;:::i;:::-;22291:102;;22410:95;22501:3;22492:6;22410:95;:::i;:::-;22403:102;;22522:3;22515:10;;22096:435;;;;;:::o;22537:181::-;22677:33;22673:1;22665:6;22661:14;22654:57;22537:181;:::o;22724:366::-;22866:3;22887:67;22951:2;22946:3;22887:67;:::i;:::-;22880:74;;22963:93;23052:3;22963:93;:::i;:::-;23081:2;23076:3;23072:12;23065:19;;22724:366;;;:::o;23096:419::-;23262:4;23300:2;23289:9;23285:18;23277:26;;23349:9;23343:4;23339:20;23335:1;23324:9;23320:17;23313:47;23377:131;23503:4;23377:131;:::i;:::-;23369:139;;23096:419;;;:::o;23521:224::-;23661:34;23657:1;23649:6;23645:14;23638:58;23730:7;23725:2;23717:6;23713:15;23706:32;23521:224;:::o;23751:366::-;23893:3;23914:67;23978:2;23973:3;23914:67;:::i;:::-;23907:74;;23990:93;24079:3;23990:93;:::i;:::-;24108:2;24103:3;24099:12;24092:19;;23751:366;;;:::o;24123:419::-;24289:4;24327:2;24316:9;24312:18;24304:26;;24376:9;24370:4;24366:20;24362:1;24351:9;24347:17;24340:47;24404:131;24530:4;24404:131;:::i;:::-;24396:139;;24123:419;;;:::o;24548:410::-;24588:7;24611:20;24629:1;24611:20;:::i;:::-;24606:25;;24645:20;24663:1;24645:20;:::i;:::-;24640:25;;24700:1;24697;24693:9;24722:30;24740:11;24722:30;:::i;:::-;24711:41;;24901:1;24892:7;24888:15;24885:1;24882:22;24862:1;24855:9;24835:83;24812:139;;24931:18;;:::i;:::-;24812:139;24596:362;24548:410;;;;:::o;24964:178::-;25104:30;25100:1;25092:6;25088:14;25081:54;24964:178;:::o;25148:366::-;25290:3;25311:67;25375:2;25370:3;25311:67;:::i;:::-;25304:74;;25387:93;25476:3;25387:93;:::i;:::-;25505:2;25500:3;25496:12;25489:19;;25148:366;;;:::o;25520:419::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:233::-;25984:3;26007:24;26025:5;26007:24;:::i;:::-;25998:33;;26053:66;26046:5;26043:77;26040:103;;26123:18;;:::i;:::-;26040:103;26170:1;26163:5;26159:13;26152:20;;25945:233;;;:::o;26184:102::-;26226:8;26273:5;26270:1;26266:13;26245:34;;26184:102;;;:::o;26292:848::-;26353:5;26360:4;26384:6;26375:15;;26408:5;26399:14;;26422:712;26443:1;26433:8;26430:15;26422:712;;;26538:4;26533:3;26529:14;26523:4;26520:24;26517:50;;;26547:18;;:::i;:::-;26517:50;26597:1;26587:8;26583:16;26580:451;;;27012:4;27005:5;27001:16;26992:25;;26580:451;27062:4;27056;27052:15;27044:23;;27092:32;27115:8;27092:32;:::i;:::-;27080:44;;26422:712;;;26292:848;;;;;;;:::o;27146:1073::-;27200:5;27391:8;27381:40;;27412:1;27403:10;;27414:5;;27381:40;27440:4;27430:36;;27457:1;27448:10;;27459:5;;27430:36;27526:4;27574:1;27569:27;;;;27610:1;27605:191;;;;27519:277;;27569:27;27587:1;27578:10;;27589:5;;;27605:191;27650:3;27640:8;27637:17;27634:43;;;27657:18;;:::i;:::-;27634:43;27706:8;27703:1;27699:16;27690:25;;27741:3;27734:5;27731:14;27728:40;;;27748:18;;:::i;:::-;27728:40;27781:5;;;27519:277;;27905:2;27895:8;27892:16;27886:3;27880:4;27877:13;27873:36;27855:2;27845:8;27842:16;27837:2;27831:4;27828:12;27824:35;27808:111;27805:246;;;27961:8;27955:4;27951:19;27942:28;;27996:3;27989:5;27986:14;27983:40;;;28003:18;;:::i;:::-;27983:40;28036:5;;27805:246;28076:42;28114:3;28104:8;28098:4;28095:1;28076:42;:::i;:::-;28061:57;;;;28150:4;28145:3;28141:14;28134:5;28131:25;28128:51;;;28159:18;;:::i;:::-;28128:51;28208:4;28201:5;28197:16;28188:25;;27146:1073;;;;;;:::o;28225:281::-;28283:5;28307:23;28325:4;28307:23;:::i;:::-;28299:31;;28351:25;28367:8;28351:25;:::i;:::-;28339:37;;28395:104;28432:66;28422:8;28416:4;28395:104;:::i;:::-;28386:113;;28225:281;;;;:::o;28512:191::-;28552:3;28571:20;28589:1;28571:20;:::i;:::-;28566:25;;28605:20;28623:1;28605:20;:::i;:::-;28600:25;;28648:1;28645;28641:9;28634:16;;28669:3;28666:1;28663:10;28660:36;;;28676:18;;:::i;:::-;28660:36;28512:191;;;;:::o;28709:181::-;28849:33;28845:1;28837:6;28833:14;28826:57;28709:181;:::o;28896:366::-;29038:3;29059:67;29123:2;29118:3;29059:67;:::i;:::-;29052:74;;29135:93;29224:3;29135:93;:::i;:::-;29253:2;29248:3;29244:12;29237:19;;28896:366;;;:::o;29268:419::-;29434:4;29472:2;29461:9;29457:18;29449:26;;29521:9;29515:4;29511:20;29507:1;29496:9;29492:17;29485:47;29549:131;29675:4;29549:131;:::i;:::-;29541:139;;29268:419;;;:::o;29693:442::-;29842:4;29880:2;29869:9;29865:18;29857:26;;29893:71;29961:1;29950:9;29946:17;29937:6;29893:71;:::i;:::-;29974:72;30042:2;30031:9;30027:18;30018:6;29974:72;:::i;:::-;30056;30124:2;30113:9;30109:18;30100:6;30056:72;:::i;:::-;29693:442;;;;;;:::o
Swarm Source
ipfs://3fec43f6806a41cacf9d568cdb811b01bfc8b56d033f7c92d1127c70125df375
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.