Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 UKIYO
Holders
68
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,000,000.000000000151645854 UKIYOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ukiyo
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-09 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract ukiyo is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; // EVERYTHING BELOW IS DISABLED uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; // EVERYTHING ON ABOVE IS DISABLED bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("ukiyo", "UKIYO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = 2000000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 4000000 * 1e18; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) private onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260196009556001600a60006101000a81548160ff021916908315150217905550610e10600b55610708600d556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506001601160006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600581526020017f756b69796f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f554b49594f00000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000799565b5080600490805190602001906200014792919062000799565b5050506200016a6200015e6200043460201b60201c565b6200043c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200050260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c9190620008b3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca9190620008b3565b6040518363ffffffff1660e01b8152600401620002e9929190620008f6565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f9190620008b3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200050260201b60201c565b60006b033b2e3c9fd0803ce800000090506a01a784379d99db420000006006819055506a034f086f3b33b684000000600881905550612710600582620003be91906200095c565b620003ca9190620009ec565b600781905550620003f2620003e4620005ec60201b60201c565b60016200050260201b60201c565b620004053060016200050260201b60201c565b6200041a61dead60016200050260201b60201c565b6200042c33826200061660201b60201c565b505062000c09565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005126200043460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000538620005ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005889062000a85565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006809062000af7565b60405180910390fd5b6200069d600083836200078f60201b60201c565b8060026000828254620006b1919062000b19565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000708919062000b19565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200076f919062000b87565b60405180910390a36200078b600083836200079460201b60201c565b5050565b505050565b505050565b828054620007a79062000bd3565b90600052602060002090601f016020900481019282620007cb576000855562000817565b82601f10620007e657805160ff191683800117855562000817565b8280016001018555821562000817579182015b8281111562000816578251825591602001919060010190620007f9565b5b5090506200082691906200082a565b5090565b5b80821115620008455760008160009055506001016200082b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200087b826200084e565b9050919050565b6200088d816200086e565b81146200089957600080fd5b50565b600081519050620008ad8162000882565b92915050565b600060208284031215620008cc57620008cb62000849565b5b6000620008dc848285016200089c565b91505092915050565b620008f0816200086e565b82525050565b60006040820190506200090d6000830185620008e5565b6200091c6020830184620008e5565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009698262000923565b9150620009768362000923565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009b257620009b16200092d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620009f98262000923565b915062000a068362000923565b92508262000a195762000a18620009bd565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a6d60208362000a24565b915062000a7a8262000a35565b602082019050919050565b6000602082019050818103600083015262000aa08162000a5e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000adf601f8362000a24565b915062000aec8262000aa7565b602082019050919050565b6000602082019050818103600083015262000b128162000ad0565b9050919050565b600062000b268262000923565b915062000b338362000923565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b6b5762000b6a6200092d565b5b828201905092915050565b62000b818162000923565b82525050565b600060208201905062000b9e600083018462000b76565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bec57607f821691505b6020821081141562000c035762000c0262000ba4565b5b50919050565b60805160a051613a0d62000c6060003960008181610d39015261181d015260008181610b27015281816117c5015281816127e9015281816128ca015281816128f10152818161298d01526129b40152613a0d6000f3fe60806040526004361061026b5760003560e01c80637bce5a0411610144578063a9059cbb116100b6578063d85ba0631161007a578063d85ba06314610941578063dd62ed3e1461096c578063e2f45605146109a9578063f11a24d3146109d4578063f6374342146109ff578063f8b45b0514610a2a57610272565b8063a9059cbb14610846578063b62496f514610883578063bbc0c742146108c0578063c876d0b9146108eb578063c8c8ebe41461091657610272565b80639c3b4fdc116101085780639c3b4fdc146107325780639ec22c0e1461075d5780639fccce3214610788578063a0d82dc5146107b3578063a457c2d7146107de578063a4c82a001461081b57610272565b80637bce5a041461066f5780638a8c523c1461069a5780638da5cb5b146106b157806392136913146106dc57806395d89b411461070757610272565b80632c3e486c116101dd5780634a62bb65116101a15780634a62bb651461056f5780636a486a8e1461059a5780636ddd1713146105c557806370a08231146105f0578063715018a61461062d578063751039fc1461064457610272565b80632c3e486c146104865780632e82f1a0146104b1578063313ce567146104dc578063395093511461050757806349bd5a5e1461054457610272565b8063184c16c51161022f578063184c16c514610372578063199ffc721461039d5780631a8145bb146103c85780631f3fed8f146103f357806323b872dd1461041e57806327c8f8351461045b57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a55565b6040516102999190612afc565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612bb7565b610ae7565b6040516102d69190612c12565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612c2d565b610b05565b6040516103139190612c12565b60405180910390f35b34801561032857600080fd5b50610331610b25565b60405161033e9190612cb9565b60405180910390f35b34801561035357600080fd5b5061035c610b49565b6040516103699190612ce3565b60405180910390f35b34801561037e57600080fd5b50610387610b53565b6040516103949190612ce3565b60405180910390f35b3480156103a957600080fd5b506103b2610b59565b6040516103bf9190612ce3565b60405180910390f35b3480156103d457600080fd5b506103dd610b5f565b6040516103ea9190612ce3565b60405180910390f35b3480156103ff57600080fd5b50610408610b65565b6040516104159190612ce3565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612cfe565b610b6b565b6040516104529190612c12565b60405180910390f35b34801561046757600080fd5b50610470610c63565b60405161047d9190612d60565b60405180910390f35b34801561049257600080fd5b5061049b610c69565b6040516104a89190612ce3565b60405180910390f35b3480156104bd57600080fd5b506104c6610c6f565b6040516104d39190612c12565b60405180910390f35b3480156104e857600080fd5b506104f1610c82565b6040516104fe9190612d97565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190612bb7565b610c8b565b60405161053b9190612c12565b60405180910390f35b34801561055057600080fd5b50610559610d37565b6040516105669190612d60565b60405180910390f35b34801561057b57600080fd5b50610584610d5b565b6040516105919190612c12565b60405180910390f35b3480156105a657600080fd5b506105af610d6e565b6040516105bc9190612ce3565b60405180910390f35b3480156105d157600080fd5b506105da610d74565b6040516105e79190612c12565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612c2d565b610d87565b6040516106249190612ce3565b60405180910390f35b34801561063957600080fd5b50610642610dcf565b005b34801561065057600080fd5b50610659610e57565b6040516106669190612c12565b60405180910390f35b34801561067b57600080fd5b50610684610ef7565b6040516106919190612ce3565b60405180910390f35b3480156106a657600080fd5b506106af610efd565b005b3480156106bd57600080fd5b506106c6610fb8565b6040516106d39190612d60565b60405180910390f35b3480156106e857600080fd5b506106f1610fe2565b6040516106fe9190612ce3565b60405180910390f35b34801561071357600080fd5b5061071c610fe8565b6040516107299190612afc565b60405180910390f35b34801561073e57600080fd5b5061074761107a565b6040516107549190612ce3565b60405180910390f35b34801561076957600080fd5b50610772611080565b60405161077f9190612ce3565b60405180910390f35b34801561079457600080fd5b5061079d611086565b6040516107aa9190612ce3565b60405180910390f35b3480156107bf57600080fd5b506107c861108c565b6040516107d59190612ce3565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612bb7565b611092565b6040516108129190612c12565b60405180910390f35b34801561082757600080fd5b5061083061117d565b60405161083d9190612ce3565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190612bb7565b611183565b60405161087a9190612c12565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190612c2d565b6111a1565b6040516108b79190612c12565b60405180910390f35b3480156108cc57600080fd5b506108d56111c1565b6040516108e29190612c12565b60405180910390f35b3480156108f757600080fd5b506109006111d4565b60405161090d9190612c12565b60405180910390f35b34801561092257600080fd5b5061092b6111e7565b6040516109389190612ce3565b60405180910390f35b34801561094d57600080fd5b506109566111ed565b6040516109639190612ce3565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190612db2565b6111f3565b6040516109a09190612ce3565b60405180910390f35b3480156109b557600080fd5b506109be61127a565b6040516109cb9190612ce3565b60405180910390f35b3480156109e057600080fd5b506109e9611280565b6040516109f69190612ce3565b60405180910390f35b348015610a0b57600080fd5b50610a14611286565b604051610a219190612ce3565b60405180910390f35b348015610a3657600080fd5b50610a3f61128c565b604051610a4c9190612ce3565b60405180910390f35b606060038054610a6490612e21565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090612e21565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610afb610af4611292565b848461129a565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600d5481565b60095481565b601b5481565b601a5481565b6000610b78848484611465565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc3611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90612ec5565b60405180910390fd5b610c5785610c4f611292565b85840361129a565b60019150509392505050565b61dead81565b600b5481565b600a60009054906101000a900460ff1681565b60006012905090565b6000610d2d610c98611292565b848460016000610ca6611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d289190612f14565b61129a565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b60165481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd7611292565b73ffffffffffffffffffffffffffffffffffffffff16610df5610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290612fb6565b60405180910390fd5b610e5560006121ef565b565b6000610e61611292565b73ffffffffffffffffffffffffffffffffffffffff16610e7f610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612fb6565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b610f05611292565b73ffffffffffffffffffffffffffffffffffffffff16610f23610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090612fb6565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555042600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b606060048054610ff790612e21565b80601f016020809104026020016040519081016040528092919081815260200182805461102390612e21565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b5050505050905090565b60155481565b600e5481565b601c5481565b60195481565b600080600160006110a1611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613048565b60405180910390fd5b611172611169611292565b8585840361129a565b600191505092915050565b600c5481565b6000611197611190611292565b8484611465565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b60065481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60145481565b60185481565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906130da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061316c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114589190612ce3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90613290565b60405180910390fd5b600081141561155f5761155a838360006122b5565b6121ea565b600f60009054906101000a900460ff1615611c225761157c610fb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115ea57506115ba610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116765750600560149054906101000a900460ff16155b15611c2157600f60019054906101000a900460ff1661177057601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117305750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906132fc565b60405180910390fd5b5b601160009054906101000a900460ff16156119385761178d610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561181457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561186c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156119375743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906133b4565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156119db5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8257600654811115611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613446565b60405180910390fd5b600854611a3183610d87565b82611a3c9190612f14565b1115611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906134b2565b60405180910390fd5b611c20565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b255750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b7457600654811115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613544565b60405180910390fd5b611c1f565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c1e57600854611bd183610d87565b82611bdc9190612f14565b1115611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c14906134b2565b60405180910390fd5b5b5b5b5b5b6000611c2d30610d87565b905060006007548210159050808015611c525750600f60029054906101000a900460ff165b8015611c6b5750600560149054906101000a900460ff16155b8015611cc15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d175750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d6d5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611db1576001600560146101000a81548160ff021916908315150217905550611d95612536565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015611e175750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611e2f5750600a60009054906101000a900460ff165b8015611e4a5750600b54600c54611e469190612f14565b4210155b8015611ea05750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f575750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611f6157600090505b600081156121da57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fc457506000601654115b1561209157611ff16064611fe3601654886126fe90919063ffffffff16565b61271490919063ffffffff16565b9050601654601854826120049190613564565b61200e91906135ed565b601b600082825461201f9190612f14565b92505081905550601654601954826120379190613564565b61204191906135ed565b601c60008282546120529190612f14565b925050819055506016546017548261206a9190613564565b61207491906135ed565b601a60008282546120859190612f14565b925050819055506121b6565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120ec57506000601254115b156121b557612119606461210b601254886126fe90919063ffffffff16565b61271490919063ffffffff16565b90506012546014548261212c9190613564565b61213691906135ed565b601b60008282546121479190612f14565b925050819055506012546015548261215f9190613564565b61216991906135ed565b601c600082825461217a9190612f14565b92505081905550601254601354826121929190613564565b61219c91906135ed565b601a60008282546121ad9190612f14565b925050819055505b5b60008111156121cb576121ca8730836122b5565b5b80856121d7919061361e565b94505b6121e58787876122b5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613290565b60405180910390fd5b6123a083838361272a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d906136c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b99190612f14565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161251d9190612ce3565b60405180910390a361253084848461272f565b50505050565b600061254130610d87565b90506000601c54601a54601b546125589190612f14565b6125629190612f14565b905060008214806125735750600081145b1561257f5750506126fc565b601460075461258e9190613564565b8211156125a75760146007546125a49190613564565b91505b6000600282601b54856125ba9190613564565b6125c491906135ed565b6125ce91906135ed565b905060006125e5828561273490919063ffffffff16565b905060004790506125f58261274a565b600061260a824761273490919063ffffffff16565b9050600061263586612627601a54856126fe90919063ffffffff16565b61271490919063ffffffff16565b9050600061266087612652601c54866126fe90919063ffffffff16565b61271490919063ffffffff16565b90506000818385612671919061361e565b61267b919061361e565b90506000601b819055506000601a819055506000601c819055506000871180156126a55750600081115b156126f2576126b48782612987565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516126e9939291906136e4565b60405180910390a15b5050505050505050505b565b6000818361270c9190613564565b905092915050565b6000818361272291906135ed565b905092915050565b505050565b505050565b60008183612742919061361e565b905092915050565b6000600267ffffffffffffffff8111156127675761276661371b565b5b6040519080825280602002602001820160405280156127955781602001602082028036833780820191505090505b50905030816000815181106127ad576127ac61374a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612852573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612876919061378e565b8160018151811061288a5761288961374a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128ef307f00000000000000000000000000000000000000000000000000000000000000008461129a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129519594939291906138b4565b600060405180830381600087803b15801561296b57600080fd5b505af115801561297f573d6000803e3d6000fd5b505050505050565b6129b2307f00000000000000000000000000000000000000000000000000000000000000008461129a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612a199695949392919061390e565b60606040518083038185885af1158015612a37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5c9190613984565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a9d578082015181840152602081019050612a82565b83811115612aac576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ace82612a63565b612ad88185612a6e565b9350612ae8818560208601612a7f565b612af181612ab2565b840191505092915050565b60006020820190508181036000830152612b168184612ac3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4e82612b23565b9050919050565b612b5e81612b43565b8114612b6957600080fd5b50565b600081359050612b7b81612b55565b92915050565b6000819050919050565b612b9481612b81565b8114612b9f57600080fd5b50565b600081359050612bb181612b8b565b92915050565b60008060408385031215612bce57612bcd612b1e565b5b6000612bdc85828601612b6c565b9250506020612bed85828601612ba2565b9150509250929050565b60008115159050919050565b612c0c81612bf7565b82525050565b6000602082019050612c276000830184612c03565b92915050565b600060208284031215612c4357612c42612b1e565b5b6000612c5184828501612b6c565b91505092915050565b6000819050919050565b6000612c7f612c7a612c7584612b23565b612c5a565b612b23565b9050919050565b6000612c9182612c64565b9050919050565b6000612ca382612c86565b9050919050565b612cb381612c98565b82525050565b6000602082019050612cce6000830184612caa565b92915050565b612cdd81612b81565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600080600060608486031215612d1757612d16612b1e565b5b6000612d2586828701612b6c565b9350506020612d3686828701612b6c565b9250506040612d4786828701612ba2565b9150509250925092565b612d5a81612b43565b82525050565b6000602082019050612d756000830184612d51565b92915050565b600060ff82169050919050565b612d9181612d7b565b82525050565b6000602082019050612dac6000830184612d88565b92915050565b60008060408385031215612dc957612dc8612b1e565b5b6000612dd785828601612b6c565b9250506020612de885828601612b6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3957607f821691505b60208210811415612e4d57612e4c612df2565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612eaf602883612a6e565b9150612eba82612e53565b604082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1f82612b81565b9150612f2a83612b81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5f57612f5e612ee5565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fa0602083612a6e565b9150612fab82612f6a565b602082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613032602583612a6e565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130c4602483612a6e565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613156602283612a6e565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131e8602583612a6e565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061327a602383612a6e565b91506132858261321e565b604082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006132e6601683612a6e565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061339e604983612a6e565b91506133a98261331c565b606082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613430603583612a6e565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061349c601383612a6e565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061352e603683612a6e565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b600061356f82612b81565b915061357a83612b81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b3576135b2612ee5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135f882612b81565b915061360383612b81565b925082613613576136126135be565b5b828204905092915050565b600061362982612b81565b915061363483612b81565b92508282101561364757613646612ee5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136ae602683612a6e565b91506136b982613652565b604082019050919050565b600060208201905081810360008301526136dd816136a1565b9050919050565b60006060820190506136f96000830186612cd4565b6137066020830185612cd4565b6137136040830184612cd4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061378881612b55565b92915050565b6000602082840312156137a4576137a3612b1e565b5b60006137b284828501613779565b91505092915050565b6000819050919050565b60006137e06137db6137d6846137bb565b612c5a565b612b81565b9050919050565b6137f0816137c5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61382b81612b43565b82525050565b600061383d8383613822565b60208301905092915050565b6000602082019050919050565b6000613861826137f6565b61386b8185613801565b935061387683613812565b8060005b838110156138a757815161388e8882613831565b975061389983613849565b92505060018101905061387a565b5085935050505092915050565b600060a0820190506138c96000830188612cd4565b6138d660208301876137e7565b81810360408301526138e88186613856565b90506138f76060830185612d51565b6139046080830184612cd4565b9695505050505050565b600060c0820190506139236000830189612d51565b6139306020830188612cd4565b61393d60408301876137e7565b61394a60608301866137e7565b6139576080830185612d51565b61396460a0830184612cd4565b979650505050505050565b60008151905061397e81612b8b565b92915050565b60008060006060848603121561399d5761399c612b1e565b5b60006139ab8682870161396f565b93505060206139bc8682870161396f565b92505060406139cd8682870161396f565b915050925092509256fea26469706673582212201c2e9cf2d834f82863e3813696d38bbf7eaf237c9dcb57c44f259041b4bdb0d164736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80637bce5a0411610144578063a9059cbb116100b6578063d85ba0631161007a578063d85ba06314610941578063dd62ed3e1461096c578063e2f45605146109a9578063f11a24d3146109d4578063f6374342146109ff578063f8b45b0514610a2a57610272565b8063a9059cbb14610846578063b62496f514610883578063bbc0c742146108c0578063c876d0b9146108eb578063c8c8ebe41461091657610272565b80639c3b4fdc116101085780639c3b4fdc146107325780639ec22c0e1461075d5780639fccce3214610788578063a0d82dc5146107b3578063a457c2d7146107de578063a4c82a001461081b57610272565b80637bce5a041461066f5780638a8c523c1461069a5780638da5cb5b146106b157806392136913146106dc57806395d89b411461070757610272565b80632c3e486c116101dd5780634a62bb65116101a15780634a62bb651461056f5780636a486a8e1461059a5780636ddd1713146105c557806370a08231146105f0578063715018a61461062d578063751039fc1461064457610272565b80632c3e486c146104865780632e82f1a0146104b1578063313ce567146104dc578063395093511461050757806349bd5a5e1461054457610272565b8063184c16c51161022f578063184c16c514610372578063199ffc721461039d5780631a8145bb146103c85780631f3fed8f146103f357806323b872dd1461041e57806327c8f8351461045b57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a55565b6040516102999190612afc565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612bb7565b610ae7565b6040516102d69190612c12565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612c2d565b610b05565b6040516103139190612c12565b60405180910390f35b34801561032857600080fd5b50610331610b25565b60405161033e9190612cb9565b60405180910390f35b34801561035357600080fd5b5061035c610b49565b6040516103699190612ce3565b60405180910390f35b34801561037e57600080fd5b50610387610b53565b6040516103949190612ce3565b60405180910390f35b3480156103a957600080fd5b506103b2610b59565b6040516103bf9190612ce3565b60405180910390f35b3480156103d457600080fd5b506103dd610b5f565b6040516103ea9190612ce3565b60405180910390f35b3480156103ff57600080fd5b50610408610b65565b6040516104159190612ce3565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612cfe565b610b6b565b6040516104529190612c12565b60405180910390f35b34801561046757600080fd5b50610470610c63565b60405161047d9190612d60565b60405180910390f35b34801561049257600080fd5b5061049b610c69565b6040516104a89190612ce3565b60405180910390f35b3480156104bd57600080fd5b506104c6610c6f565b6040516104d39190612c12565b60405180910390f35b3480156104e857600080fd5b506104f1610c82565b6040516104fe9190612d97565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190612bb7565b610c8b565b60405161053b9190612c12565b60405180910390f35b34801561055057600080fd5b50610559610d37565b6040516105669190612d60565b60405180910390f35b34801561057b57600080fd5b50610584610d5b565b6040516105919190612c12565b60405180910390f35b3480156105a657600080fd5b506105af610d6e565b6040516105bc9190612ce3565b60405180910390f35b3480156105d157600080fd5b506105da610d74565b6040516105e79190612c12565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612c2d565b610d87565b6040516106249190612ce3565b60405180910390f35b34801561063957600080fd5b50610642610dcf565b005b34801561065057600080fd5b50610659610e57565b6040516106669190612c12565b60405180910390f35b34801561067b57600080fd5b50610684610ef7565b6040516106919190612ce3565b60405180910390f35b3480156106a657600080fd5b506106af610efd565b005b3480156106bd57600080fd5b506106c6610fb8565b6040516106d39190612d60565b60405180910390f35b3480156106e857600080fd5b506106f1610fe2565b6040516106fe9190612ce3565b60405180910390f35b34801561071357600080fd5b5061071c610fe8565b6040516107299190612afc565b60405180910390f35b34801561073e57600080fd5b5061074761107a565b6040516107549190612ce3565b60405180910390f35b34801561076957600080fd5b50610772611080565b60405161077f9190612ce3565b60405180910390f35b34801561079457600080fd5b5061079d611086565b6040516107aa9190612ce3565b60405180910390f35b3480156107bf57600080fd5b506107c861108c565b6040516107d59190612ce3565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612bb7565b611092565b6040516108129190612c12565b60405180910390f35b34801561082757600080fd5b5061083061117d565b60405161083d9190612ce3565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190612bb7565b611183565b60405161087a9190612c12565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190612c2d565b6111a1565b6040516108b79190612c12565b60405180910390f35b3480156108cc57600080fd5b506108d56111c1565b6040516108e29190612c12565b60405180910390f35b3480156108f757600080fd5b506109006111d4565b60405161090d9190612c12565b60405180910390f35b34801561092257600080fd5b5061092b6111e7565b6040516109389190612ce3565b60405180910390f35b34801561094d57600080fd5b506109566111ed565b6040516109639190612ce3565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190612db2565b6111f3565b6040516109a09190612ce3565b60405180910390f35b3480156109b557600080fd5b506109be61127a565b6040516109cb9190612ce3565b60405180910390f35b3480156109e057600080fd5b506109e9611280565b6040516109f69190612ce3565b60405180910390f35b348015610a0b57600080fd5b50610a14611286565b604051610a219190612ce3565b60405180910390f35b348015610a3657600080fd5b50610a3f61128c565b604051610a4c9190612ce3565b60405180910390f35b606060038054610a6490612e21565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090612e21565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610afb610af4611292565b848461129a565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600d5481565b60095481565b601b5481565b601a5481565b6000610b78848484611465565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc3611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90612ec5565b60405180910390fd5b610c5785610c4f611292565b85840361129a565b60019150509392505050565b61dead81565b600b5481565b600a60009054906101000a900460ff1681565b60006012905090565b6000610d2d610c98611292565b848460016000610ca6611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d289190612f14565b61129a565b6001905092915050565b7f000000000000000000000000086cf0eb5e0f076ef33f7ed43cf91335989125eb81565b600f60009054906101000a900460ff1681565b60165481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd7611292565b73ffffffffffffffffffffffffffffffffffffffff16610df5610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290612fb6565b60405180910390fd5b610e5560006121ef565b565b6000610e61611292565b73ffffffffffffffffffffffffffffffffffffffff16610e7f610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612fb6565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b610f05611292565b73ffffffffffffffffffffffffffffffffffffffff16610f23610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090612fb6565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555042600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b606060048054610ff790612e21565b80601f016020809104026020016040519081016040528092919081815260200182805461102390612e21565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b5050505050905090565b60155481565b600e5481565b601c5481565b60195481565b600080600160006110a1611292565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613048565b60405180910390fd5b611172611169611292565b8585840361129a565b600191505092915050565b600c5481565b6000611197611190611292565b8484611465565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b60065481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60145481565b60185481565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906130da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061316c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114589190612ce3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90613290565b60405180910390fd5b600081141561155f5761155a838360006122b5565b6121ea565b600f60009054906101000a900460ff1615611c225761157c610fb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115ea57506115ba610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116765750600560149054906101000a900460ff16155b15611c2157600f60019054906101000a900460ff1661177057601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117305750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906132fc565b60405180910390fd5b5b601160009054906101000a900460ff16156119385761178d610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561181457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561186c57507f000000000000000000000000086cf0eb5e0f076ef33f7ed43cf91335989125eb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156119375743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906133b4565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156119db5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8257600654811115611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613446565b60405180910390fd5b600854611a3183610d87565b82611a3c9190612f14565b1115611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906134b2565b60405180910390fd5b611c20565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b255750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b7457600654811115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613544565b60405180910390fd5b611c1f565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c1e57600854611bd183610d87565b82611bdc9190612f14565b1115611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c14906134b2565b60405180910390fd5b5b5b5b5b5b6000611c2d30610d87565b905060006007548210159050808015611c525750600f60029054906101000a900460ff165b8015611c6b5750600560149054906101000a900460ff16155b8015611cc15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d175750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d6d5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611db1576001600560146101000a81548160ff021916908315150217905550611d95612536565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015611e175750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611e2f5750600a60009054906101000a900460ff165b8015611e4a5750600b54600c54611e469190612f14565b4210155b8015611ea05750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f575750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611f6157600090505b600081156121da57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fc457506000601654115b1561209157611ff16064611fe3601654886126fe90919063ffffffff16565b61271490919063ffffffff16565b9050601654601854826120049190613564565b61200e91906135ed565b601b600082825461201f9190612f14565b92505081905550601654601954826120379190613564565b61204191906135ed565b601c60008282546120529190612f14565b925050819055506016546017548261206a9190613564565b61207491906135ed565b601a60008282546120859190612f14565b925050819055506121b6565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120ec57506000601254115b156121b557612119606461210b601254886126fe90919063ffffffff16565b61271490919063ffffffff16565b90506012546014548261212c9190613564565b61213691906135ed565b601b60008282546121479190612f14565b925050819055506012546015548261215f9190613564565b61216991906135ed565b601c600082825461217a9190612f14565b92505081905550601254601354826121929190613564565b61219c91906135ed565b601a60008282546121ad9190612f14565b925050819055505b5b60008111156121cb576121ca8730836122b5565b5b80856121d7919061361e565b94505b6121e58787876122b5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613290565b60405180910390fd5b6123a083838361272a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d906136c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b99190612f14565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161251d9190612ce3565b60405180910390a361253084848461272f565b50505050565b600061254130610d87565b90506000601c54601a54601b546125589190612f14565b6125629190612f14565b905060008214806125735750600081145b1561257f5750506126fc565b601460075461258e9190613564565b8211156125a75760146007546125a49190613564565b91505b6000600282601b54856125ba9190613564565b6125c491906135ed565b6125ce91906135ed565b905060006125e5828561273490919063ffffffff16565b905060004790506125f58261274a565b600061260a824761273490919063ffffffff16565b9050600061263586612627601a54856126fe90919063ffffffff16565b61271490919063ffffffff16565b9050600061266087612652601c54866126fe90919063ffffffff16565b61271490919063ffffffff16565b90506000818385612671919061361e565b61267b919061361e565b90506000601b819055506000601a819055506000601c819055506000871180156126a55750600081115b156126f2576126b48782612987565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516126e9939291906136e4565b60405180910390a15b5050505050505050505b565b6000818361270c9190613564565b905092915050565b6000818361272291906135ed565b905092915050565b505050565b505050565b60008183612742919061361e565b905092915050565b6000600267ffffffffffffffff8111156127675761276661371b565b5b6040519080825280602002602001820160405280156127955781602001602082028036833780820191505090505b50905030816000815181106127ad576127ac61374a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612852573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612876919061378e565b8160018151811061288a5761288961374a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128ef307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461129a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129519594939291906138b4565b600060405180830381600087803b15801561296b57600080fd5b505af115801561297f573d6000803e3d6000fd5b505050505050565b6129b2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461129a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612a199695949392919061390e565b60606040518083038185885af1158015612a37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5c9190613984565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a9d578082015181840152602081019050612a82565b83811115612aac576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ace82612a63565b612ad88185612a6e565b9350612ae8818560208601612a7f565b612af181612ab2565b840191505092915050565b60006020820190508181036000830152612b168184612ac3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4e82612b23565b9050919050565b612b5e81612b43565b8114612b6957600080fd5b50565b600081359050612b7b81612b55565b92915050565b6000819050919050565b612b9481612b81565b8114612b9f57600080fd5b50565b600081359050612bb181612b8b565b92915050565b60008060408385031215612bce57612bcd612b1e565b5b6000612bdc85828601612b6c565b9250506020612bed85828601612ba2565b9150509250929050565b60008115159050919050565b612c0c81612bf7565b82525050565b6000602082019050612c276000830184612c03565b92915050565b600060208284031215612c4357612c42612b1e565b5b6000612c5184828501612b6c565b91505092915050565b6000819050919050565b6000612c7f612c7a612c7584612b23565b612c5a565b612b23565b9050919050565b6000612c9182612c64565b9050919050565b6000612ca382612c86565b9050919050565b612cb381612c98565b82525050565b6000602082019050612cce6000830184612caa565b92915050565b612cdd81612b81565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600080600060608486031215612d1757612d16612b1e565b5b6000612d2586828701612b6c565b9350506020612d3686828701612b6c565b9250506040612d4786828701612ba2565b9150509250925092565b612d5a81612b43565b82525050565b6000602082019050612d756000830184612d51565b92915050565b600060ff82169050919050565b612d9181612d7b565b82525050565b6000602082019050612dac6000830184612d88565b92915050565b60008060408385031215612dc957612dc8612b1e565b5b6000612dd785828601612b6c565b9250506020612de885828601612b6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3957607f821691505b60208210811415612e4d57612e4c612df2565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612eaf602883612a6e565b9150612eba82612e53565b604082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1f82612b81565b9150612f2a83612b81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5f57612f5e612ee5565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fa0602083612a6e565b9150612fab82612f6a565b602082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613032602583612a6e565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130c4602483612a6e565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613156602283612a6e565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131e8602583612a6e565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061327a602383612a6e565b91506132858261321e565b604082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006132e6601683612a6e565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061339e604983612a6e565b91506133a98261331c565b606082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613430603583612a6e565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061349c601383612a6e565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061352e603683612a6e565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b600061356f82612b81565b915061357a83612b81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b3576135b2612ee5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135f882612b81565b915061360383612b81565b925082613613576136126135be565b5b828204905092915050565b600061362982612b81565b915061363483612b81565b92508282101561364757613646612ee5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136ae602683612a6e565b91506136b982613652565b604082019050919050565b600060208201905081810360008301526136dd816136a1565b9050919050565b60006060820190506136f96000830186612cd4565b6137066020830185612cd4565b6137136040830184612cd4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061378881612b55565b92915050565b6000602082840312156137a4576137a3612b1e565b5b60006137b284828501613779565b91505092915050565b6000819050919050565b60006137e06137db6137d6846137bb565b612c5a565b612b81565b9050919050565b6137f0816137c5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61382b81612b43565b82525050565b600061383d8383613822565b60208301905092915050565b6000602082019050919050565b6000613861826137f6565b61386b8185613801565b935061387683613812565b8060005b838110156138a757815161388e8882613831565b975061389983613849565b92505060018101905061387a565b5085935050505092915050565b600060a0820190506138c96000830188612cd4565b6138d660208301876137e7565b81810360408301526138e88186613856565b90506138f76060830185612d51565b6139046080830184612cd4565b9695505050505050565b600060c0820190506139236000830189612d51565b6139306020830188612cd4565b61393d60408301876137e7565b61394a60608301866137e7565b6139576080830185612d51565b61396460a0830184612cd4565b979650505050505050565b60008151905061397e81612b8b565b92915050565b60008060006060848603121561399d5761399c612b1e565b5b60006139ab8682870161396f565b93505060206139bc8682870161396f565b92505060406139cd8682870161396f565b915050925092509256fea26469706673582212201c2e9cf2d834f82863e3813696d38bbf7eaf237c9dcb57c44f259041b4bdb0d164736f6c634300080a0033
Deployed Bytecode Sourcemap
32369:12069:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9197:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11364:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33994:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32444:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10317:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32970:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32787:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33778:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33738;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12015:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32547:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32882:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32843:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10159:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12916:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32502:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33106:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33593:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33186:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10488:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;36434:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33486:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36227:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33628:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9416:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33560:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33024:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33704:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13634:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32934:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10828:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34215:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33146:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33404:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32674:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33452:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11066:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32716:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33523:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33666:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32756:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9197:100;9251:13;9284:5;9277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9197:100;:::o;11364:169::-;11447:4;11464:39;11473:12;:10;:12::i;:::-;11487:7;11496:6;11464:8;:39::i;:::-;11521:4;11514:11;;11364:169;;;;:::o;33994:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32444:51::-;;;:::o;10317:108::-;10378:7;10405:12;;10398:19;;10317:108;:::o;32970:47::-;;;;:::o;32787:36::-;;;;:::o;33778:33::-;;;;:::o;33738:::-;;;;:::o;12015:492::-;12155:4;12172:36;12182:6;12190:9;12201:6;12172:9;:36::i;:::-;12221:24;12248:11;:19;12260:6;12248:19;;;;;;;;;;;;;;;:33;12268:12;:10;:12::i;:::-;12248:33;;;;;;;;;;;;;;;;12221:60;;12320:6;12300:16;:26;;12292:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12407:57;12416:6;12424:12;:10;:12::i;:::-;12457:6;12438:16;:25;12407:8;:57::i;:::-;12495:4;12488:11;;;12015:492;;;;;:::o;32547:53::-;32593:6;32547:53;:::o;32882:45::-;;;;:::o;32843:32::-;;;;;;;;;;;;;:::o;10159:93::-;10217:5;10242:2;10235:9;;10159:93;:::o;12916:215::-;13004:4;13021:80;13030:12;:10;:12::i;:::-;13044:7;13090:10;13053:11;:25;13065:12;:10;:12::i;:::-;13053:25;;;;;;;;;;;;;;;:34;13079:7;13053:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13021:8;:80::i;:::-;13119:4;13112:11;;12916:215;;;;:::o;32502:38::-;;;:::o;33106:33::-;;;;;;;;;;;;;:::o;33593:28::-;;;;:::o;33186:31::-;;;;;;;;;;;;;:::o;10488:127::-;10562:7;10589:9;:18;10599:7;10589:18;;;;;;;;;;;;;;;;10582:25;;10488:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;36434:121::-;36486:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36520:5:::1;36503:14;;:22;;;;;;;;;;;;;;;;;;36543:4;36536:11;;36434:121:::0;:::o;33486:30::-;;;;:::o;36227:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36298:4:::1;36282:13;;:20;;;;;;;;;;;;;;;;;;36327:4;36313:11;;:18;;;;;;;;;;;;;;;;;;36359:15;36342:14;:32;;;;36227:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33628:31::-;;;;:::o;9416:104::-;9472:13;9505:7;9498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9416:104;:::o;33560:24::-;;;;:::o;33024:35::-;;;;:::o;33818:27::-;;;;:::o;33704:25::-;;;;:::o;13634:413::-;13727:4;13744:24;13771:11;:25;13783:12;:10;:12::i;:::-;13771:25;;;;;;;;;;;;;;;:34;13797:7;13771:34;;;;;;;;;;;;;;;;13744:61;;13844:15;13824:16;:35;;13816:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13937:67;13946:12;:10;:12::i;:::-;13960:7;13988:15;13969:16;:34;13937:8;:67::i;:::-;14035:4;14028:11;;;13634:413;;;;:::o;32934:29::-;;;;:::o;10828:175::-;10914:4;10931:42;10941:12;:10;:12::i;:::-;10955:9;10966:6;10931:9;:42::i;:::-;10991:4;10984:11;;10828:175;;;;:::o;34215:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33146:33::-;;;;;;;;;;;;;:::o;33404:39::-;;;;;;;;;;;;;:::o;32674:35::-;;;;:::o;33452:27::-;;;;:::o;11066:151::-;11155:7;11182:11;:18;11194:5;11182:18;;;;;;;;;;;;;;;:27;11201:7;11182:27;;;;;;;;;;;;;;;;11175:34;;11066:151;;;;:::o;32716:33::-;;;;:::o;33523:30::-;;;;:::o;33666:31::-;;;;:::o;32756:24::-;;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17318:380::-;17471:1;17454:19;;:5;:19;;;;17446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17552:1;17533:21;;:7;:21;;;;17525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17636:6;17606:11;:18;17618:5;17606:18;;;;;;;;;;;;;;;:27;17625:7;17606:27;;;;;;;;;;;;;;;:36;;;;17674:7;17658:32;;17667:5;17658:32;;;17683:6;17658:32;;;;;;:::i;:::-;;;;;;;;17318:380;;;:::o;36789:4967::-;36937:1;36921:18;;:4;:18;;;;36913:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37014:1;37000:16;;:2;:16;;;;36992:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37083:1;37073:6;:11;37069:93;;;37101:28;37117:4;37123:2;37127:1;37101:15;:28::i;:::-;37144:7;;37069:93;37178:14;;;;;;;;;;;37174:2487;;;37239:7;:5;:7::i;:::-;37231:15;;:4;:15;;;;:49;;;;;37273:7;:5;:7::i;:::-;37267:13;;:2;:13;;;;37231:49;:86;;;;;37315:1;37301:16;;:2;:16;;;;37231:86;:128;;;;;37352:6;37338:21;;:2;:21;;;;37231:128;:158;;;;;37381:8;;;;;;;;;;;37380:9;37231:158;37209:2441;;;37429:13;;;;;;;;;;;37424:223;;37501:19;:25;37521:4;37501:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37530:19;:23;37550:2;37530:23;;;;;;;;;;;;;;;;;;;;;;;;;37501:52;37467:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37424:223;37803:20;;;;;;;;;;;37799:641;;;37884:7;:5;:7::i;:::-;37878:13;;:2;:13;;;;:72;;;;;37934:15;37920:30;;:2;:30;;;;37878:72;:129;;;;;37993:13;37979:28;;:2;:28;;;;37878:129;37848:573;;;38171:12;38096:28;:39;38125:9;38096:39;;;;;;;;;;;;;;;;:87;38058:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38385:12;38343:28;:39;38372:9;38343:39;;;;;;;;;;;;;;;:54;;;;37848:573;37799:641;38514:25;:31;38540:4;38514:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38571:31;:35;38603:2;38571:35;;;;;;;;;;;;;;;;;;;;;;;;;38570:36;38514:92;38488:1147;;;38693:20;;38683:6;:30;;38649:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38901:9;;38884:13;38894:2;38884:9;:13::i;:::-;38875:6;:22;;;;:::i;:::-;:35;;38841:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38488:1147;;;39079:25;:29;39105:2;39079:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39134:31;:37;39166:4;39134:37;;;;;;;;;;;;;;;;;;;;;;;;;39133:38;39079:92;39053:582;;;39258:20;;39248:6;:30;;39214:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39053:582;;;39415:31;:35;39447:2;39415:35;;;;;;;;;;;;;;;;;;;;;;;;;39410:225;;39535:9;;39518:13;39528:2;39518:9;:13::i;:::-;39509:6;:22;;;;:::i;:::-;:35;;39475:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39410:225;39053:582;38488:1147;37209:2441;37174:2487;39673:28;39704:24;39722:4;39704:9;:24::i;:::-;39673:55;;39741:12;39780:18;;39756:20;:42;;39741:57;;39829:7;:35;;;;;39853:11;;;;;;;;;;;39829:35;:61;;;;;39882:8;;;;;;;;;;;39881:9;39829:61;:110;;;;;39908:25;:31;39934:4;39908:31;;;;;;;;;;;;;;;;;;;;;;;;;39907:32;39829:110;:153;;;;;39957:19;:25;39977:4;39957:25;;;;;;;;;;;;;;;;;;;;;;;;;39956:26;39829:153;:194;;;;;40000:19;:23;40020:2;40000:23;;;;;;;;;;;;;;;;;;;;;;;;;39999:24;39829:194;39811:326;;;40061:4;40050:8;;:15;;;;;;;;;;;;;;;;;;40082:10;:8;:10::i;:::-;40120:5;40109:8;;:16;;;;;;;;;;;;;;;;;;39811:326;40168:8;;;;;;;;;;;40167:9;:55;;;;;40193:25;:29;40219:2;40193:29;;;;;;;;;;;;;;;;;;;;;;;;;40167:55;:85;;;;;40239:13;;;;;;;;;;;40167:85;:153;;;;;40305:15;;40288:14;;:32;;;;:::i;:::-;40269:15;:51;;40167:153;:196;;;;;40338:19;:25;40358:4;40338:25;;;;;;;;;;;;;;;;;;;;;;;;;40337:26;40167:196;40149:238;40399:12;40415:8;;;;;;;;;;;40414:9;40399:24;;40525:19;:25;40545:4;40525:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40554:19;:23;40574:2;40554:23;;;;;;;;;;;;;;;;;;;;;;;;;40525:52;40521:100;;;40604:5;40594:15;;40521:100;40633:12;40738:7;40734:969;;;40790:25;:29;40816:2;40790:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40839:1;40823:13;;:17;40790:50;40786:768;;;40868:34;40898:3;40868:25;40879:13;;40868:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40861:41;;40971:13;;40951:16;;40944:4;:23;;;;:::i;:::-;40943:41;;;;:::i;:::-;40921:18;;:63;;;;;;;:::i;:::-;;;;;;;;41041:13;;41027:10;;41020:4;:17;;;;:::i;:::-;41019:35;;;;:::i;:::-;41003:12;;:51;;;;;;;:::i;:::-;;;;;;;;41123:13;;41103:16;;41096:4;:23;;;;:::i;:::-;41095:41;;;;:::i;:::-;41073:18;;:63;;;;;;;:::i;:::-;;;;;;;;40786:768;;;41198:25;:31;41224:4;41198:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41248:1;41233:12;;:16;41198:51;41194:360;;;41277:33;41306:3;41277:24;41288:12;;41277:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41270:40;;41378:12;;41359:15;;41352:4;:22;;;;:::i;:::-;41351:39;;;;:::i;:::-;41329:18;;:61;;;;;;;:::i;:::-;;;;;;;;41446:12;;41433:9;;41426:4;:16;;;;:::i;:::-;41425:33;;;;:::i;:::-;41409:12;;:49;;;;;;;:::i;:::-;;;;;;;;41526:12;;41507:15;;41500:4;:22;;;;:::i;:::-;41499:39;;;;:::i;:::-;41477:18;;:61;;;;;;;:::i;:::-;;;;;;;;41194:360;40786:768;41581:1;41574:4;:8;41570:91;;;41603:42;41619:4;41633;41640;41603:15;:42::i;:::-;41570:91;41687:4;41677:14;;;;;:::i;:::-;;;40734:969;41715:33;41731:4;41737:2;41741:6;41715:15;:33::i;:::-;36902:4854;;;;36789:4967;;;;:::o;3051:191::-;3125:16;3144:6;;;;;;;;;;;3125:25;;3170:8;3161:6;;:17;;;;;;;;;;;;;;;;;;3225:8;3194:40;;3215:8;3194:40;;;;;;;;;;;;3114:128;3051:191;:::o;14537:733::-;14695:1;14677:20;;:6;:20;;;;14669:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14779:1;14758:23;;:9;:23;;;;14750:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14834:47;14855:6;14863:9;14874:6;14834:20;:47::i;:::-;14894:21;14918:9;:17;14928:6;14918:17;;;;;;;;;;;;;;;;14894:41;;14971:6;14954:13;:23;;14946:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15092:6;15076:13;:22;15056:9;:17;15066:6;15056:17;;;;;;;;;;;;;;;:42;;;;15144:6;15120:9;:20;15130:9;15120:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15185:9;15168:35;;15177:6;15168:35;;;15196:6;15168:35;;;;;;:::i;:::-;;;;;;;;15216:46;15236:6;15244:9;15255:6;15216:19;:46::i;:::-;14658:612;14537:733;;;:::o;42886:1549::-;42925:23;42951:24;42969:4;42951:9;:24::i;:::-;42925:50;;42986:25;43082:12;;43048:18;;43014;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42986:108;;43130:1;43111:15;:20;:46;;;;43156:1;43135:17;:22;43111:46;43107:85;;;43174:7;;;;43107:85;43247:2;43226:18;;:23;;;;:::i;:::-;43208:15;:41;43204:115;;;43305:2;43284:18;;:23;;;;:::i;:::-;43266:41;;43204:115;43380:23;43493:1;43460:17;43425:18;;43407:15;:36;;;;:::i;:::-;43406:71;;;;:::i;:::-;:88;;;;:::i;:::-;43380:114;;43505:26;43534:36;43554:15;43534;:19;;:36;;;;:::i;:::-;43505:65;;43583:25;43611:21;43583:49;;43645:36;43662:18;43645:16;:36::i;:::-;43694:18;43715:44;43741:17;43715:21;:25;;:44;;;;:::i;:::-;43694:65;;43772:23;43798:81;43851:17;43798:34;43813:18;;43798:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43772:107;;43890:17;43910:51;43943:17;43910:28;43925:12;;43910:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43890:71;;43974:23;44031:9;44013:15;44000:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43974:66;;44074:1;44053:18;:22;;;;44107:1;44086:18;:22;;;;44134:1;44119:12;:16;;;;44172:1;44154:15;:19;:42;;;;;44195:1;44177:15;:19;44154:42;44150:278;;;44213:46;44226:15;44243;44213:12;:46::i;:::-;44279:137;44312:18;44349:15;44383:18;;44279:137;;;;;;;;:::i;:::-;;;;;;;;44150:278;42914:1521;;;;;;;;;42886:1549;:::o;22771:98::-;22829:7;22860:1;22856;:5;;;;:::i;:::-;22849:12;;22771:98;;;;:::o;23170:::-;23228:7;23259:1;23255;:5;;;;:::i;:::-;23248:12;;23170:98;;;;:::o;18298:125::-;;;;:::o;19027:124::-;;;;:::o;22414:98::-;22472:7;22503:1;22499;:5;;;;:::i;:::-;22492:12;;22414:98;;;;:::o;41764:589::-;41890:21;41928:1;41914:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41890:40;;41959:4;41941;41946:1;41941:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41985:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41975:4;41980:1;41975:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42020:62;42037:4;42052:15;42070:11;42020:8;:62::i;:::-;42121:15;:66;;;42202:11;42228:1;42272:4;42299;42319:15;42121:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41819:534;41764:589;:::o;42361:517::-;42509:62;42526:4;42541:15;42559:11;42509:8;:62::i;:::-;42614:15;:31;;;42653:9;42686:4;42706:11;42732:1;42775;32593:6;42844:15;42614:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42361:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:227::-;7698:34;7694:1;7686:6;7682:14;7675:58;7767:10;7762:2;7754:6;7750:15;7743:35;7558:227;:::o;7791:366::-;7933:3;7954:67;8018:2;8013:3;7954:67;:::i;:::-;7947:74;;8030:93;8119:3;8030:93;:::i;:::-;8148:2;8143:3;8139:12;8132:19;;7791:366;;;:::o;8163:419::-;8329:4;8367:2;8356:9;8352:18;8344:26;;8416:9;8410:4;8406:20;8402:1;8391:9;8387:17;8380:47;8444:131;8570:4;8444:131;:::i;:::-;8436:139;;8163:419;;;:::o;8588:180::-;8636:77;8633:1;8626:88;8733:4;8730:1;8723:15;8757:4;8754:1;8747:15;8774:305;8814:3;8833:20;8851:1;8833:20;:::i;:::-;8828:25;;8867:20;8885:1;8867:20;:::i;:::-;8862:25;;9021:1;8953:66;8949:74;8946:1;8943:81;8940:107;;;9027:18;;:::i;:::-;8940:107;9071:1;9068;9064:9;9057:16;;8774:305;;;;:::o;9085:182::-;9225:34;9221:1;9213:6;9209:14;9202:58;9085:182;:::o;9273:366::-;9415:3;9436:67;9500:2;9495:3;9436:67;:::i;:::-;9429:74;;9512:93;9601:3;9512:93;:::i;:::-;9630:2;9625:3;9621:12;9614:19;;9273:366;;;:::o;9645:419::-;9811:4;9849:2;9838:9;9834:18;9826:26;;9898:9;9892:4;9888:20;9884:1;9873:9;9869:17;9862:47;9926:131;10052:4;9926:131;:::i;:::-;9918:139;;9645:419;;;:::o;10070:224::-;10210:34;10206:1;10198:6;10194:14;10187:58;10279:7;10274:2;10266:6;10262:15;10255:32;10070:224;:::o;10300:366::-;10442:3;10463:67;10527:2;10522:3;10463:67;:::i;:::-;10456:74;;10539:93;10628:3;10539:93;:::i;:::-;10657:2;10652:3;10648:12;10641:19;;10300:366;;;:::o;10672:419::-;10838:4;10876:2;10865:9;10861:18;10853:26;;10925:9;10919:4;10915:20;10911:1;10900:9;10896:17;10889:47;10953:131;11079:4;10953:131;:::i;:::-;10945:139;;10672:419;;;:::o;11097:223::-;11237:34;11233:1;11225:6;11221:14;11214:58;11306:6;11301:2;11293:6;11289:15;11282:31;11097:223;:::o;11326:366::-;11468:3;11489:67;11553:2;11548:3;11489:67;:::i;:::-;11482:74;;11565:93;11654:3;11565:93;:::i;:::-;11683:2;11678:3;11674:12;11667:19;;11326:366;;;:::o;11698:419::-;11864:4;11902:2;11891:9;11887:18;11879:26;;11951:9;11945:4;11941:20;11937:1;11926:9;11922:17;11915:47;11979:131;12105:4;11979:131;:::i;:::-;11971:139;;11698:419;;;:::o;12123:221::-;12263:34;12259:1;12251:6;12247:14;12240:58;12332:4;12327:2;12319:6;12315:15;12308:29;12123:221;:::o;12350:366::-;12492:3;12513:67;12577:2;12572:3;12513:67;:::i;:::-;12506:74;;12589:93;12678:3;12589:93;:::i;:::-;12707:2;12702:3;12698:12;12691:19;;12350:366;;;:::o;12722:419::-;12888:4;12926:2;12915:9;12911:18;12903:26;;12975:9;12969:4;12965:20;12961:1;12950:9;12946:17;12939:47;13003:131;13129:4;13003:131;:::i;:::-;12995:139;;12722:419;;;:::o;13147:224::-;13287:34;13283:1;13275:6;13271:14;13264:58;13356:7;13351:2;13343:6;13339:15;13332:32;13147:224;:::o;13377:366::-;13519:3;13540:67;13604:2;13599:3;13540:67;:::i;:::-;13533:74;;13616:93;13705:3;13616:93;:::i;:::-;13734:2;13729:3;13725:12;13718:19;;13377:366;;;:::o;13749:419::-;13915:4;13953:2;13942:9;13938:18;13930:26;;14002:9;13996:4;13992:20;13988:1;13977:9;13973:17;13966:47;14030:131;14156:4;14030:131;:::i;:::-;14022:139;;13749:419;;;:::o;14174:222::-;14314:34;14310:1;14302:6;14298:14;14291:58;14383:5;14378:2;14370:6;14366:15;14359:30;14174:222;:::o;14402:366::-;14544:3;14565:67;14629:2;14624:3;14565:67;:::i;:::-;14558:74;;14641:93;14730:3;14641:93;:::i;:::-;14759:2;14754:3;14750:12;14743:19;;14402:366;;;:::o;14774:419::-;14940:4;14978:2;14967:9;14963:18;14955:26;;15027:9;15021:4;15017:20;15013:1;15002:9;14998:17;14991:47;15055:131;15181:4;15055:131;:::i;:::-;15047:139;;14774:419;;;:::o;15199:172::-;15339:24;15335:1;15327:6;15323:14;15316:48;15199:172;:::o;15377:366::-;15519:3;15540:67;15604:2;15599:3;15540:67;:::i;:::-;15533:74;;15616:93;15705:3;15616:93;:::i;:::-;15734:2;15729:3;15725:12;15718:19;;15377:366;;;:::o;15749:419::-;15915:4;15953:2;15942:9;15938:18;15930:26;;16002:9;15996:4;15992:20;15988:1;15977:9;15973:17;15966:47;16030:131;16156:4;16030:131;:::i;:::-;16022:139;;15749:419;;;:::o;16174:297::-;16314:34;16310:1;16302:6;16298:14;16291:58;16383:34;16378:2;16370:6;16366:15;16359:59;16452:11;16447:2;16439:6;16435:15;16428:36;16174:297;:::o;16477:366::-;16619:3;16640:67;16704:2;16699:3;16640:67;:::i;:::-;16633:74;;16716:93;16805:3;16716:93;:::i;:::-;16834:2;16829:3;16825:12;16818:19;;16477:366;;;:::o;16849:419::-;17015:4;17053:2;17042:9;17038:18;17030:26;;17102:9;17096:4;17092:20;17088:1;17077:9;17073:17;17066:47;17130:131;17256:4;17130:131;:::i;:::-;17122:139;;16849:419;;;:::o;17274:240::-;17414:34;17410:1;17402:6;17398:14;17391:58;17483:23;17478:2;17470:6;17466:15;17459:48;17274:240;:::o;17520:366::-;17662:3;17683:67;17747:2;17742:3;17683:67;:::i;:::-;17676:74;;17759:93;17848:3;17759:93;:::i;:::-;17877:2;17872:3;17868:12;17861:19;;17520:366;;;:::o;17892:419::-;18058:4;18096:2;18085:9;18081:18;18073:26;;18145:9;18139:4;18135:20;18131:1;18120:9;18116:17;18109:47;18173:131;18299:4;18173:131;:::i;:::-;18165:139;;17892:419;;;:::o;18317:169::-;18457:21;18453:1;18445:6;18441:14;18434:45;18317:169;:::o;18492:366::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:419::-;19030:4;19068:2;19057:9;19053:18;19045:26;;19117:9;19111:4;19107:20;19103:1;19092:9;19088:17;19081:47;19145:131;19271:4;19145:131;:::i;:::-;19137:139;;18864:419;;;:::o;19289:241::-;19429:34;19425:1;19417:6;19413:14;19406:58;19498:24;19493:2;19485:6;19481:15;19474:49;19289:241;:::o;19536:366::-;19678:3;19699:67;19763:2;19758:3;19699:67;:::i;:::-;19692:74;;19775:93;19864:3;19775:93;:::i;:::-;19893:2;19888:3;19884:12;19877:19;;19536:366;;;:::o;19908:419::-;20074:4;20112:2;20101:9;20097:18;20089:26;;20161:9;20155:4;20151:20;20147:1;20136:9;20132:17;20125:47;20189:131;20315:4;20189:131;:::i;:::-;20181:139;;19908:419;;;:::o;20333:348::-;20373:7;20396:20;20414:1;20396:20;:::i;:::-;20391:25;;20430:20;20448:1;20430:20;:::i;:::-;20425:25;;20618:1;20550:66;20546:74;20543:1;20540:81;20535:1;20528:9;20521:17;20517:105;20514:131;;;20625:18;;:::i;:::-;20514:131;20673:1;20670;20666:9;20655:20;;20333:348;;;;:::o;20687:180::-;20735:77;20732:1;20725:88;20832:4;20829:1;20822:15;20856:4;20853:1;20846:15;20873:185;20913:1;20930:20;20948:1;20930:20;:::i;:::-;20925:25;;20964:20;20982:1;20964:20;:::i;:::-;20959:25;;21003:1;20993:35;;21008:18;;:::i;:::-;20993:35;21050:1;21047;21043:9;21038:14;;20873:185;;;;:::o;21064:191::-;21104:4;21124:20;21142:1;21124:20;:::i;:::-;21119:25;;21158:20;21176:1;21158:20;:::i;:::-;21153:25;;21197:1;21194;21191:8;21188:34;;;21202:18;;:::i;:::-;21188:34;21247:1;21244;21240:9;21232:17;;21064:191;;;;:::o;21261:225::-;21401:34;21397:1;21389:6;21385:14;21378:58;21470:8;21465:2;21457:6;21453:15;21446:33;21261:225;:::o;21492:366::-;21634:3;21655:67;21719:2;21714:3;21655:67;:::i;:::-;21648:74;;21731:93;21820:3;21731:93;:::i;:::-;21849:2;21844:3;21840:12;21833:19;;21492:366;;;:::o;21864:419::-;22030:4;22068:2;22057:9;22053:18;22045:26;;22117:9;22111:4;22107:20;22103:1;22092:9;22088:17;22081:47;22145:131;22271:4;22145:131;:::i;:::-;22137:139;;21864:419;;;:::o;22289:442::-;22438:4;22476:2;22465:9;22461:18;22453:26;;22489:71;22557:1;22546:9;22542:17;22533:6;22489:71;:::i;:::-;22570:72;22638:2;22627:9;22623:18;22614:6;22570:72;:::i;:::-;22652;22720:2;22709:9;22705:18;22696:6;22652:72;:::i;:::-;22289:442;;;;;;:::o;22737:180::-;22785:77;22782:1;22775:88;22882:4;22879:1;22872:15;22906:4;22903:1;22896:15;22923:180;22971:77;22968:1;22961:88;23068:4;23065:1;23058:15;23092:4;23089:1;23082:15;23109:143;23166:5;23197:6;23191:13;23182:22;;23213:33;23240:5;23213:33;:::i;:::-;23109:143;;;;:::o;23258:351::-;23328:6;23377:2;23365:9;23356:7;23352:23;23348:32;23345:119;;;23383:79;;:::i;:::-;23345:119;23503:1;23528:64;23584:7;23575:6;23564:9;23560:22;23528:64;:::i;:::-;23518:74;;23474:128;23258:351;;;;:::o;23615:85::-;23660:7;23689:5;23678:16;;23615:85;;;:::o;23706:158::-;23764:9;23797:61;23815:42;23824:32;23850:5;23824:32;:::i;:::-;23815:42;:::i;:::-;23797:61;:::i;:::-;23784:74;;23706:158;;;:::o;23870:147::-;23965:45;24004:5;23965:45;:::i;:::-;23960:3;23953:58;23870:147;;:::o;24023:114::-;24090:6;24124:5;24118:12;24108:22;;24023:114;;;:::o;24143:184::-;24242:11;24276:6;24271:3;24264:19;24316:4;24311:3;24307:14;24292:29;;24143:184;;;;:::o;24333:132::-;24400:4;24423:3;24415:11;;24453:4;24448:3;24444:14;24436:22;;24333:132;;;:::o;24471:108::-;24548:24;24566:5;24548:24;:::i;:::-;24543:3;24536:37;24471:108;;:::o;24585:179::-;24654:10;24675:46;24717:3;24709:6;24675:46;:::i;:::-;24753:4;24748:3;24744:14;24730:28;;24585:179;;;;:::o;24770:113::-;24840:4;24872;24867:3;24863:14;24855:22;;24770:113;;;:::o;24919:732::-;25038:3;25067:54;25115:5;25067:54;:::i;:::-;25137:86;25216:6;25211:3;25137:86;:::i;:::-;25130:93;;25247:56;25297:5;25247:56;:::i;:::-;25326:7;25357:1;25342:284;25367:6;25364:1;25361:13;25342:284;;;25443:6;25437:13;25470:63;25529:3;25514:13;25470:63;:::i;:::-;25463:70;;25556:60;25609:6;25556:60;:::i;:::-;25546:70;;25402:224;25389:1;25386;25382:9;25377:14;;25342:284;;;25346:14;25642:3;25635:10;;25043:608;;;24919:732;;;;:::o;25657:831::-;25920:4;25958:3;25947:9;25943:19;25935:27;;25972:71;26040:1;26029:9;26025:17;26016:6;25972:71;:::i;:::-;26053:80;26129:2;26118:9;26114:18;26105:6;26053:80;:::i;:::-;26180:9;26174:4;26170:20;26165:2;26154:9;26150:18;26143:48;26208:108;26311:4;26302:6;26208:108;:::i;:::-;26200:116;;26326:72;26394:2;26383:9;26379:18;26370:6;26326:72;:::i;:::-;26408:73;26476:3;26465:9;26461:19;26452:6;26408:73;:::i;:::-;25657:831;;;;;;;;:::o;26494:807::-;26743:4;26781:3;26770:9;26766:19;26758:27;;26795:71;26863:1;26852:9;26848:17;26839:6;26795:71;:::i;:::-;26876:72;26944:2;26933:9;26929:18;26920:6;26876:72;:::i;:::-;26958:80;27034:2;27023:9;27019:18;27010:6;26958:80;:::i;:::-;27048;27124:2;27113:9;27109:18;27100:6;27048:80;:::i;:::-;27138:73;27206:3;27195:9;27191:19;27182:6;27138:73;:::i;:::-;27221;27289:3;27278:9;27274:19;27265:6;27221:73;:::i;:::-;26494:807;;;;;;;;;:::o;27307:143::-;27364:5;27395:6;27389:13;27380:22;;27411:33;27438:5;27411:33;:::i;:::-;27307:143;;;;:::o;27456:663::-;27544:6;27552;27560;27609:2;27597:9;27588:7;27584:23;27580:32;27577:119;;;27615:79;;:::i;:::-;27577:119;27735:1;27760:64;27816:7;27807:6;27796:9;27792:22;27760:64;:::i;:::-;27750:74;;27706:128;27873:2;27899:64;27955:7;27946:6;27935:9;27931:22;27899:64;:::i;:::-;27889:74;;27844:129;28012:2;28038:64;28094:7;28085:6;28074:9;28070:22;28038:64;:::i;:::-;28028:74;;27983:129;27456:663;;;;;:::o
Swarm Source
ipfs://1c2e9cf2d834f82863e3813696d38bbf7eaf237c9dcb57c44f259041b4bdb0d1
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.