Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- AngelOfCrypto
- Optimization enabled
- false
- Compiler version
- v0.8.10+commit.fc410830
- EVM Version
- default
- Verified at
- 2022-11-01T20:22:34.397450Z
Contract source code
// File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. * * By default, the owner account will be the one that deploys the contract. 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: AngelOfCrypto.sol pragma solidity 0.8.10; contract AngelOfCrypto is ERC20, Ownable { uint public taxFee = 170; uint public charityFee = 300; uint public marketingFee = 200; uint public automatedBurnFee = 100; uint public maxWalletSize = 77777777 ether; uint public maxTransactionSize = 77777777 ether; address private taxWallet = payable(0x3fb57722192fE56ed02b52C1ef487881cb9C29A2); address private charityWallet = payable(0x37A9875B16a865e29cF7Fb379eD002C4c15Abb53); address private marketingWallet = payable(0xB15637C2c77dd7ADc14a4a67DAc1aEd60536a933); address private automatedBurnWallet = payable(0x000000000000000000000000000000000000dEaD); bool public isEnabledFees = true; struct manageFees{ bool isTaxFee; bool isCharityFee; bool isMarketingFee; bool isAutomatedBurnFee; } mapping (address => manageFees) public whiteList; constructor() ERC20("AngelOfCrypto", "AOC") { _mint(msg.sender, 77777777 ether); } event Received(address, uint); receive() external payable { emit Received(msg.sender, msg.value); } function _transfer(address sender, address recipient, uint amount) internal override(ERC20) { uint feeAmount = 0; require(amount <= maxTransactionSize, "ERROR: amount is bigger than maxTransactionSize!!!"); if(isEnabledFees) { if(whiteList[recipient].isTaxFee == false && taxFee != 0) { super._transfer(sender, taxWallet, amount * taxFee / 10000); feeAmount += amount * taxFee / 10000; } if(whiteList[recipient].isCharityFee == false && charityFee != 0) { super._transfer(sender, charityWallet, amount * charityFee / 10000); feeAmount += amount * charityFee / 10000; } if(whiteList[recipient].isMarketingFee == false && marketingFee != 0) { super._transfer(sender, marketingWallet, amount * marketingFee / 10000); feeAmount += amount * marketingFee / 10000; } if(whiteList[recipient].isAutomatedBurnFee == false && automatedBurnFee != 0) { super._transfer(sender, automatedBurnWallet, amount * automatedBurnFee / 10000); feeAmount += amount * automatedBurnFee / 10000; } } super._transfer(sender, recipient, amount - feeAmount); require(balanceOf(recipient) <= maxWalletSize, "ERROR: walletSize is overflowed!!!"); } function mint(address account, uint amount) external onlyOwner { super._mint(account, amount); } function setMaxWalletSize (uint _walletSize) external onlyOwner { maxWalletSize = _walletSize; } function setMaxTransactionSize (uint _transactionSize) external onlyOwner { maxTransactionSize = _transactionSize; } function setFeesWhiteList(address account, bool _isTaxFee, bool _isCharityFee, bool _isMarketingFee, bool _isAutomatedBurnFee) external onlyOwner { whiteList[account].isTaxFee = _isTaxFee; whiteList[account].isCharityFee = _isCharityFee; whiteList[account].isMarketingFee = _isMarketingFee; whiteList[account].isAutomatedBurnFee = _isAutomatedBurnFee; } function setFeesWallets(address _taxWallet, address _charityWallet, address _marketingWallet, address _automatedBurnWallet) external onlyOwner { taxWallet = payable(_taxWallet); charityWallet = payable(_charityWallet); marketingWallet = payable(_marketingWallet); automatedBurnWallet = payable(_automatedBurnWallet); } function setEnabledFees(bool _isEnabledFees) external onlyOwner { isEnabledFees = _isEnabledFees; } function setFees(uint _taxFee, uint _charityFee, uint _marketingFee, uint _automatedBurnFee) external onlyOwner { taxFee = _taxFee; charityFee = _charityFee; marketingFee = _marketingFee; automatedBurnFee = _automatedBurnFee; } function rescueToken(address token, address to) external onlyOwner { IERC20(token).transfer(to, IERC20(token).balanceOf(address(this))); } function rescue(uint amount, address to) external onlyOwner{ payable(to).transfer(amount); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Received","inputs":[{"type":"address","name":"","internalType":"address","indexed":false},{"type":"uint256","name":"","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"automatedBurnFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"charityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isEnabledFees","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"marketingFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxTransactionSize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxWalletSize","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"rescue","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"rescueToken","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEnabledFees","inputs":[{"type":"bool","name":"_isEnabledFees","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFees","inputs":[{"type":"uint256","name":"_taxFee","internalType":"uint256"},{"type":"uint256","name":"_charityFee","internalType":"uint256"},{"type":"uint256","name":"_marketingFee","internalType":"uint256"},{"type":"uint256","name":"_automatedBurnFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeesWallets","inputs":[{"type":"address","name":"_taxWallet","internalType":"address"},{"type":"address","name":"_charityWallet","internalType":"address"},{"type":"address","name":"_marketingWallet","internalType":"address"},{"type":"address","name":"_automatedBurnWallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeesWhiteList","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bool","name":"_isTaxFee","internalType":"bool"},{"type":"bool","name":"_isCharityFee","internalType":"bool"},{"type":"bool","name":"_isMarketingFee","internalType":"bool"},{"type":"bool","name":"_isAutomatedBurnFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxTransactionSize","inputs":[{"type":"uint256","name":"_transactionSize","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxWalletSize","inputs":[{"type":"uint256","name":"_walletSize","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"isTaxFee","internalType":"bool"},{"type":"bool","name":"isCharityFee","internalType":"bool"},{"type":"bool","name":"isMarketingFee","internalType":"bool"},{"type":"bool","name":"isAutomatedBurnFee","internalType":"bool"}],"name":"whiteList","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x608060405260aa60065561012c60075560c860085560646009556a405615bd5e98512f240000600a556a405615bd5e98512f240000600b55733fb57722192fe56ed02b52c1ef487881cb9c29a2600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507337a9875b16a865e29cf7fb379ed002c4c15abb53600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b15637c2c77dd7adc14a4a67dac1aed60536a933600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60146101000a81548160ff021916908315150217905550348015620001a157600080fd5b506040518060400160405280600d81526020017f416e67656c4f6643727970746f000000000000000000000000000000000000008152506040518060400160405280600381526020017f414f430000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000226929190620004d6565b5080600490805190602001906200023f929190620004d6565b50505062000262620002566200028560201b60201c565b6200028d60201b60201c565b6200027f336a405615bd5e98512f2400006200035360201b60201c565b62000732565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bd90620005e7565b60405180910390fd5b620003da60008383620004cc60201b60201c565b8060026000828254620003ee919062000642565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000445919062000642565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004ac9190620006b0565b60405180910390a3620004c860008383620004d160201b60201c565b5050565b505050565b505050565b828054620004e490620006fc565b90600052602060002090601f01602090048101928262000508576000855562000554565b82601f106200052357805160ff191683800117855562000554565b8280016001018555821562000554579182015b828111156200055357825182559160200191906001019062000536565b5b50905062000563919062000567565b5090565b5b808211156200058257600081600090555060010162000568565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005cf601f8362000586565b9150620005dc8262000597565b602082019050919050565b600060208201905081810360008301526200060281620005c0565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200064f8262000609565b91506200065c8362000609565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000694576200069362000613565b5b828201905092915050565b620006aa8162000609565b82525050565b6000602082019050620006c760008301846200069f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071557607f821691505b602082108114156200072c576200072b620006cd565b5b50919050565b612af680620007426000396000f3fe6080604052600436106101dc5760003560e01c806385c2180111610102578063a923625c11610095578063ea1644d511610064578063ea1644d51461071b578063ecfca89914610744578063f2fde38b1461076f578063f7266953146107985761021c565b8063a923625c14610661578063a9e59da31461068a578063cbecd387146106b3578063dd62ed3e146106de5761021c565b80639fd8197f116100d15780639fd8197f14610593578063a071dcf4146105bc578063a457c2d7146105e7578063a9059cbb146106245761021c565b806385c21801146104e95780638da5cb5b146105125780638f3fa8601461053d57806395d89b41146105685761021c565b8063395093511161017a5780636b67c4df116101495780636b67c4df146104415780636fcba3771461046c57806370a0823114610495578063715018a6146104d25761021c565b8063395093511461038757806340c10f19146103c45780634707d000146103ed578063552b3788146104165761021c565b806323b872dd116101b657806323b872dd146102b457806328b13b61146102f1578063313ce5671461031c578063372c12b1146103475761021c565b806306fdde0314610221578063095ea7b31461024c57806318160ddd146102895761021c565b3661021c577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610212929190611cca565b60405180910390a1005b600080fd5b34801561022d57600080fd5b506102366107c1565b6040516102439190611d8c565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e9190611e0b565b610853565b6040516102809190611e66565b60405180910390f35b34801561029557600080fd5b5061029e610876565b6040516102ab9190611e81565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190611e9c565b610880565b6040516102e89190611e66565b60405180910390f35b3480156102fd57600080fd5b506103066108af565b6040516103139190611e81565b60405180910390f35b34801561032857600080fd5b506103316108b5565b60405161033e9190611f0b565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190611f26565b6108be565b60405161037e9493929190611f53565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190611e0b565b610922565b6040516103bb9190611e66565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190611e0b565b610959565b005b3480156103f957600080fd5b50610414600480360381019061040f9190611f98565b61096f565b005b34801561042257600080fd5b5061042b610a73565b6040516104389190611e66565b60405180910390f35b34801561044d57600080fd5b50610456610a86565b6040516104639190611e81565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190611fd8565b610a8c565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190611f26565b610ab6565b6040516104c99190611e81565b60405180910390f35b3480156104de57600080fd5b506104e7610afe565b005b3480156104f557600080fd5b50610510600480360381019061050b919061206b565b610b12565b005b34801561051e57600080fd5b50610527610c89565b60405161053491906120e6565b60405180910390f35b34801561054957600080fd5b50610552610cb3565b60405161055f9190611e81565b60405180910390f35b34801561057457600080fd5b5061057d610cb9565b60405161058a9190611d8c565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612101565b610d4b565b005b3480156105c857600080fd5b506105d1610e5d565b6040516105de9190611e81565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190611e0b565b610e63565b60405161061b9190611e66565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190611e0b565b610eda565b6040516106589190611e66565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612168565b610efd565b005b34801561069657600080fd5b506106b160048036038101906106ac91906121a8565b610f50565b005b3480156106bf57600080fd5b506106c8610f62565b6040516106d59190611e81565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190611f98565b610f68565b6040516107129190611e81565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906121a8565b610fef565b005b34801561075057600080fd5b50610759611001565b6040516107669190611e81565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190611f26565b611007565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906121d5565b61108b565b005b6060600380546107d090612231565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90612231565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b60008061085e6110b0565b905061086b8185856110b8565b600191505092915050565b6000600254905090565b60008061088b6110b0565b9050610898858285611283565b6108a385858561130f565b60019150509392505050565b600b5481565b60006012905090565b60106020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16908060000160039054906101000a900460ff16905084565b60008061092d6110b0565b905061094e81858561093f8589610f68565b6109499190612292565b6110b8565b600191505092915050565b610961611741565b61096b82826117bf565b5050565b610977611741565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109cd91906120e6565b602060405180830381865afa1580156109ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0e91906122fd565b6040518363ffffffff1660e01b8152600401610a2b929190611cca565b6020604051808303816000875af1158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e919061233f565b505050565b600f60149054906101000a900460ff1681565b60085481565b610a94611741565b8360068190555082600781905550816008819055508060098190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b06611741565b610b10600061191f565b565b610b1a611741565b83601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555082601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff02191690831515021790555081601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff02191690831515021790555080601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160036101000a81548160ff0219169083151502179055505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060048054610cc890612231565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490612231565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b610d53611741565b83600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60065481565b600080610e6e6110b0565b90506000610e7c8286610f68565b905083811015610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906123de565b60405180910390fd5b610ece82868684036110b8565b60019250505092915050565b600080610ee56110b0565b9050610ef281858561130f565b600191505092915050565b610f05611741565b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f4b573d6000803e3d6000fd5b505050565b610f58611741565b80600b8190555050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff7611741565b80600a8190555050565b60075481565b61100f611741565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612470565b60405180910390fd5b6110888161191f565b50565b611093611741565b80600f60146101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612594565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112769190611e81565b60405180910390a3505050565b600061128f8484610f68565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130957818110156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612600565b60405180910390fd5b61130884848484036110b8565b5b50505050565b6000600b54821115611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612692565b60405180910390fd5b600f60149054906101000a900460ff16156116d85760001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1615151480156113d15750600060065414155b156114465761141d84600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106006548661140e91906126b2565b611418919061273b565b6119e5565b6127106006548361142e91906126b2565b611438919061273b565b816114439190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a900460ff1615151480156114ac5750600060075414155b15611521576114f884600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600754866114e991906126b2565b6114f3919061273b565b6119e5565b6127106007548361150991906126b2565b611513919061273b565b8161151e9190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160029054906101000a900460ff1615151480156115875750600060085414155b156115fc576115d384600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600854866115c491906126b2565b6115ce919061273b565b6119e5565b612710600854836115e491906126b2565b6115ee919061273b565b816115f99190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160039054906101000a900460ff1615151480156116625750600060095414155b156116d7576116ae84600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106009548661169f91906126b2565b6116a9919061273b565b6119e5565b612710600954836116bf91906126b2565b6116c9919061273b565b816116d49190612292565b90505b5b6116ee848483856116e9919061276c565b6119e5565b600a546116fa84610ab6565b111561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290612812565b60405180910390fd5b50505050565b6117496110b0565b73ffffffffffffffffffffffffffffffffffffffff16611767610c89565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061287e565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906128ea565b60405180910390fd5b61183b60008383611c66565b806002600082825461184d9190612292565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190612292565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119079190611e81565b60405180910390a361191b60008383611c6b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c9061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90612a0e565b60405180910390fd5b611ad0838383611c66565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90612aa0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be99190612292565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4d9190611e81565b60405180910390a3611c60848484611c6b565b50505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c9b82611c70565b9050919050565b611cab81611c90565b82525050565b6000819050919050565b611cc481611cb1565b82525050565b6000604082019050611cdf6000830185611ca2565b611cec6020830184611cbb565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d2d578082015181840152602081019050611d12565b83811115611d3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d5e82611cf3565b611d688185611cfe565b9350611d78818560208601611d0f565b611d8181611d42565b840191505092915050565b60006020820190508181036000830152611da68184611d53565b905092915050565b600080fd5b611dbc81611c90565b8114611dc757600080fd5b50565b600081359050611dd981611db3565b92915050565b611de881611cb1565b8114611df357600080fd5b50565b600081359050611e0581611ddf565b92915050565b60008060408385031215611e2257611e21611dae565b5b6000611e3085828601611dca565b9250506020611e4185828601611df6565b9150509250929050565b60008115159050919050565b611e6081611e4b565b82525050565b6000602082019050611e7b6000830184611e57565b92915050565b6000602082019050611e966000830184611cbb565b92915050565b600080600060608486031215611eb557611eb4611dae565b5b6000611ec386828701611dca565b9350506020611ed486828701611dca565b9250506040611ee586828701611df6565b9150509250925092565b600060ff82169050919050565b611f0581611eef565b82525050565b6000602082019050611f206000830184611efc565b92915050565b600060208284031215611f3c57611f3b611dae565b5b6000611f4a84828501611dca565b91505092915050565b6000608082019050611f686000830187611e57565b611f756020830186611e57565b611f826040830185611e57565b611f8f6060830184611e57565b95945050505050565b60008060408385031215611faf57611fae611dae565b5b6000611fbd85828601611dca565b9250506020611fce85828601611dca565b9150509250929050565b60008060008060808587031215611ff257611ff1611dae565b5b600061200087828801611df6565b945050602061201187828801611df6565b935050604061202287828801611df6565b925050606061203387828801611df6565b91505092959194509250565b61204881611e4b565b811461205357600080fd5b50565b6000813590506120658161203f565b92915050565b600080600080600060a0868803121561208757612086611dae565b5b600061209588828901611dca565b95505060206120a688828901612056565b94505060406120b788828901612056565b93505060606120c888828901612056565b92505060806120d988828901612056565b9150509295509295909350565b60006020820190506120fb6000830184611ca2565b92915050565b6000806000806080858703121561211b5761211a611dae565b5b600061212987828801611dca565b945050602061213a87828801611dca565b935050604061214b87828801611dca565b925050606061215c87828801611dca565b91505092959194509250565b6000806040838503121561217f5761217e611dae565b5b600061218d85828601611df6565b925050602061219e85828601611dca565b9150509250929050565b6000602082840312156121be576121bd611dae565b5b60006121cc84828501611df6565b91505092915050565b6000602082840312156121eb576121ea611dae565b5b60006121f984828501612056565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061224957607f821691505b6020821081141561225d5761225c612202565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061229d82611cb1565b91506122a883611cb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122dd576122dc612263565b5b828201905092915050565b6000815190506122f781611ddf565b92915050565b60006020828403121561231357612312611dae565b5b6000612321848285016122e8565b91505092915050565b6000815190506123398161203f565b92915050565b60006020828403121561235557612354611dae565b5b60006123638482850161232a565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123c8602583611cfe565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061245a602683611cfe565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124ec602483611cfe565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061257e602283611cfe565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125ea601d83611cfe565b91506125f5826125b4565b602082019050919050565b60006020820190508181036000830152612619816125dd565b9050919050565b7f4552524f523a20616d6f756e7420697320626967676572207468616e206d617860008201527f5472616e73616374696f6e53697a652121210000000000000000000000000000602082015250565b600061267c603283611cfe565b915061268782612620565b604082019050919050565b600060208201905081810360008301526126ab8161266f565b9050919050565b60006126bd82611cb1565b91506126c883611cb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561270157612700612263565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061274682611cb1565b915061275183611cb1565b9250826127615761276061270c565b5b828204905092915050565b600061277782611cb1565b915061278283611cb1565b92508282101561279557612794612263565b5b828203905092915050565b7f4552524f523a2077616c6c657453697a65206973206f766572666c6f7765642160008201527f2121000000000000000000000000000000000000000000000000000000000000602082015250565b60006127fc602283611cfe565b9150612807826127a0565b604082019050919050565b6000602082019050818103600083015261282b816127ef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612868602083611cfe565b915061287382612832565b602082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006128d4601f83611cfe565b91506128df8261289e565b602082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612966602583611cfe565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129f8602383611cfe565b9150612a038261299c565b604082019050919050565b60006020820190508181036000830152612a27816129eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a8a602683611cfe565b9150612a9582612a2e565b604082019050919050565b60006020820190508181036000830152612ab981612a7d565b905091905056fea26469706673582212208bda22c4a45d5ebfed39b7d6aa57a53abce9696e64798a52095b89d9c61acae964736f6c634300080a0033
Deployed ByteCode
0x6080604052600436106101dc5760003560e01c806385c2180111610102578063a923625c11610095578063ea1644d511610064578063ea1644d51461071b578063ecfca89914610744578063f2fde38b1461076f578063f7266953146107985761021c565b8063a923625c14610661578063a9e59da31461068a578063cbecd387146106b3578063dd62ed3e146106de5761021c565b80639fd8197f116100d15780639fd8197f14610593578063a071dcf4146105bc578063a457c2d7146105e7578063a9059cbb146106245761021c565b806385c21801146104e95780638da5cb5b146105125780638f3fa8601461053d57806395d89b41146105685761021c565b8063395093511161017a5780636b67c4df116101495780636b67c4df146104415780636fcba3771461046c57806370a0823114610495578063715018a6146104d25761021c565b8063395093511461038757806340c10f19146103c45780634707d000146103ed578063552b3788146104165761021c565b806323b872dd116101b657806323b872dd146102b457806328b13b61146102f1578063313ce5671461031c578063372c12b1146103475761021c565b806306fdde0314610221578063095ea7b31461024c57806318160ddd146102895761021c565b3661021c577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610212929190611cca565b60405180910390a1005b600080fd5b34801561022d57600080fd5b506102366107c1565b6040516102439190611d8c565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e9190611e0b565b610853565b6040516102809190611e66565b60405180910390f35b34801561029557600080fd5b5061029e610876565b6040516102ab9190611e81565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190611e9c565b610880565b6040516102e89190611e66565b60405180910390f35b3480156102fd57600080fd5b506103066108af565b6040516103139190611e81565b60405180910390f35b34801561032857600080fd5b506103316108b5565b60405161033e9190611f0b565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190611f26565b6108be565b60405161037e9493929190611f53565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190611e0b565b610922565b6040516103bb9190611e66565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190611e0b565b610959565b005b3480156103f957600080fd5b50610414600480360381019061040f9190611f98565b61096f565b005b34801561042257600080fd5b5061042b610a73565b6040516104389190611e66565b60405180910390f35b34801561044d57600080fd5b50610456610a86565b6040516104639190611e81565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190611fd8565b610a8c565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190611f26565b610ab6565b6040516104c99190611e81565b60405180910390f35b3480156104de57600080fd5b506104e7610afe565b005b3480156104f557600080fd5b50610510600480360381019061050b919061206b565b610b12565b005b34801561051e57600080fd5b50610527610c89565b60405161053491906120e6565b60405180910390f35b34801561054957600080fd5b50610552610cb3565b60405161055f9190611e81565b60405180910390f35b34801561057457600080fd5b5061057d610cb9565b60405161058a9190611d8c565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612101565b610d4b565b005b3480156105c857600080fd5b506105d1610e5d565b6040516105de9190611e81565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190611e0b565b610e63565b60405161061b9190611e66565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190611e0b565b610eda565b6040516106589190611e66565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612168565b610efd565b005b34801561069657600080fd5b506106b160048036038101906106ac91906121a8565b610f50565b005b3480156106bf57600080fd5b506106c8610f62565b6040516106d59190611e81565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190611f98565b610f68565b6040516107129190611e81565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906121a8565b610fef565b005b34801561075057600080fd5b50610759611001565b6040516107669190611e81565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190611f26565b611007565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906121d5565b61108b565b005b6060600380546107d090612231565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90612231565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b60008061085e6110b0565b905061086b8185856110b8565b600191505092915050565b6000600254905090565b60008061088b6110b0565b9050610898858285611283565b6108a385858561130f565b60019150509392505050565b600b5481565b60006012905090565b60106020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16908060000160039054906101000a900460ff16905084565b60008061092d6110b0565b905061094e81858561093f8589610f68565b6109499190612292565b6110b8565b600191505092915050565b610961611741565b61096b82826117bf565b5050565b610977611741565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109cd91906120e6565b602060405180830381865afa1580156109ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0e91906122fd565b6040518363ffffffff1660e01b8152600401610a2b929190611cca565b6020604051808303816000875af1158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e919061233f565b505050565b600f60149054906101000a900460ff1681565b60085481565b610a94611741565b8360068190555082600781905550816008819055508060098190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b06611741565b610b10600061191f565b565b610b1a611741565b83601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555082601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff02191690831515021790555081601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff02191690831515021790555080601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160036101000a81548160ff0219169083151502179055505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060048054610cc890612231565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490612231565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b610d53611741565b83600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60065481565b600080610e6e6110b0565b90506000610e7c8286610f68565b905083811015610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906123de565b60405180910390fd5b610ece82868684036110b8565b60019250505092915050565b600080610ee56110b0565b9050610ef281858561130f565b600191505092915050565b610f05611741565b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f4b573d6000803e3d6000fd5b505050565b610f58611741565b80600b8190555050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff7611741565b80600a8190555050565b60075481565b61100f611741565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612470565b60405180910390fd5b6110888161191f565b50565b611093611741565b80600f60146101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612594565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112769190611e81565b60405180910390a3505050565b600061128f8484610f68565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130957818110156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612600565b60405180910390fd5b61130884848484036110b8565b5b50505050565b6000600b54821115611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612692565b60405180910390fd5b600f60149054906101000a900460ff16156116d85760001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1615151480156113d15750600060065414155b156114465761141d84600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106006548661140e91906126b2565b611418919061273b565b6119e5565b6127106006548361142e91906126b2565b611438919061273b565b816114439190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a900460ff1615151480156114ac5750600060075414155b15611521576114f884600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600754866114e991906126b2565b6114f3919061273b565b6119e5565b6127106007548361150991906126b2565b611513919061273b565b8161151e9190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160029054906101000a900460ff1615151480156115875750600060085414155b156115fc576115d384600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600854866115c491906126b2565b6115ce919061273b565b6119e5565b612710600854836115e491906126b2565b6115ee919061273b565b816115f99190612292565b90505b60001515601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160039054906101000a900460ff1615151480156116625750600060095414155b156116d7576116ae84600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106009548661169f91906126b2565b6116a9919061273b565b6119e5565b612710600954836116bf91906126b2565b6116c9919061273b565b816116d49190612292565b90505b5b6116ee848483856116e9919061276c565b6119e5565b600a546116fa84610ab6565b111561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290612812565b60405180910390fd5b50505050565b6117496110b0565b73ffffffffffffffffffffffffffffffffffffffff16611767610c89565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061287e565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906128ea565b60405180910390fd5b61183b60008383611c66565b806002600082825461184d9190612292565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190612292565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119079190611e81565b60405180910390a361191b60008383611c6b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c9061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90612a0e565b60405180910390fd5b611ad0838383611c66565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90612aa0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be99190612292565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4d9190611e81565b60405180910390a3611c60848484611c6b565b50505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c9b82611c70565b9050919050565b611cab81611c90565b82525050565b6000819050919050565b611cc481611cb1565b82525050565b6000604082019050611cdf6000830185611ca2565b611cec6020830184611cbb565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d2d578082015181840152602081019050611d12565b83811115611d3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d5e82611cf3565b611d688185611cfe565b9350611d78818560208601611d0f565b611d8181611d42565b840191505092915050565b60006020820190508181036000830152611da68184611d53565b905092915050565b600080fd5b611dbc81611c90565b8114611dc757600080fd5b50565b600081359050611dd981611db3565b92915050565b611de881611cb1565b8114611df357600080fd5b50565b600081359050611e0581611ddf565b92915050565b60008060408385031215611e2257611e21611dae565b5b6000611e3085828601611dca565b9250506020611e4185828601611df6565b9150509250929050565b60008115159050919050565b611e6081611e4b565b82525050565b6000602082019050611e7b6000830184611e57565b92915050565b6000602082019050611e966000830184611cbb565b92915050565b600080600060608486031215611eb557611eb4611dae565b5b6000611ec386828701611dca565b9350506020611ed486828701611dca565b9250506040611ee586828701611df6565b9150509250925092565b600060ff82169050919050565b611f0581611eef565b82525050565b6000602082019050611f206000830184611efc565b92915050565b600060208284031215611f3c57611f3b611dae565b5b6000611f4a84828501611dca565b91505092915050565b6000608082019050611f686000830187611e57565b611f756020830186611e57565b611f826040830185611e57565b611f8f6060830184611e57565b95945050505050565b60008060408385031215611faf57611fae611dae565b5b6000611fbd85828601611dca565b9250506020611fce85828601611dca565b9150509250929050565b60008060008060808587031215611ff257611ff1611dae565b5b600061200087828801611df6565b945050602061201187828801611df6565b935050604061202287828801611df6565b925050606061203387828801611df6565b91505092959194509250565b61204881611e4b565b811461205357600080fd5b50565b6000813590506120658161203f565b92915050565b600080600080600060a0868803121561208757612086611dae565b5b600061209588828901611dca565b95505060206120a688828901612056565b94505060406120b788828901612056565b93505060606120c888828901612056565b92505060806120d988828901612056565b9150509295509295909350565b60006020820190506120fb6000830184611ca2565b92915050565b6000806000806080858703121561211b5761211a611dae565b5b600061212987828801611dca565b945050602061213a87828801611dca565b935050604061214b87828801611dca565b925050606061215c87828801611dca565b91505092959194509250565b6000806040838503121561217f5761217e611dae565b5b600061218d85828601611df6565b925050602061219e85828601611dca565b9150509250929050565b6000602082840312156121be576121bd611dae565b5b60006121cc84828501611df6565b91505092915050565b6000602082840312156121eb576121ea611dae565b5b60006121f984828501612056565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061224957607f821691505b6020821081141561225d5761225c612202565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061229d82611cb1565b91506122a883611cb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122dd576122dc612263565b5b828201905092915050565b6000815190506122f781611ddf565b92915050565b60006020828403121561231357612312611dae565b5b6000612321848285016122e8565b91505092915050565b6000815190506123398161203f565b92915050565b60006020828403121561235557612354611dae565b5b60006123638482850161232a565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123c8602583611cfe565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061245a602683611cfe565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124ec602483611cfe565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061257e602283611cfe565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125ea601d83611cfe565b91506125f5826125b4565b602082019050919050565b60006020820190508181036000830152612619816125dd565b9050919050565b7f4552524f523a20616d6f756e7420697320626967676572207468616e206d617860008201527f5472616e73616374696f6e53697a652121210000000000000000000000000000602082015250565b600061267c603283611cfe565b915061268782612620565b604082019050919050565b600060208201905081810360008301526126ab8161266f565b9050919050565b60006126bd82611cb1565b91506126c883611cb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561270157612700612263565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061274682611cb1565b915061275183611cb1565b9250826127615761276061270c565b5b828204905092915050565b600061277782611cb1565b915061278283611cb1565b92508282101561279557612794612263565b5b828203905092915050565b7f4552524f523a2077616c6c657453697a65206973206f766572666c6f7765642160008201527f2121000000000000000000000000000000000000000000000000000000000000602082015250565b60006127fc602283611cfe565b9150612807826127a0565b604082019050919050565b6000602082019050818103600083015261282b816127ef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612868602083611cfe565b915061287382612832565b602082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006128d4601f83611cfe565b91506128df8261289e565b602082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612966602583611cfe565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129f8602383611cfe565b9150612a038261299c565b604082019050919050565b60006020820190508181036000830152612a27816129eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a8a602683611cfe565b9150612a9582612a2e565b604082019050919050565b60006020820190508181036000830152612ab981612a7d565b905091905056fea26469706673582212208bda22c4a45d5ebfed39b7d6aa57a53abce9696e64798a52095b89d9c61acae964736f6c634300080a0033