Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
994,880,246,129.389476639511282546 DOPA
Holders
1,217
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
136,800,000 DOPAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Dopamine
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** DOPAMINE (DOPA) Revanchist dynastic epochal levels of fuck you wealth. Bet more. Twitter: https://twitter.com/getdopamine Website: https://getdopamine.xyz **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Dopamine is ERC20, Ownable { uint256 public constant maxSupply = 1_000_000_000_000 * 10 ** 18; // 1t uint256 public constant operationalSupply = 750_000_000_000 * 10 ** 18; // 750b uint256 public constant mintAmount = 18_000_000 * 10 ** 18; // 18m uint256 public constant maxMintCount = 8; uint256 public constant batchMintFee = 5; // in percent uint256 public constant tradingFee = 2; // in percent uint256 public seed; uint256 public tradingEnabledTime; uint256 public constant highTaxDuration = 2 minutes; // anti-bot first 2 mins uint256 public constant highTaxRate = 20; address payable public marketingWallet; bool public tradingEnabled; bool public mintingEnabled; mapping(address => uint256) public mintCounts; mapping(address => bool) private blocklist; mapping(address => bool) private isExcludedFromFee; constructor() ERC20("Dopamine", "DOPA") { isExcludedFromFee[msg.sender] = true; marketingWallet = payable(msg.sender); _mint((address(this)), maxSupply); _transfer(address(this), msg.sender, operationalSupply); } struct Round { address owner; // address of the current round owner uint256 countdown; // e.g. 300 = 5 minutes uint256 prizePool; // e.g. 100 * 10 ** 18 = 100 DOPA uint256 takeoverCost; // e.g. 100 * 10 ** 18 = 100 DOPA uint256 takeoverCostIncrease; // e.g. 5 = 5% increase each takeover uint256 lastTakeoverTime; // timestamp of the last takeover uint256 sidepot; // e.g. 100 * 10 ** 18 = 100 DOPA uint256 sidepotSpinCost; // e.g. 10 * 10 ** 18 = 10 DOPA } Round public currentRound; // Events event RoundStarted( uint256 countdown, uint256 prizePool, uint256 takeoverCostIncrease ); event Takeover(address indexed user, uint256 amount); event Received(address user, uint amount); event PrizePoolClaimed(address indexed claimer, uint256 amount); event SidepotSpin(address indexed user, uint256 result); event SidepotWin(address indexed user, uint256 amount); // Modifiers modifier onlyWhenRoundHasEnded() { require( block.timestamp >= currentRound.lastTakeoverTime + currentRound.countdown, "Dopamine: Round not finished" ); _; } // Once turned on can never be turned off function enableTrading() external onlyOwner { tradingEnabled = true; tradingEnabledTime = block.timestamp; } // Once turned on can never be turned off function enableMinting() external onlyOwner { mintingEnabled = true; } function setMarketingWallet(address _marketingWallet) external onlyOwner { marketingWallet = payable(_marketingWallet); } function manageBlocklist(address user, bool blockUser) external onlyOwner { blocklist[user] = blockUser; } function manageExcludedFromFee(address user, bool exclude) external onlyOwner { isExcludedFromFee[user] = exclude; } // Game code function startNewRound( uint256 _countdown, uint256 _prizePool, uint256 _takeoverCost, uint256 _takeoverCostIncrease, uint256 _sidepot, uint256 _sidepotSpinCost ) external onlyOwner onlyWhenRoundHasEnded { require( IERC20(address(this)).transferFrom(msg.sender, address(this), _prizePool + _sidepot), "Dopamine: Transfer failed" ); require(_prizePool > 0, "Dopamine: Prize pool must be greater than 0"); require(_countdown > 0, "Dopamine: Countdown must be greater than 0"); require(_takeoverCost > 0, "Dopamine: Takeover cost must be greater than 0"); require(_takeoverCostIncrease > 0 && _takeoverCostIncrease <= 25, "Dopamine: Takeover cost increase must be greater than 0 and less than or equal to 25"); require(_sidepot > 0, "Dopamine: Sidepot must be greater than 0"); require(_sidepotSpinCost > 0, "Dopamine: Sidepot spin cost must be greater than 0"); currentRound = Round( address(0), _countdown, _prizePool, _takeoverCost, _takeoverCostIncrease, block.timestamp, _sidepot, _sidepotSpinCost ); emit RoundStarted( _countdown, _prizePool, _takeoverCostIncrease ); } function claimPrizePool() external onlyWhenRoundHasEnded { require( msg.sender == currentRound.owner, "Dopamine: Only the winner can claim the prize pool"); require( currentRound.prizePool > 0, "Dopamine: Prizepool has already been claimed" ); _transfer(address(this), msg.sender, currentRound.prizePool); currentRound.prizePool = 0; emit PrizePoolClaimed(msg.sender, currentRound.prizePool); } function takeover() external { require( currentRound.takeoverCost > 0, "Dopamine: Round has not started" ); require( IERC20(address(this)).transferFrom(msg.sender, address(this), currentRound.takeoverCost), "Dopamine: Transfer failed" ); require( msg.sender != currentRound.owner, "Dopamine: You already own this round" ); uint256 addToSidepot = (currentRound.takeoverCost * 40) / 100; uint256 burnAmount = (currentRound.takeoverCost * 20) / 100; uint256 addToPrizePool = currentRound.takeoverCost - addToSidepot - burnAmount; currentRound.owner = msg.sender; currentRound.prizePool += addToPrizePool; currentRound.takeoverCost = (currentRound.takeoverCost * (100 + currentRound.takeoverCostIncrease)) / 100; currentRound.lastTakeoverTime = block.timestamp; currentRound.sidepot += addToSidepot; _burn(address(this), burnAmount); emit Takeover(msg.sender, currentRound.takeoverCost); } function sidepotSpin() external returns (bool) { require( currentRound.sidepot > 0, "Dopamine: Sidepot is empty" ); require( IERC20(address(this)).transferFrom(msg.sender, address(this), currentRound.sidepotSpinCost), "Dopamine: Transfer failed" ); currentRound.sidepot += currentRound.sidepotSpinCost; uint256 roll = sidepotCheck(100, msg.sender); if (roll == 42) { _transfer(address(this), msg.sender, currentRound.sidepot); currentRound.sidepot = 0; emit SidepotWin(msg.sender, currentRound.sidepot); return true; } emit SidepotSpin(msg.sender, roll); return false; } function sidepotCheck(uint max, address _a) private returns (uint) { seed++; return uint(keccak256(abi.encodePacked(blockhash(block.number - 1), _a, seed))) % max; } function mint() external { require(mintingEnabled, "Dopamine: Minting is not enabled"); require(msg.sender == tx.origin, "Dopamine: Cannot mint from contract"); require( balanceOf(address(this)) - currentRound.prizePool >= mintAmount, "Dopamine: Not enough DOPA left to mint" ); require( mintCounts[msg.sender] < 8, "Dopamine: Max mint count reached" ); mintCounts[msg.sender] += 1; _transfer(address(this), msg.sender, mintAmount); } function batchMint() external { require(mintingEnabled, "Dopamine: Minting is not enabled"); require(msg.sender == tx.origin, "Dopamine: Cannot mint from contract"); require( balanceOf(address(this)) - currentRound.prizePool >= mintAmount * maxMintCount, "Dopamine: Not enough DOPA left to mint" ); require( mintCounts[msg.sender] < 8, "Dopamine: Max mint count reached" ); uint256 totalAmount = mintAmount * (maxMintCount - mintCounts[msg.sender]); // 144m uint256 tax = (totalAmount * batchMintFee) / 100; // 7.2m uint256 afterTaxAmount = totalAmount - tax; // 136.8m mintCounts[msg.sender] = 8; _transfer(address(this), msg.sender, afterTaxAmount); _transfer(address(this), address(marketingWallet), tax); } function _transfer(address from, address to, uint256 amount) internal virtual override { require(from != address(0), "Dopamine: Transfer from the zero address"); require(to != address(0), "Dopamine: Transfer to the zero address"); require(amount > 0, "Dopamine: Transfer amount must be greater than zero"); if ( isExcludedFromFee[from] || isExcludedFromFee[to] || tradingEnabled == false || from == address(this) || to == address(this)) { super._transfer(from, to, amount); } else { uint256 tradingFeeRate; if (block.timestamp < tradingEnabledTime + highTaxDuration) { // protect public from snipers in first few minutes tradingFeeRate = highTaxRate; } else { tradingFeeRate = tradingFee; } uint256 fee = (amount * tradingFeeRate) / 100; uint256 afterFeeAmount = amount - fee; super._transfer(from, to, afterFeeAmount); super._transfer(from, address(marketingWallet), fee); } } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (!tradingEnabled) { require(from == owner() || to == owner() || from == address(this) || to == address(this), "Dopamine: Trading is not enabled"); } require(!blocklist[from] && !blocklist[to], "Dopamine: Address is blocklisted"); } function burn(uint256 amount) external { _burn(msg.sender, amount); } fallback() external payable { emit Received(msg.sender, msg.value); } receive() external payable { emit Received(msg.sender, msg.value); } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PrizePoolClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"countdown","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prizePool","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"takeoverCostIncrease","type":"uint256"}],"name":"RoundStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"result","type":"uint256"}],"name":"SidepotSpin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SidepotWin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Takeover","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"batchMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPrizePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentRound","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"countdown","type":"uint256"},{"internalType":"uint256","name":"prizePool","type":"uint256"},{"internalType":"uint256","name":"takeoverCost","type":"uint256"},{"internalType":"uint256","name":"takeoverCostIncrease","type":"uint256"},{"internalType":"uint256","name":"lastTakeoverTime","type":"uint256"},{"internalType":"uint256","name":"sidepot","type":"uint256"},{"internalType":"uint256","name":"sidepotSpinCost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"highTaxDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"highTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"blockUser","type":"bool"}],"name":"manageBlocklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"manageExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sidepotSpin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_countdown","type":"uint256"},{"internalType":"uint256","name":"_prizePool","type":"uint256"},{"internalType":"uint256","name":"_takeoverCost","type":"uint256"},{"internalType":"uint256","name":"_takeoverCostIncrease","type":"uint256"},{"internalType":"uint256","name":"_sidepot","type":"uint256"},{"internalType":"uint256","name":"_sidepotSpinCost","type":"uint256"}],"name":"startNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabledTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f446f70616d696e650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f50410000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000e9e565b508060049081620000a1919062000e9e565b505050620000c4620000b8620001a260201b60201c565b620001aa60201b60201c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200017c306c0c9f2c9cd04674edea400000006200027060201b60201c565b6200019c30336c097761759c34d7b26fb0000000620003dd60201b60201c565b62001601565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d99062000fe6565b60405180910390fd5b620002f6600083836200071160201b60201c565b80600260008282546200030a919062001037565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003bd919062001083565b60405180910390a3620003d9600083836200095f60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200044f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004469062001116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b890620011ae565b60405180910390fd5b6000811162000507576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fe9062001246565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620005a95750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620005c8575060001515600860149054906101000a900460ff161515145b80620005ff57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806200063657503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156200065a57620006548383836200096460201b6200202c1760201c565b6200070c565b600060786007546200066d919062001037565b4210156200067f576014905062000684565b600290505b60006064828462000696919062001268565b620006a29190620012e2565b905060008184620006b491906200131a565b9050620006ce8686836200096460201b6200202c1760201c565b6200070886600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200096460201b6200202c1760201c565b5050505b505050565b6200072983838362000bf560201b620022a21760201c565b600860149054906101000a900460ff1662000873576200074e62000bfa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620007c257506200079362000bfa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620007f957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806200083057503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086990620013a5565b60405180910390fd5b5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620009185750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200095a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009519062001417565b60405180910390fd5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cd90620014af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3f9062001547565b60405180910390fd5b62000a5b8383836200071160201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000adb90620015df565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000bd4919062001083565b60405180910390a362000bef8484846200095f60201b60201c565b50505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ca657607f821691505b60208210810362000cbc5762000cbb62000c5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ce7565b62000d32868362000ce7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d7f62000d7962000d738462000d4a565b62000d54565b62000d4a565b9050919050565b6000819050919050565b62000d9b8362000d5e565b62000db362000daa8262000d86565b84845462000cf4565b825550505050565b600090565b62000dca62000dbb565b62000dd781848462000d90565b505050565b5b8181101562000dff5762000df360008262000dc0565b60018101905062000ddd565b5050565b601f82111562000e4e5762000e188162000cc2565b62000e238462000cd7565b8101602085101562000e33578190505b62000e4b62000e428562000cd7565b83018262000ddc565b50505b505050565b600082821c905092915050565b600062000e736000198460080262000e53565b1980831691505092915050565b600062000e8e838362000e60565b9150826002028217905092915050565b62000ea98262000c24565b67ffffffffffffffff81111562000ec55762000ec462000c2f565b5b62000ed1825462000c8d565b62000ede82828562000e03565b600060209050601f83116001811462000f16576000841562000f01578287015190505b62000f0d858262000e80565b86555062000f7d565b601f19841662000f268662000cc2565b60005b8281101562000f505784890151825560018201915060208501945060208101905062000f29565b8683101562000f70578489015162000f6c601f89168262000e60565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fce601f8362000f85565b915062000fdb8262000f96565b602082019050919050565b60006020820190508181036000830152620010018162000fbf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010448262000d4a565b9150620010518362000d4a565b92508282019050808211156200106c576200106b62001008565b5b92915050565b6200107d8162000d4a565b82525050565b60006020820190506200109a600083018462001072565b92915050565b7f446f70616d696e653a205472616e736665722066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000620010fe60288362000f85565b91506200110b82620010a0565b604082019050919050565b600060208201905081810360008301526200113181620010ef565b9050919050565b7f446f70616d696e653a205472616e7366657220746f20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200119660268362000f85565b9150620011a38262001138565b604082019050919050565b60006020820190508181036000830152620011c98162001187565b9050919050565b7f446f70616d696e653a205472616e7366657220616d6f756e74206d757374206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b60006200122e60338362000f85565b91506200123b82620011d0565b604082019050919050565b6000602082019050818103600083015262001261816200121f565b9050919050565b6000620012758262000d4a565b9150620012828362000d4a565b9250828202620012928162000d4a565b91508282048414831517620012ac57620012ab62001008565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012ef8262000d4a565b9150620012fc8362000d4a565b9250826200130f576200130e620012b3565b5b828204905092915050565b6000620013278262000d4a565b9150620013348362000d4a565b92508282039050818111156200134f576200134e62001008565b5b92915050565b7f446f70616d696e653a2054726164696e67206973206e6f7420656e61626c6564600082015250565b60006200138d60208362000f85565b91506200139a8262001355565b602082019050919050565b60006020820190508181036000830152620013c0816200137e565b9050919050565b7f446f70616d696e653a204164647265737320697320626c6f636b6c6973746564600082015250565b6000620013ff60208362000f85565b91506200140c82620013c7565b602082019050919050565b600060208201905081810360008301526200143281620013f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006200149760258362000f85565b9150620014a48262001439565b604082019050919050565b60006020820190508181036000830152620014ca8162001488565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200152f60238362000f85565b91506200153c82620014d1565b604082019050919050565b60006020820190508181036000830152620015628162001520565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620015c760268362000f85565b9150620015d48262001569565b604082019050919050565b60006020820190508181036000830152620015fa81620015b8565b9050919050565b6147f880620016116000396000f3fe6080604052600436106102555760003560e01c806375f0a87411610139578063b9d8a770116100b6578063dd62ed3e1161007a578063dd62ed3e146108e1578063e3424c931461091e578063e797ec1b14610935578063f17952f21461094c578063f2fde38b14610977578063fa8463cf146109a057610295565b8063b9d8a7701461081e578063c308712514610849578063c3b02d6614610874578063cb13c8ed1461088b578063d5abeb01146108b657610295565b80638da5cb5b116100fd5780638da5cb5b1461072357806395d89b411461074e5780639fd6db1214610779578063a457c2d7146107a4578063a9059cbb146107e157610295565b806375f0a8741461065b5780637d94792a146106865780638114a783146106b15780638a19c8bc146106da5780638a8c523c1461070c57610295565b80633ccfd60b116101d257806356f433521161019657806356f433521461055d5780635a2bcc18146105885780635d098b38146105b35780636fd8fb7a146105dc57806370a0823114610607578063715018a61461064457610295565b80633ccfd60b1461048a57806342966c68146104a157806347ff0114146104ca5780634ada218b146104f5578063532778791461052057610295565b806318160ddd1161021957806318160ddd1461038f57806323b872dd146103ba578063313ce567146103f757806332c60eef14610422578063395093511461044d57610295565b806301e83bf9146102d057806303a95692146102f957806306fdde0314610310578063095ea7b31461033b5780631249c58b1461037857610295565b36610295577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874333460405161028b929190612df8565b60405180910390a1005b7f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102c6929190612df8565b60405180910390a1005b3480156102dc57600080fd5b506102f760048036038101906102f29190612e8a565b6109c9565b005b34801561030557600080fd5b5061030e610a2c565b005b34801561031c57600080fd5b50610325610d4e565b6040516103329190612f5a565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612fa8565b610de0565b60405161036f9190612ff7565b60405180910390f35b34801561038457600080fd5b5061038d610e03565b005b34801561039b57600080fd5b506103a4611017565b6040516103b19190613012565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061302d565b611021565b6040516103ee9190612ff7565b60405180910390f35b34801561040357600080fd5b5061040c611050565b604051610419919061309c565b60405180910390f35b34801561042e57600080fd5b50610437611059565b6040516104449190613012565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612fa8565b61105e565b6040516104819190612ff7565b60405180910390f35b34801561049657600080fd5b5061049f611095565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906130b7565b6110ec565b005b3480156104d657600080fd5b506104df6110f9565b6040516104ec9190613012565b60405180910390f35b34801561050157600080fd5b5061050a6110fe565b6040516105179190612ff7565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906130e4565b611111565b6040516105549190613012565b60405180910390f35b34801561056957600080fd5b50610572611129565b60405161057f9190613012565b60405180910390f35b34801561059457600080fd5b5061059d61112e565b6040516105aa9190613012565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906130e4565b61113d565b005b3480156105e857600080fd5b506105f1611189565b6040516105fe9190613012565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906130e4565b61118f565b60405161063b9190613012565b60405180910390f35b34801561065057600080fd5b506106596111d7565b005b34801561066757600080fd5b506106706111eb565b60405161067d9190613132565b60405180910390f35b34801561069257600080fd5b5061069b611211565b6040516106a89190613012565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612e8a565b611217565b005b3480156106e657600080fd5b506106ef61127a565b60405161070398979695949392919061314d565b60405180910390f35b34801561071857600080fd5b506107216112d0565b005b34801561072f57600080fd5b506107386112fc565b60405161074591906131cb565b60405180910390f35b34801561075a57600080fd5b50610763611326565b6040516107709190612f5a565b60405180910390f35b34801561078557600080fd5b5061078e6113b8565b60405161079b9190612ff7565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612fa8565b6113cb565b6040516107d89190612ff7565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612fa8565b611442565b6040516108159190612ff7565b60405180910390f35b34801561082a57600080fd5b50610833611465565b6040516108409190613012565b60405180910390f35b34801561085557600080fd5b5061085e611476565b60405161086b9190612ff7565b60405180910390f35b34801561088057600080fd5b5061088961168a565b005b34801561089757600080fd5b506108a061182d565b6040516108ad9190613012565b60405180910390f35b3480156108c257600080fd5b506108cb611832565b6040516108d89190613012565b60405180910390f35b3480156108ed57600080fd5b50610908600480360381019061090391906131e6565b611843565b6040516109159190613012565b60405180910390f35b34801561092a57600080fd5b506109336118ca565b005b34801561094157600080fd5b5061094a611b90565b005b34801561095857600080fd5b50610961611bb5565b60405161096e9190613012565b60405180910390f35b34801561098357600080fd5b5061099e600480360381019061099991906130e4565b611bba565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613226565b611c3d565b005b6109d16122a7565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600c6003015411610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906132ff565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c600301546040518463ffffffff1660e01b8152600401610ab69392919061331f565b6020604051808303816000875af1158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af9919061336b565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906133e4565b60405180910390fd5b600c60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613476565b60405180910390fd5b600060646028600c60030154610be191906134c5565b610beb9190613536565b9050600060646014600c60030154610c0391906134c5565b610c0d9190613536565b905060008183600c60030154610c239190613567565b610c2d9190613567565b905033600c60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c6002016000828254610c88919061359b565b925050819055506064600c600401546064610ca3919061359b565b600c60030154610cb391906134c5565b610cbd9190613536565b600c6003018190555042600c6005018190555082600c6006016000828254610ce5919061359b565b92505081905550610cf63083612325565b3373ffffffffffffffffffffffffffffffffffffffff167ff0b600d9968ff148717397b4acdcf188a17d2937fc819dc639fca3433e706099600c60030154604051610d419190613012565b60405180910390a2505050565b606060038054610d5d906135fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610d89906135fe565b8015610dd65780601f10610dab57610100808354040283529160200191610dd6565b820191906000526020600020905b815481529060010190602001808311610db957829003601f168201915b5050505050905090565b600080610deb6124f2565b9050610df88185856124fa565b600191505092915050565b600860159054906101000a900460ff16610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061367b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061370d565b60405180910390fd5b6a0ee3a5f48a68b552000000600c60020154610edb3061118f565b610ee59190613567565b1015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d9061379f565b60405180910390fd5b6008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061380b565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff8919061359b565b9250508190555061101530336a0ee3a5f48a68b5520000006126c3565b565b6000600254905090565b60008061102c6124f2565b90506110398582856129b7565b6110448585856126c3565b60019150509392505050565b60006012905090565b600881565b6000806110696124f2565b905061108a81858561107b8589611843565b611085919061359b565b6124fa565b600191505092915050565b61109d6122a7565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e8573d6000803e3d6000fd5b5050565b6110f63382612325565b50565b607881565b600860149054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b600281565b6a0ee3a5f48a68b55200000081565b6111456122a7565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111df6122a7565b6111e96000612a43565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b61121f6122a7565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b6112d86122a7565b6001600860146101000a81548160ff02191690831515021790555042600781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611335906135fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611361906135fe565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b600860159054906101000a900460ff1681565b6000806113d66124f2565b905060006113e48286611843565b905083811015611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061389d565b60405180910390fd5b61143682868684036124fa565b60019250505092915050565b60008061144d6124f2565b905061145a8185856126c3565b600191505092915050565b6c097761759c34d7b26fb000000081565b600080600c60060154116114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613909565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c600701546040518463ffffffff1660e01b81526004016115019392919061331f565b6020604051808303816000875af1158015611520573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611544919061336b565b611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906133e4565b60405180910390fd5b600c60070154600c600601600082825461159d919061359b565b9250508190555060006115b1606433612b09565b9050602a8103611633576115cb3033600c600601546126c3565b6000600c600601819055503373ffffffffffffffffffffffffffffffffffffffff167f77fc8ea27e8a7520b3dfa5e7e592e65b4f24e4554f3187d05da871e11eff018c600c600601546040516116219190613012565b60405180910390a26001915050611687565b3373ffffffffffffffffffffffffffffffffffffffff167fef34a63cda530612f8ee535c71b721d56e0a40269fa03f4118ab759e9a5a9e37826040516116799190613012565b60405180910390a260009150505b90565b600c60010154600c600501546116a0919061359b565b4210156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613975565b60405180910390fd5b600c60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613a07565b60405180910390fd5b6000600c60020154116117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490613a99565b60405180910390fd5b6117cd3033600c600201546126c3565b6000600c600201819055503373ffffffffffffffffffffffffffffffffffffffff167f66fb1ba8c3450a0c057ac0185d8e5796368403e062dde36fb617f6f4a79b3f9e600c600201546040516118239190613012565b60405180910390a2565b600581565b6c0c9f2c9cd04674edea4000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860159054906101000a900460ff16611919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119109061367b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e9061370d565b60405180910390fd5b60086a0ee3a5f48a68b55200000061199f91906134c5565b600c600201546119ae3061118f565b6119b89190613567565b10156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f09061379f565b60405180910390fd5b6008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061380b565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546008611ac99190613567565b6a0ee3a5f48a68b552000000611adf91906134c5565b905060006064600583611af291906134c5565b611afc9190613536565b905060008183611b0c9190613567565b90506008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5e3033836126c3565b611b8b30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126c3565b505050565b611b986122a7565b6001600860156101000a81548160ff021916908315150217905550565b601481565b611bc26122a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613b2b565b60405180910390fd5b611c3a81612a43565b50565b611c456122a7565b600c60010154600c60050154611c5b919061359b565b421015611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490613975565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd33308589611cc7919061359b565b6040518463ffffffff1660e01b8152600401611ce59392919061331f565b6020604051808303816000875af1158015611d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d28919061336b565b611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e906133e4565b60405180910390fd5b60008511611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190613bbd565b60405180910390fd5b60008611611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490613c4f565b60405180910390fd5b60008411611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790613ce1565b60405180910390fd5b600083118015611e41575060198311155b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613d99565b60405180910390fd5b60008211611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90613e2b565b60405180910390fd5b60008111611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613ebd565b60405180910390fd5b604051806101000160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200142815260200183815260200182815250600c60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701559050507fa359b664a68acd8839e42112eb50eff3408165e15074fde89ddb58a0db2e691d86868560405161201c93929190613edd565b60405180910390a1505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361209b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209290613f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190614018565b60405180910390fd5b612115838383612b73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561219b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612192906140aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122899190613012565b60405180910390a361229c848484612d99565b50505050565b505050565b6122af6124f2565b73ffffffffffffffffffffffffffffffffffffffff166122cd6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614116565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b906141a8565b60405180910390fd5b6123a082600083612b73565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d9061423a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124d99190613012565b60405180910390a36124ed83600084612d99565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf9061435e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126b69190613012565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612729906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614482565b60405180910390fd5b600081116127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614514565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128855750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806128a3575060001515600860149054906101000a900460ff161515145b806128d957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061290f57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156129245761291f83838361202c565b6129b2565b60006078600754612935919061359b565b421015612945576014905061294a565b600290505b60006064828461295a91906134c5565b6129649190613536565b9050600081846129749190613567565b905061298186868361202c565b6129ae86600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461202c565b5050505b505050565b60006129c38484611843565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a3d5781811015612a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2690614580565b60405180910390fd5b612a3c84848484036124fa565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060066000815480929190612b1e906145a0565b919050555082600143612b319190613567565b4083600654604051602001612b489392919061467c565b6040516020818303038152906040528051906020012060001c612b6b91906146b9565b905092915050565b612b7e8383836122a2565b600860149054906101000a900460ff16612cb157612b9a6112fc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612c055750612bd66112fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612c3b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612c7157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614736565b60405180910390fd5b5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612d555750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b906147a2565b60405180910390fd5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dc982612d9e565b9050919050565b612dd981612dbe565b82525050565b6000819050919050565b612df281612ddf565b82525050565b6000604082019050612e0d6000830185612dd0565b612e1a6020830184612de9565b9392505050565b600080fd5b612e2f81612dbe565b8114612e3a57600080fd5b50565b600081359050612e4c81612e26565b92915050565b60008115159050919050565b612e6781612e52565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b60008060408385031215612ea157612ea0612e21565b5b6000612eaf85828601612e3d565b9250506020612ec085828601612e75565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f04578082015181840152602081019050612ee9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f2c82612eca565b612f368185612ed5565b9350612f46818560208601612ee6565b612f4f81612f10565b840191505092915050565b60006020820190508181036000830152612f748184612f21565b905092915050565b612f8581612ddf565b8114612f9057600080fd5b50565b600081359050612fa281612f7c565b92915050565b60008060408385031215612fbf57612fbe612e21565b5b6000612fcd85828601612e3d565b9250506020612fde85828601612f93565b9150509250929050565b612ff181612e52565b82525050565b600060208201905061300c6000830184612fe8565b92915050565b60006020820190506130276000830184612de9565b92915050565b60008060006060848603121561304657613045612e21565b5b600061305486828701612e3d565b935050602061306586828701612e3d565b925050604061307686828701612f93565b9150509250925092565b600060ff82169050919050565b61309681613080565b82525050565b60006020820190506130b1600083018461308d565b92915050565b6000602082840312156130cd576130cc612e21565b5b60006130db84828501612f93565b91505092915050565b6000602082840312156130fa576130f9612e21565b5b600061310884828501612e3d565b91505092915050565b600061311c82612d9e565b9050919050565b61312c81613111565b82525050565b60006020820190506131476000830184613123565b92915050565b600061010082019050613163600083018b612dd0565b613170602083018a612de9565b61317d6040830189612de9565b61318a6060830188612de9565b6131976080830187612de9565b6131a460a0830186612de9565b6131b160c0830185612de9565b6131be60e0830184612de9565b9998505050505050505050565b60006020820190506131e06000830184612dd0565b92915050565b600080604083850312156131fd576131fc612e21565b5b600061320b85828601612e3d565b925050602061321c85828601612e3d565b9150509250929050565b60008060008060008060c0878903121561324357613242612e21565b5b600061325189828a01612f93565b965050602061326289828a01612f93565b955050604061327389828a01612f93565b945050606061328489828a01612f93565b935050608061329589828a01612f93565b92505060a06132a689828a01612f93565b9150509295509295509295565b7f446f70616d696e653a20526f756e6420686173206e6f74207374617274656400600082015250565b60006132e9601f83612ed5565b91506132f4826132b3565b602082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b60006060820190506133346000830186612dd0565b6133416020830185612dd0565b61334e6040830184612de9565b949350505050565b60008151905061336581612e5e565b92915050565b60006020828403121561338157613380612e21565b5b600061338f84828501613356565b91505092915050565b7f446f70616d696e653a205472616e73666572206661696c656400000000000000600082015250565b60006133ce601983612ed5565b91506133d982613398565b602082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f446f70616d696e653a20596f7520616c7265616479206f776e2074686973207260008201527f6f756e6400000000000000000000000000000000000000000000000000000000602082015250565b6000613460602483612ed5565b915061346b82613404565b604082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d082612ddf565b91506134db83612ddf565b92508282026134e981612ddf565b91508282048414831517613500576134ff613496565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061354182612ddf565b915061354c83612ddf565b92508261355c5761355b613507565b5b828204905092915050565b600061357282612ddf565b915061357d83612ddf565b925082820390508181111561359557613594613496565b5b92915050565b60006135a682612ddf565b91506135b183612ddf565b92508282019050808211156135c9576135c8613496565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061361657607f821691505b602082108103613629576136286135cf565b5b50919050565b7f446f70616d696e653a204d696e74696e67206973206e6f7420656e61626c6564600082015250565b6000613665602083612ed5565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f446f70616d696e653a2043616e6e6f74206d696e742066726f6d20636f6e747260008201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b60006136f7602383612ed5565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f446f70616d696e653a204e6f7420656e6f75676820444f5041206c656674207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000613789602683612ed5565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f446f70616d696e653a204d6178206d696e7420636f756e742072656163686564600082015250565b60006137f5602083612ed5565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613887602583612ed5565b91506138928261382b565b604082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b7f446f70616d696e653a2053696465706f7420697320656d707479000000000000600082015250565b60006138f3601a83612ed5565b91506138fe826138bd565b602082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b7f446f70616d696e653a20526f756e64206e6f742066696e697368656400000000600082015250565b600061395f601c83612ed5565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f446f70616d696e653a204f6e6c79207468652077696e6e65722063616e20636c60008201527f61696d20746865207072697a6520706f6f6c0000000000000000000000000000602082015250565b60006139f1603283612ed5565b91506139fc82613995565b604082019050919050565b60006020820190508181036000830152613a20816139e4565b9050919050565b7f446f70616d696e653a205072697a65706f6f6c2068617320616c72656164792060008201527f6265656e20636c61696d65640000000000000000000000000000000000000000602082015250565b6000613a83602c83612ed5565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612ed5565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f446f70616d696e653a205072697a6520706f6f6c206d7573742062652067726560008201527f61746572207468616e2030000000000000000000000000000000000000000000602082015250565b6000613ba7602b83612ed5565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f446f70616d696e653a20436f756e74646f776e206d757374206265206772656160008201527f746572207468616e203000000000000000000000000000000000000000000000602082015250565b6000613c39602a83612ed5565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b9050919050565b7f446f70616d696e653a2054616b656f76657220636f7374206d7573742062652060008201527f67726561746572207468616e2030000000000000000000000000000000000000602082015250565b6000613ccb602e83612ed5565b9150613cd682613c6f565b604082019050919050565b60006020820190508181036000830152613cfa81613cbe565b9050919050565b7f446f70616d696e653a2054616b656f76657220636f737420696e63726561736560008201527f206d7573742062652067726561746572207468616e203020616e64206c65737360208201527f207468616e206f7220657175616c20746f203235000000000000000000000000604082015250565b6000613d83605483612ed5565b9150613d8e82613d01565b606082019050919050565b60006020820190508181036000830152613db281613d76565b9050919050565b7f446f70616d696e653a2053696465706f74206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613e15602883612ed5565b9150613e2082613db9565b604082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f446f70616d696e653a2053696465706f74207370696e20636f7374206d75737460008201527f2062652067726561746572207468616e20300000000000000000000000000000602082015250565b6000613ea7603283612ed5565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b6000606082019050613ef26000830186612de9565b613eff6020830185612de9565b613f0c6040830184612de9565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f70602583612ed5565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614002602383612ed5565b915061400d82613fa6565b604082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614094602683612ed5565b915061409f82614038565b604082019050919050565b600060208201905081810360008301526140c381614087565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614100602083612ed5565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614192602183612ed5565b915061419d82614136565b604082019050919050565b600060208201905081810360008301526141c181614185565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614224602283612ed5565b915061422f826141c8565b604082019050919050565b6000602082019050818103600083015261425381614217565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142b6602483612ed5565b91506142c18261425a565b604082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614348602283612ed5565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f446f70616d696e653a205472616e736665722066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006143da602883612ed5565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f446f70616d696e653a205472616e7366657220746f20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061446c602683612ed5565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f446f70616d696e653a205472616e7366657220616d6f756e74206d757374206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b60006144fe603383612ed5565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061456a601d83612ed5565b915061457582614534565b602082019050919050565b600060208201905081810360008301526145998161455d565b9050919050565b60006145ab82612ddf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145dd576145dc613496565b5b600182019050919050565b6000819050919050565b6000819050919050565b61460d614608826145e8565b6145f2565b82525050565b60008160601b9050919050565b600061462b82614613565b9050919050565b600061463d82614620565b9050919050565b61465561465082612dbe565b614632565b82525050565b6000819050919050565b61467661467182612ddf565b61465b565b82525050565b600061468882866145fc565b6020820191506146988285614644565b6014820191506146a88284614665565b602082019150819050949350505050565b60006146c482612ddf565b91506146cf83612ddf565b9250826146df576146de613507565b5b828206905092915050565b7f446f70616d696e653a2054726164696e67206973206e6f7420656e61626c6564600082015250565b6000614720602083612ed5565b915061472b826146ea565b602082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b7f446f70616d696e653a204164647265737320697320626c6f636b6c6973746564600082015250565b600061478c602083612ed5565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b905091905056fea2646970667358221220d1255304d454daf8638fd2cb5ab0bfb5af3756087e045f743f6af9458541d13064736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102555760003560e01c806375f0a87411610139578063b9d8a770116100b6578063dd62ed3e1161007a578063dd62ed3e146108e1578063e3424c931461091e578063e797ec1b14610935578063f17952f21461094c578063f2fde38b14610977578063fa8463cf146109a057610295565b8063b9d8a7701461081e578063c308712514610849578063c3b02d6614610874578063cb13c8ed1461088b578063d5abeb01146108b657610295565b80638da5cb5b116100fd5780638da5cb5b1461072357806395d89b411461074e5780639fd6db1214610779578063a457c2d7146107a4578063a9059cbb146107e157610295565b806375f0a8741461065b5780637d94792a146106865780638114a783146106b15780638a19c8bc146106da5780638a8c523c1461070c57610295565b80633ccfd60b116101d257806356f433521161019657806356f433521461055d5780635a2bcc18146105885780635d098b38146105b35780636fd8fb7a146105dc57806370a0823114610607578063715018a61461064457610295565b80633ccfd60b1461048a57806342966c68146104a157806347ff0114146104ca5780634ada218b146104f5578063532778791461052057610295565b806318160ddd1161021957806318160ddd1461038f57806323b872dd146103ba578063313ce567146103f757806332c60eef14610422578063395093511461044d57610295565b806301e83bf9146102d057806303a95692146102f957806306fdde0314610310578063095ea7b31461033b5780631249c58b1461037857610295565b36610295577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874333460405161028b929190612df8565b60405180910390a1005b7f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102c6929190612df8565b60405180910390a1005b3480156102dc57600080fd5b506102f760048036038101906102f29190612e8a565b6109c9565b005b34801561030557600080fd5b5061030e610a2c565b005b34801561031c57600080fd5b50610325610d4e565b6040516103329190612f5a565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612fa8565b610de0565b60405161036f9190612ff7565b60405180910390f35b34801561038457600080fd5b5061038d610e03565b005b34801561039b57600080fd5b506103a4611017565b6040516103b19190613012565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061302d565b611021565b6040516103ee9190612ff7565b60405180910390f35b34801561040357600080fd5b5061040c611050565b604051610419919061309c565b60405180910390f35b34801561042e57600080fd5b50610437611059565b6040516104449190613012565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612fa8565b61105e565b6040516104819190612ff7565b60405180910390f35b34801561049657600080fd5b5061049f611095565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906130b7565b6110ec565b005b3480156104d657600080fd5b506104df6110f9565b6040516104ec9190613012565b60405180910390f35b34801561050157600080fd5b5061050a6110fe565b6040516105179190612ff7565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906130e4565b611111565b6040516105549190613012565b60405180910390f35b34801561056957600080fd5b50610572611129565b60405161057f9190613012565b60405180910390f35b34801561059457600080fd5b5061059d61112e565b6040516105aa9190613012565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906130e4565b61113d565b005b3480156105e857600080fd5b506105f1611189565b6040516105fe9190613012565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906130e4565b61118f565b60405161063b9190613012565b60405180910390f35b34801561065057600080fd5b506106596111d7565b005b34801561066757600080fd5b506106706111eb565b60405161067d9190613132565b60405180910390f35b34801561069257600080fd5b5061069b611211565b6040516106a89190613012565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612e8a565b611217565b005b3480156106e657600080fd5b506106ef61127a565b60405161070398979695949392919061314d565b60405180910390f35b34801561071857600080fd5b506107216112d0565b005b34801561072f57600080fd5b506107386112fc565b60405161074591906131cb565b60405180910390f35b34801561075a57600080fd5b50610763611326565b6040516107709190612f5a565b60405180910390f35b34801561078557600080fd5b5061078e6113b8565b60405161079b9190612ff7565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612fa8565b6113cb565b6040516107d89190612ff7565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612fa8565b611442565b6040516108159190612ff7565b60405180910390f35b34801561082a57600080fd5b50610833611465565b6040516108409190613012565b60405180910390f35b34801561085557600080fd5b5061085e611476565b60405161086b9190612ff7565b60405180910390f35b34801561088057600080fd5b5061088961168a565b005b34801561089757600080fd5b506108a061182d565b6040516108ad9190613012565b60405180910390f35b3480156108c257600080fd5b506108cb611832565b6040516108d89190613012565b60405180910390f35b3480156108ed57600080fd5b50610908600480360381019061090391906131e6565b611843565b6040516109159190613012565b60405180910390f35b34801561092a57600080fd5b506109336118ca565b005b34801561094157600080fd5b5061094a611b90565b005b34801561095857600080fd5b50610961611bb5565b60405161096e9190613012565b60405180910390f35b34801561098357600080fd5b5061099e600480360381019061099991906130e4565b611bba565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613226565b611c3d565b005b6109d16122a7565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600c6003015411610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906132ff565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c600301546040518463ffffffff1660e01b8152600401610ab69392919061331f565b6020604051808303816000875af1158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af9919061336b565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906133e4565b60405180910390fd5b600c60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613476565b60405180910390fd5b600060646028600c60030154610be191906134c5565b610beb9190613536565b9050600060646014600c60030154610c0391906134c5565b610c0d9190613536565b905060008183600c60030154610c239190613567565b610c2d9190613567565b905033600c60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c6002016000828254610c88919061359b565b925050819055506064600c600401546064610ca3919061359b565b600c60030154610cb391906134c5565b610cbd9190613536565b600c6003018190555042600c6005018190555082600c6006016000828254610ce5919061359b565b92505081905550610cf63083612325565b3373ffffffffffffffffffffffffffffffffffffffff167ff0b600d9968ff148717397b4acdcf188a17d2937fc819dc639fca3433e706099600c60030154604051610d419190613012565b60405180910390a2505050565b606060038054610d5d906135fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610d89906135fe565b8015610dd65780601f10610dab57610100808354040283529160200191610dd6565b820191906000526020600020905b815481529060010190602001808311610db957829003601f168201915b5050505050905090565b600080610deb6124f2565b9050610df88185856124fa565b600191505092915050565b600860159054906101000a900460ff16610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061367b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061370d565b60405180910390fd5b6a0ee3a5f48a68b552000000600c60020154610edb3061118f565b610ee59190613567565b1015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d9061379f565b60405180910390fd5b6008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061380b565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff8919061359b565b9250508190555061101530336a0ee3a5f48a68b5520000006126c3565b565b6000600254905090565b60008061102c6124f2565b90506110398582856129b7565b6110448585856126c3565b60019150509392505050565b60006012905090565b600881565b6000806110696124f2565b905061108a81858561107b8589611843565b611085919061359b565b6124fa565b600191505092915050565b61109d6122a7565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e8573d6000803e3d6000fd5b5050565b6110f63382612325565b50565b607881565b600860149054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b600281565b6a0ee3a5f48a68b55200000081565b6111456122a7565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111df6122a7565b6111e96000612a43565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b61121f6122a7565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b6112d86122a7565b6001600860146101000a81548160ff02191690831515021790555042600781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611335906135fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611361906135fe565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b600860159054906101000a900460ff1681565b6000806113d66124f2565b905060006113e48286611843565b905083811015611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061389d565b60405180910390fd5b61143682868684036124fa565b60019250505092915050565b60008061144d6124f2565b905061145a8185856126c3565b600191505092915050565b6c097761759c34d7b26fb000000081565b600080600c60060154116114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613909565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c600701546040518463ffffffff1660e01b81526004016115019392919061331f565b6020604051808303816000875af1158015611520573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611544919061336b565b611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906133e4565b60405180910390fd5b600c60070154600c600601600082825461159d919061359b565b9250508190555060006115b1606433612b09565b9050602a8103611633576115cb3033600c600601546126c3565b6000600c600601819055503373ffffffffffffffffffffffffffffffffffffffff167f77fc8ea27e8a7520b3dfa5e7e592e65b4f24e4554f3187d05da871e11eff018c600c600601546040516116219190613012565b60405180910390a26001915050611687565b3373ffffffffffffffffffffffffffffffffffffffff167fef34a63cda530612f8ee535c71b721d56e0a40269fa03f4118ab759e9a5a9e37826040516116799190613012565b60405180910390a260009150505b90565b600c60010154600c600501546116a0919061359b565b4210156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613975565b60405180910390fd5b600c60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613a07565b60405180910390fd5b6000600c60020154116117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490613a99565b60405180910390fd5b6117cd3033600c600201546126c3565b6000600c600201819055503373ffffffffffffffffffffffffffffffffffffffff167f66fb1ba8c3450a0c057ac0185d8e5796368403e062dde36fb617f6f4a79b3f9e600c600201546040516118239190613012565b60405180910390a2565b600581565b6c0c9f2c9cd04674edea4000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860159054906101000a900460ff16611919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119109061367b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e9061370d565b60405180910390fd5b60086a0ee3a5f48a68b55200000061199f91906134c5565b600c600201546119ae3061118f565b6119b89190613567565b10156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f09061379f565b60405180910390fd5b6008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061380b565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546008611ac99190613567565b6a0ee3a5f48a68b552000000611adf91906134c5565b905060006064600583611af291906134c5565b611afc9190613536565b905060008183611b0c9190613567565b90506008600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5e3033836126c3565b611b8b30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126c3565b505050565b611b986122a7565b6001600860156101000a81548160ff021916908315150217905550565b601481565b611bc26122a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613b2b565b60405180910390fd5b611c3a81612a43565b50565b611c456122a7565b600c60010154600c60050154611c5b919061359b565b421015611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490613975565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd33308589611cc7919061359b565b6040518463ffffffff1660e01b8152600401611ce59392919061331f565b6020604051808303816000875af1158015611d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d28919061336b565b611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e906133e4565b60405180910390fd5b60008511611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190613bbd565b60405180910390fd5b60008611611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490613c4f565b60405180910390fd5b60008411611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790613ce1565b60405180910390fd5b600083118015611e41575060198311155b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613d99565b60405180910390fd5b60008211611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90613e2b565b60405180910390fd5b60008111611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613ebd565b60405180910390fd5b604051806101000160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200142815260200183815260200182815250600c60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701559050507fa359b664a68acd8839e42112eb50eff3408165e15074fde89ddb58a0db2e691d86868560405161201c93929190613edd565b60405180910390a1505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361209b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209290613f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190614018565b60405180910390fd5b612115838383612b73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561219b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612192906140aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122899190613012565b60405180910390a361229c848484612d99565b50505050565b505050565b6122af6124f2565b73ffffffffffffffffffffffffffffffffffffffff166122cd6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614116565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b906141a8565b60405180910390fd5b6123a082600083612b73565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d9061423a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124d99190613012565b60405180910390a36124ed83600084612d99565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf9061435e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126b69190613012565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612729906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614482565b60405180910390fd5b600081116127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614514565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128855750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806128a3575060001515600860149054906101000a900460ff161515145b806128d957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061290f57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156129245761291f83838361202c565b6129b2565b60006078600754612935919061359b565b421015612945576014905061294a565b600290505b60006064828461295a91906134c5565b6129649190613536565b9050600081846129749190613567565b905061298186868361202c565b6129ae86600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461202c565b5050505b505050565b60006129c38484611843565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a3d5781811015612a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2690614580565b60405180910390fd5b612a3c84848484036124fa565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060066000815480929190612b1e906145a0565b919050555082600143612b319190613567565b4083600654604051602001612b489392919061467c565b6040516020818303038152906040528051906020012060001c612b6b91906146b9565b905092915050565b612b7e8383836122a2565b600860149054906101000a900460ff16612cb157612b9a6112fc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612c055750612bd66112fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612c3b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612c7157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614736565b60405180910390fd5b5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612d555750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b906147a2565b60405180910390fd5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dc982612d9e565b9050919050565b612dd981612dbe565b82525050565b6000819050919050565b612df281612ddf565b82525050565b6000604082019050612e0d6000830185612dd0565b612e1a6020830184612de9565b9392505050565b600080fd5b612e2f81612dbe565b8114612e3a57600080fd5b50565b600081359050612e4c81612e26565b92915050565b60008115159050919050565b612e6781612e52565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b60008060408385031215612ea157612ea0612e21565b5b6000612eaf85828601612e3d565b9250506020612ec085828601612e75565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f04578082015181840152602081019050612ee9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f2c82612eca565b612f368185612ed5565b9350612f46818560208601612ee6565b612f4f81612f10565b840191505092915050565b60006020820190508181036000830152612f748184612f21565b905092915050565b612f8581612ddf565b8114612f9057600080fd5b50565b600081359050612fa281612f7c565b92915050565b60008060408385031215612fbf57612fbe612e21565b5b6000612fcd85828601612e3d565b9250506020612fde85828601612f93565b9150509250929050565b612ff181612e52565b82525050565b600060208201905061300c6000830184612fe8565b92915050565b60006020820190506130276000830184612de9565b92915050565b60008060006060848603121561304657613045612e21565b5b600061305486828701612e3d565b935050602061306586828701612e3d565b925050604061307686828701612f93565b9150509250925092565b600060ff82169050919050565b61309681613080565b82525050565b60006020820190506130b1600083018461308d565b92915050565b6000602082840312156130cd576130cc612e21565b5b60006130db84828501612f93565b91505092915050565b6000602082840312156130fa576130f9612e21565b5b600061310884828501612e3d565b91505092915050565b600061311c82612d9e565b9050919050565b61312c81613111565b82525050565b60006020820190506131476000830184613123565b92915050565b600061010082019050613163600083018b612dd0565b613170602083018a612de9565b61317d6040830189612de9565b61318a6060830188612de9565b6131976080830187612de9565b6131a460a0830186612de9565b6131b160c0830185612de9565b6131be60e0830184612de9565b9998505050505050505050565b60006020820190506131e06000830184612dd0565b92915050565b600080604083850312156131fd576131fc612e21565b5b600061320b85828601612e3d565b925050602061321c85828601612e3d565b9150509250929050565b60008060008060008060c0878903121561324357613242612e21565b5b600061325189828a01612f93565b965050602061326289828a01612f93565b955050604061327389828a01612f93565b945050606061328489828a01612f93565b935050608061329589828a01612f93565b92505060a06132a689828a01612f93565b9150509295509295509295565b7f446f70616d696e653a20526f756e6420686173206e6f74207374617274656400600082015250565b60006132e9601f83612ed5565b91506132f4826132b3565b602082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b60006060820190506133346000830186612dd0565b6133416020830185612dd0565b61334e6040830184612de9565b949350505050565b60008151905061336581612e5e565b92915050565b60006020828403121561338157613380612e21565b5b600061338f84828501613356565b91505092915050565b7f446f70616d696e653a205472616e73666572206661696c656400000000000000600082015250565b60006133ce601983612ed5565b91506133d982613398565b602082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f446f70616d696e653a20596f7520616c7265616479206f776e2074686973207260008201527f6f756e6400000000000000000000000000000000000000000000000000000000602082015250565b6000613460602483612ed5565b915061346b82613404565b604082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d082612ddf565b91506134db83612ddf565b92508282026134e981612ddf565b91508282048414831517613500576134ff613496565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061354182612ddf565b915061354c83612ddf565b92508261355c5761355b613507565b5b828204905092915050565b600061357282612ddf565b915061357d83612ddf565b925082820390508181111561359557613594613496565b5b92915050565b60006135a682612ddf565b91506135b183612ddf565b92508282019050808211156135c9576135c8613496565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061361657607f821691505b602082108103613629576136286135cf565b5b50919050565b7f446f70616d696e653a204d696e74696e67206973206e6f7420656e61626c6564600082015250565b6000613665602083612ed5565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f446f70616d696e653a2043616e6e6f74206d696e742066726f6d20636f6e747260008201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b60006136f7602383612ed5565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f446f70616d696e653a204e6f7420656e6f75676820444f5041206c656674207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000613789602683612ed5565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f446f70616d696e653a204d6178206d696e7420636f756e742072656163686564600082015250565b60006137f5602083612ed5565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613887602583612ed5565b91506138928261382b565b604082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b7f446f70616d696e653a2053696465706f7420697320656d707479000000000000600082015250565b60006138f3601a83612ed5565b91506138fe826138bd565b602082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b7f446f70616d696e653a20526f756e64206e6f742066696e697368656400000000600082015250565b600061395f601c83612ed5565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f446f70616d696e653a204f6e6c79207468652077696e6e65722063616e20636c60008201527f61696d20746865207072697a6520706f6f6c0000000000000000000000000000602082015250565b60006139f1603283612ed5565b91506139fc82613995565b604082019050919050565b60006020820190508181036000830152613a20816139e4565b9050919050565b7f446f70616d696e653a205072697a65706f6f6c2068617320616c72656164792060008201527f6265656e20636c61696d65640000000000000000000000000000000000000000602082015250565b6000613a83602c83612ed5565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612ed5565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f446f70616d696e653a205072697a6520706f6f6c206d7573742062652067726560008201527f61746572207468616e2030000000000000000000000000000000000000000000602082015250565b6000613ba7602b83612ed5565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f446f70616d696e653a20436f756e74646f776e206d757374206265206772656160008201527f746572207468616e203000000000000000000000000000000000000000000000602082015250565b6000613c39602a83612ed5565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b9050919050565b7f446f70616d696e653a2054616b656f76657220636f7374206d7573742062652060008201527f67726561746572207468616e2030000000000000000000000000000000000000602082015250565b6000613ccb602e83612ed5565b9150613cd682613c6f565b604082019050919050565b60006020820190508181036000830152613cfa81613cbe565b9050919050565b7f446f70616d696e653a2054616b656f76657220636f737420696e63726561736560008201527f206d7573742062652067726561746572207468616e203020616e64206c65737360208201527f207468616e206f7220657175616c20746f203235000000000000000000000000604082015250565b6000613d83605483612ed5565b9150613d8e82613d01565b606082019050919050565b60006020820190508181036000830152613db281613d76565b9050919050565b7f446f70616d696e653a2053696465706f74206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613e15602883612ed5565b9150613e2082613db9565b604082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f446f70616d696e653a2053696465706f74207370696e20636f7374206d75737460008201527f2062652067726561746572207468616e20300000000000000000000000000000602082015250565b6000613ea7603283612ed5565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b6000606082019050613ef26000830186612de9565b613eff6020830185612de9565b613f0c6040830184612de9565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f70602583612ed5565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614002602383612ed5565b915061400d82613fa6565b604082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614094602683612ed5565b915061409f82614038565b604082019050919050565b600060208201905081810360008301526140c381614087565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614100602083612ed5565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614192602183612ed5565b915061419d82614136565b604082019050919050565b600060208201905081810360008301526141c181614185565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614224602283612ed5565b915061422f826141c8565b604082019050919050565b6000602082019050818103600083015261425381614217565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142b6602483612ed5565b91506142c18261425a565b604082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614348602283612ed5565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f446f70616d696e653a205472616e736665722066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006143da602883612ed5565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f446f70616d696e653a205472616e7366657220746f20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061446c602683612ed5565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f446f70616d696e653a205472616e7366657220616d6f756e74206d757374206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b60006144fe603383612ed5565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061456a601d83612ed5565b915061457582614534565b602082019050919050565b600060208201905081810360008301526145998161455d565b9050919050565b60006145ab82612ddf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145dd576145dc613496565b5b600182019050919050565b6000819050919050565b6000819050919050565b61460d614608826145e8565b6145f2565b82525050565b60008160601b9050919050565b600061462b82614613565b9050919050565b600061463d82614620565b9050919050565b61465561465082612dbe565b614632565b82525050565b6000819050919050565b61467661467182612ddf565b61465b565b82525050565b600061468882866145fc565b6020820191506146988285614644565b6014820191506146a88284614665565b602082019150819050949350505050565b60006146c482612ddf565b91506146cf83612ddf565b9250826146df576146de613507565b5b828206905092915050565b7f446f70616d696e653a2054726164696e67206973206e6f7420656e61626c6564600082015250565b6000614720602083612ed5565b915061472b826146ea565b602082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b7f446f70616d696e653a204164647265737320697320626c6f636b6c6973746564600082015250565b600061478c602083612ed5565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b905091905056fea2646970667358221220d1255304d454daf8638fd2cb5ab0bfb5af3756087e045f743f6af9458541d13064736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.