Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- Snibbu
- Optimization enabled
- false
- Compiler version
- v0.8.0+commit.c7dfd78e
- EVM Version
- default
- Verified at
- 2024-03-06T19:09:50.766954Z
Contract source code
/**
* SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
/**
* @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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
contract Snibbu is Context, IERC20, IERC20Metadata,Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name = "Snibbu";
string private _symbol = "SNIBBU";
bool public tradingEnabled = false;
constructor() {
uint256 supply = 420690000000000 * 10**18;
uint256 airdrop = (supply * 10) /100 ;
uint256 team = (supply * 3) / 100 ;
_mint(0x3E3274f265cd588678dA22CC21102C63aa51248b,airdrop );
_mint(0xB3EdcBa97A97a248A9a3D518360793E2127fb421,team );
_mint(msg.sender,supply-airdrop-team);
}
function enableTrading() public {
require(msg.sender == owner(), "Only the owner can enable trading.");
require(!tradingEnabled, "Trading is already enabled.");
tradingEnabled = true;
}
function name() public view virtual override returns (string memory) {
return _name;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance.sub(subtractedValue));
}
return true;
}
event Amount1(uint256);
event Amount2(uint256);
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(tradingEnabled || sender == owner(), "Trading is not enabled yet.");
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance.sub(amount);
}
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
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);
}
}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Amount1","inputs":[{"type":"uint256","name":"","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Amount2","inputs":[{"type":"uint256","name":"","internalType":"uint256","indexed":false}],"anonymous":false},{"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":"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":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"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":[],"name":"enableTrading","inputs":[]},{"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":"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":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"tradingEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x60806040526040518060400160405280600681526020017f536e696262750000000000000000000000000000000000000000000000000000815250600490805190602001906200005192919062000440565b506040518060400160405280600681526020017f534e494242550000000000000000000000000000000000000000000000000000815250600590805190602001906200009f92919062000440565b506000600660006101000a81548160ff021916908315150217905550348015620000c857600080fd5b50620000e9620000dd620001bf60201b60201c565b620001c760201b60201c565b60006d14bddab3e51a57cff87a50000000905060006064600a836200010f919062000628565b6200011b9190620005f0565b90506000606460038462000130919062000628565b6200013c9190620005f0565b905062000164733e3274f265cd588678da22cc21102c63aa51248b836200028b60201b60201c565b6200018a73b3edcba97a97a248a9a3d518360793e2127fb421826200028b60201b60201c565b620001b6338284866200019e919062000689565b620001aa919062000689565b6200028b60201b60201c565b50505062000791565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f59062000543565b60405180910390fd5b6200031a816003546200042860201b62000ac01790919060201c565b6003819055506200037981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200042860201b62000ac01790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200041c919062000565565b60405180910390a35050565b6000818362000438919062000593565b905092915050565b8280546200044e90620006ce565b90600052602060002090601f016020900481019282620004725760008555620004be565b82601f106200048d57805160ff1916838001178555620004be565b82800160010185558215620004be579182015b82811115620004bd578251825591602001919060010190620004a0565b5b509050620004cd9190620004d1565b5090565b5b80821115620004ec576000816000905550600101620004d2565b5090565b6000620004ff601f8362000582565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200053d81620006c4565b82525050565b600060208201905081810360008301526200055e81620004f0565b9050919050565b60006020820190506200057c600083018462000532565b92915050565b600082825260208201905092915050565b6000620005a082620006c4565b9150620005ad83620006c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005e557620005e462000704565b5b828201905092915050565b6000620005fd82620006c4565b91506200060a83620006c4565b9250826200061d576200061c62000733565b5b828204905092915050565b60006200063582620006c4565b91506200064283620006c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200067e576200067d62000704565b5b828202905092915050565b60006200069682620006c4565b9150620006a383620006c4565b925082821015620006b957620006b862000704565b5b828203905092915050565b6000819050919050565b60006002820490506001821680620006e757607f821691505b60208210811415620006fe57620006fd62000762565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611af280620007a16000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461028d578063a9059cbb146102bd578063dd62ed3e146102ed578063f2fde38b1461031d57610100565b8063715018a61461023d5780638a8c523c146102475780638da5cb5b1461025157806395d89b411461026f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780634ada218b146101ef57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610339565b60405161011a91906116e7565b60405180910390f35b61013d600480360381019061013891906111aa565b6103cb565b60405161014a91906116cc565b60405180910390f35b61015b6103e9565b6040516101689190611889565b60405180910390f35b61018b6004803603810190610186919061115b565b6103f3565b60405161019891906116cc565b60405180910390f35b6101a96104eb565b6040516101b691906118a4565b60405180910390f35b6101d960048036038101906101d491906111aa565b6104f4565b6040516101e691906116cc565b60405180910390f35b6101f76105a7565b60405161020491906116cc565b60405180910390f35b610227600480360381019061022291906110f6565b6105ba565b6040516102349190611889565b60405180910390f35b610245610603565b005b61024f61068b565b005b61025961076d565b60405161026691906116b1565b60405180910390f35b610277610796565b60405161028491906116e7565b60405180910390f35b6102a760048036038101906102a291906111aa565b610828565b6040516102b491906116cc565b60405180910390f35b6102d760048036038101906102d291906111aa565b610923565b6040516102e491906116cc565b60405180910390f35b6103076004803603810190610302919061111f565b610941565b6040516103149190611889565b60405180910390f35b610337600480360381019061033291906110f6565b6109c8565b005b606060048054610348906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610374906119ed565b80156103c15780601f10610396576101008083540402835291602001916103c1565b820191906000526020600020905b8154815290600101906020018083116103a457829003601f168201915b5050505050905090565b60006103df6103d8610ad6565b8484610ade565b6001905092915050565b6000600354905090565b6000610400848484610ca9565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061044b610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c2906117c9565b60405180910390fd5b6104df856104d7610ad6565b858403610ade565b60019150509392505050565b60006012905090565b600061059d610501610ad6565b846105988560026000610512610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610ade565b6001905092915050565b600660009054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060b610ad6565b73ffffffffffffffffffffffffffffffffffffffff1661062961076d565b73ffffffffffffffffffffffffffffffffffffffff161461067f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610676906117e9565b60405180910390fd5b6106896000610ff2565b565b61069361076d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790611729565b60405180910390fd5b600660009054906101000a900460ff1615610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611789565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107a5906119ed565b80601f01602080910402602001604051908101604052809291908181526020018280546107d1906119ed565b801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b5050505050905090565b60008060026000610837610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90611869565b60405180910390fd5b6109186108ff610ad6565b8561091386856110b690919063ffffffff16565b610ade565b600191505092915050565b6000610937610930610ad6565b8484610ca9565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d0610ad6565b73ffffffffffffffffffffffffffffffffffffffff166109ee61076d565b73ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906117e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90611749565b60405180910390fd5b610abd81610ff2565b50565b60008183610ace91906118db565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590611769565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c9c9190611889565b60405180910390a3505050565b600660009054906101000a900460ff1680610cf65750610cc761076d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90611829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611709565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906117a9565b60405180910390fd5b610eaf82826110b690919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f4482600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe49190611889565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836110c49190611931565b905092915050565b6000813590506110db81611a8e565b92915050565b6000813590506110f081611aa5565b92915050565b60006020828403121561110857600080fd5b6000611116848285016110cc565b91505092915050565b6000806040838503121561113257600080fd5b6000611140858286016110cc565b9250506020611151858286016110cc565b9150509250929050565b60008060006060848603121561117057600080fd5b600061117e868287016110cc565b935050602061118f868287016110cc565b92505060406111a0868287016110e1565b9150509250925092565b600080604083850312156111bd57600080fd5b60006111cb858286016110cc565b92505060206111dc858286016110e1565b9150509250929050565b6111ef81611965565b82525050565b6111fe81611977565b82525050565b600061120f826118bf565b61121981856118ca565b93506112298185602086016119ba565b61123281611a7d565b840191505092915050565b600061124a6023836118ca565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112b06022836118ca565b91507f4f6e6c7920746865206f776e65722063616e20656e61626c652074726164696e60008301527f672e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113166026836118ca565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061137c6022836118ca565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113e2601b836118ca565b91507f54726164696e6720697320616c726561647920656e61626c65642e00000000006000830152602082019050919050565b60006114226026836118ca565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114886028836118ca565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ee6020836118ca565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061152e601b836118ca565b91507f54726164696e67206973206e6f7420656e61626c6564207965742e00000000006000830152602082019050919050565b600061156e6025836118ca565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115d46024836118ca565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061163a6025836118ca565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61169c816119a3565b82525050565b6116ab816119ad565b82525050565b60006020820190506116c660008301846111e6565b92915050565b60006020820190506116e160008301846111f5565b92915050565b600060208201905081810360008301526117018184611204565b905092915050565b600060208201905081810360008301526117228161123d565b9050919050565b60006020820190508181036000830152611742816112a3565b9050919050565b6000602082019050818103600083015261176281611309565b9050919050565b600060208201905081810360008301526117828161136f565b9050919050565b600060208201905081810360008301526117a2816113d5565b9050919050565b600060208201905081810360008301526117c281611415565b9050919050565b600060208201905081810360008301526117e28161147b565b9050919050565b60006020820190508181036000830152611802816114e1565b9050919050565b6000602082019050818103600083015261182281611521565b9050919050565b6000602082019050818103600083015261184281611561565b9050919050565b60006020820190508181036000830152611862816115c7565b9050919050565b600060208201905081810360008301526118828161162d565b9050919050565b600060208201905061189e6000830184611693565b92915050565b60006020820190506118b960008301846116a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118e6826119a3565b91506118f1836119a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192657611925611a1f565b5b828201905092915050565b600061193c826119a3565b9150611947836119a3565b92508282101561195a57611959611a1f565b5b828203905092915050565b600061197082611983565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119d85780820151818401526020810190506119bd565b838111156119e7576000848401525b50505050565b60006002820490506001821680611a0557607f821691505b60208210811415611a1957611a18611a4e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a9781611965565b8114611aa257600080fd5b50565b611aae816119a3565b8114611ab957600080fd5b5056fea26469706673582212204afada562c00b3631278244a64b0f65257a3e94969368bb3ebeb5ccd45b46a4964736f6c63430008000033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461028d578063a9059cbb146102bd578063dd62ed3e146102ed578063f2fde38b1461031d57610100565b8063715018a61461023d5780638a8c523c146102475780638da5cb5b1461025157806395d89b411461026f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780634ada218b146101ef57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610339565b60405161011a91906116e7565b60405180910390f35b61013d600480360381019061013891906111aa565b6103cb565b60405161014a91906116cc565b60405180910390f35b61015b6103e9565b6040516101689190611889565b60405180910390f35b61018b6004803603810190610186919061115b565b6103f3565b60405161019891906116cc565b60405180910390f35b6101a96104eb565b6040516101b691906118a4565b60405180910390f35b6101d960048036038101906101d491906111aa565b6104f4565b6040516101e691906116cc565b60405180910390f35b6101f76105a7565b60405161020491906116cc565b60405180910390f35b610227600480360381019061022291906110f6565b6105ba565b6040516102349190611889565b60405180910390f35b610245610603565b005b61024f61068b565b005b61025961076d565b60405161026691906116b1565b60405180910390f35b610277610796565b60405161028491906116e7565b60405180910390f35b6102a760048036038101906102a291906111aa565b610828565b6040516102b491906116cc565b60405180910390f35b6102d760048036038101906102d291906111aa565b610923565b6040516102e491906116cc565b60405180910390f35b6103076004803603810190610302919061111f565b610941565b6040516103149190611889565b60405180910390f35b610337600480360381019061033291906110f6565b6109c8565b005b606060048054610348906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610374906119ed565b80156103c15780601f10610396576101008083540402835291602001916103c1565b820191906000526020600020905b8154815290600101906020018083116103a457829003601f168201915b5050505050905090565b60006103df6103d8610ad6565b8484610ade565b6001905092915050565b6000600354905090565b6000610400848484610ca9565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061044b610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c2906117c9565b60405180910390fd5b6104df856104d7610ad6565b858403610ade565b60019150509392505050565b60006012905090565b600061059d610501610ad6565b846105988560026000610512610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610ade565b6001905092915050565b600660009054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060b610ad6565b73ffffffffffffffffffffffffffffffffffffffff1661062961076d565b73ffffffffffffffffffffffffffffffffffffffff161461067f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610676906117e9565b60405180910390fd5b6106896000610ff2565b565b61069361076d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790611729565b60405180910390fd5b600660009054906101000a900460ff1615610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611789565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107a5906119ed565b80601f01602080910402602001604051908101604052809291908181526020018280546107d1906119ed565b801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b5050505050905090565b60008060026000610837610ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90611869565b60405180910390fd5b6109186108ff610ad6565b8561091386856110b690919063ffffffff16565b610ade565b600191505092915050565b6000610937610930610ad6565b8484610ca9565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d0610ad6565b73ffffffffffffffffffffffffffffffffffffffff166109ee61076d565b73ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906117e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90611749565b60405180910390fd5b610abd81610ff2565b50565b60008183610ace91906118db565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590611769565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c9c9190611889565b60405180910390a3505050565b600660009054906101000a900460ff1680610cf65750610cc761076d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90611829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611709565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906117a9565b60405180910390fd5b610eaf82826110b690919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f4482600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe49190611889565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836110c49190611931565b905092915050565b6000813590506110db81611a8e565b92915050565b6000813590506110f081611aa5565b92915050565b60006020828403121561110857600080fd5b6000611116848285016110cc565b91505092915050565b6000806040838503121561113257600080fd5b6000611140858286016110cc565b9250506020611151858286016110cc565b9150509250929050565b60008060006060848603121561117057600080fd5b600061117e868287016110cc565b935050602061118f868287016110cc565b92505060406111a0868287016110e1565b9150509250925092565b600080604083850312156111bd57600080fd5b60006111cb858286016110cc565b92505060206111dc858286016110e1565b9150509250929050565b6111ef81611965565b82525050565b6111fe81611977565b82525050565b600061120f826118bf565b61121981856118ca565b93506112298185602086016119ba565b61123281611a7d565b840191505092915050565b600061124a6023836118ca565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112b06022836118ca565b91507f4f6e6c7920746865206f776e65722063616e20656e61626c652074726164696e60008301527f672e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113166026836118ca565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061137c6022836118ca565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113e2601b836118ca565b91507f54726164696e6720697320616c726561647920656e61626c65642e00000000006000830152602082019050919050565b60006114226026836118ca565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114886028836118ca565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ee6020836118ca565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061152e601b836118ca565b91507f54726164696e67206973206e6f7420656e61626c6564207965742e00000000006000830152602082019050919050565b600061156e6025836118ca565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115d46024836118ca565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061163a6025836118ca565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61169c816119a3565b82525050565b6116ab816119ad565b82525050565b60006020820190506116c660008301846111e6565b92915050565b60006020820190506116e160008301846111f5565b92915050565b600060208201905081810360008301526117018184611204565b905092915050565b600060208201905081810360008301526117228161123d565b9050919050565b60006020820190508181036000830152611742816112a3565b9050919050565b6000602082019050818103600083015261176281611309565b9050919050565b600060208201905081810360008301526117828161136f565b9050919050565b600060208201905081810360008301526117a2816113d5565b9050919050565b600060208201905081810360008301526117c281611415565b9050919050565b600060208201905081810360008301526117e28161147b565b9050919050565b60006020820190508181036000830152611802816114e1565b9050919050565b6000602082019050818103600083015261182281611521565b9050919050565b6000602082019050818103600083015261184281611561565b9050919050565b60006020820190508181036000830152611862816115c7565b9050919050565b600060208201905081810360008301526118828161162d565b9050919050565b600060208201905061189e6000830184611693565b92915050565b60006020820190506118b960008301846116a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118e6826119a3565b91506118f1836119a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192657611925611a1f565b5b828201905092915050565b600061193c826119a3565b9150611947836119a3565b92508282101561195a57611959611a1f565b5b828203905092915050565b600061197082611983565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119d85780820151818401526020810190506119bd565b838111156119e7576000848401525b50505050565b60006002820490506001821680611a0557607f821691505b60208210811415611a1957611a18611a4e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a9781611965565b8114611aa257600080fd5b50565b611aae816119a3565b8114611ab957600080fd5b5056fea26469706673582212204afada562c00b3631278244a64b0f65257a3e94969368bb3ebeb5ccd45b46a4964736f6c63430008000033