ERC-20
Overview
Max Total Supply
78,859.0000000000000096 MINEV2
Holders
99
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,430.216350954195080822 MINEV2Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SpaceMineToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-13 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: localhost/contracts/SpaceMineToken.sol // SPDX-License-Identifier: MIT pragma solidity 0.6.12; contract SpaceMineCore is ERC20("SpaceMine Token V2", "MINEV2"), Ownable { using SafeMath for uint256; address internal _taxer; address internal _taxDestination; uint256 internal _cap; uint internal _taxRate = 0; bool internal _lock = true; mapping (address => bool) internal _taxWhitelist; function transfer(address recipient, uint256 amount) public override returns (bool) { require(msg.sender == owner() || !_lock, "Transfer is locking"); uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[msg.sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(msg.sender) >= amount, "insufficient balance."); super.transfer(recipient, transferAmount); if (taxAmount != 0) { super.transfer(_taxDestination, taxAmount); } return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { require(sender == owner() || !_lock, "TransferFrom is locking"); uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(sender) >= amount, "insufficient balance."); super.transferFrom(sender, recipient, transferAmount); if (taxAmount != 0) { super.transferFrom(sender, _taxDestination, taxAmount); } return true; } function _mint(address account, uint256 value) override internal { require(totalSupply().add(value) <= _cap, "cap exceeded"); super._mint(account, value); } } contract SpaceMineToken is SpaceMineCore { mapping (address => bool) public minters; uint public rateWillBeSet = 0; uint public unlockTime = 0; uint public duration = 2 days; uint256 public constant hard_cap = 96000 * 1e18; constructor( uint taxRate ) public { _taxer = owner(); _taxDestination = owner(); _cap = hard_cap; _taxRate = taxRate; } function cap() public view returns (uint256) { return _cap; } function mint(address to, uint amount) public onlyMinter { _mint(to, amount); _moveDelegates(address(0), _delegates[to], amount); } /// @notice A record of each accounts delegate mapping (address => address) public _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "MINE:delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "MINE::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "MINE::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "MINE::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying MINE; _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld-amount; _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld+amount; _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "MINE::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function burn(uint amount) public { require(amount > 0); require(balanceOf(msg.sender) >= amount); _burn(msg.sender, amount); } function addMinter(address account) public onlyOwner { minters[account] = true; } function removeMinter(address account) public onlyOwner { minters[account] = false; } modifier onlyMinter() { require(minters[msg.sender], "Restricted to minters."); _; } modifier onlyTaxer() { require(msg.sender == _taxer, "Only for taxer."); _; } modifier taxUnlock() { require(block.timestamp >= unlockTime, "Can not set tax now, time is locked."); _; } function setTaxer(address account) public onlyTaxer { _taxer = account; } function setTaxRateRequest(uint256 rate) public onlyTaxer { require(rate < 100, "rate is too high"); uint nowTime = block.timestamp; unlockTime = nowTime + duration; rateWillBeSet = rate; } function releaseTaxeRate() public onlyTaxer taxUnlock { _taxRate = rateWillBeSet; } function setTaxDestination(address account) public onlyTaxer { _taxDestination = account; } function addToWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = true; } function removeFromWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = false; } function taxer() public view returns(address) { return _taxer; } function taxDestination() public view returns(address) { return _taxDestination; } function taxRate() public view returns(uint256) { return _taxRate; } function isInWhitelist(address account) public view returns(bool) { return _taxWhitelist[account]; } function unlock() public onlyOwner { _lock = false; } function getLockStatus() view public returns(bool) { return _lock; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"taxRate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLockStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hard_cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateWillBeSet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseTaxeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTaxDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setTaxRateRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTaxer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxDestination","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006009556001600a60006101000a81548160ff0219169083151502179055506000600d556000600e556202a300600f553480156200004257600080fd5b5060405162004bc938038062004bc9833981810160405260208110156200006857600080fd5b81019080805190602001909291905050506040518060400160405280601281526020017f53706163654d696e6520546f6b656e20563200000000000000000000000000008152506040518060400160405280600681526020017f4d494e45563200000000000000000000000000000000000000000000000000008152508160039080519060200190620000fd929190620002d7565b50806004908051906020019062000116929190620002d7565b506012600560006101000a81548160ff021916908360ff1602179055505050600062000147620002a560201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001f6620002ad60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000246620002ad60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506914542ba12a337c00000060088190555080600981905550506200037d565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b61483c806200038d6000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636fcfff4511610167578063a457c2d7116100ce578063e43252d711610087578063e43252d714610dc6578063e7a324dc14610e0a578063f1127ed814610e28578063f2fde38b14610e9d578063f46eccc414610ee1578063fa93343614610f3b57610295565b8063a457c2d714610bab578063a69df4b514610c0f578063a9059cbb14610c19578063b4b5ea5714610c7d578063c3cda52014610cd5578063dd62ed3e14610d4e57610295565b80638ab1d681116101205780638ab1d68114610a2e5780638da5cb5b14610a7257806390cccda014610aa657806395d89b4114610ac4578063983b2d5614610b475780639ae8ad4514610b8b57610295565b80636fcfff451461089657806370a08231146108f4578063715018a61461094c578063771a3a1d14610956578063782d6fe1146109745780637ecebe00146109d657610295565b80632c547b3d1161020b57806342239927116101c457806342239927146106fc57806342966c681461076a578063552f6da814610798578063585e1af6146107c6578063587cde1e146107e45780635c19a95c1461085257610295565b80632c547b3d146105935780633092afd5146105c7578063313ce5671461060b578063355274ea1461062c578063395093511461064a57806340c10f19146106ae57610295565b80631163c3eb1161025d5780631163c3eb1461043d57806317c81c1d1461048157806318160ddd146104b557806320606b70146104d357806323b872dd146104f1578063251c1aa31461057557610295565b806306fdde031461029a578063095ea7b31461031d57806309fd8212146103815780630d2f0b2e146103db5780630fb5a6b41461041f575b600080fd5b6102a2610f45565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e25780820151818401526020810190506102c7565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe7565b60405180821515815260200191505060405180910390f35b6103c36004803603602081101561039757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611005565b60405180821515815260200191505060405180910390f35b61041d600480360360208110156103f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061105b565b005b610427611162565b6040518082815260200191505060405180910390f35b61047f6004803603602081101561045357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611168565b005b61048961126f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104bd611299565b6040518082815260200191505060405180910390f35b6104db6112a3565b6040518082815260200191505060405180910390f35b61055d6004803603606081101561050757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112c7565b60405180821515815260200191505060405180910390f35b61057d6114f8565b6040518082815260200191505060405180910390f35b61059b6114fe565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610609600480360360208110156105dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611528565b005b61061361164d565b604051808260ff16815260200191505060405180910390f35b610634611664565b6040518082815260200191505060405180910390f35b6106966004803603604081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061166e565b60405180821515815260200191505060405180910390f35b6106fa600480360360408110156106c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611721565b005b61073e6004803603602081101561071257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611859565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107966004803603602081101561078057600080fd5b810190808035906020019092919050505061188c565b005b6107c4600480360360208110156107ae57600080fd5b81019080803590602001909291905050506118bb565b005b6107ce611a0f565b6040518082815260200191505060405180910390f35b610826600480360360208110156107fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a1d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108946004803603602081101561086857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a86565b005b6108d8600480360360208110156108ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a93565b604051808263ffffffff16815260200191505060405180910390f35b6109366004803603602081101561090a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ab6565b6040518082815260200191505060405180910390f35b610954611afe565b005b61095e611c89565b6040518082815260200191505060405180910390f35b6109c06004803603604081101561098a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c93565b6040518082815260200191505060405180910390f35b610a18600480360360208110156109ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612054565b6040518082815260200191505060405180910390f35b610a7060048036036020811015610a4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206c565b005b610a7a61218a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aae6121b4565b6040518082815260200191505060405180910390f35b610acc6121ba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b0c578082015181840152602081019050610af1565b50505050905090810190601f168015610b395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b8960048036036020811015610b5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061225c565b005b610b93612381565b60405180821515815260200191505060405180910390f35b610bf760048036036040811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612398565b60405180821515815260200191505060405180910390f35b610c17612465565b005b610c6560048036036040811015610c2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254c565b60405180821515815260200191505060405180910390f35b610cbf60048036036020811015610c9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061277a565b6040518082815260200191505060405180910390f35b610d4c600480360360c0811015610ceb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050612850565b005b610db060048036036040811015610d6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bb4565b6040518082815260200191505060405180910390f35b610e0860048036036020811015610ddc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c3b565b005b610e12612d59565b6040518082815260200191505060405180910390f35b610e7a60048036036040811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff169060200190929190505050612d7d565b604051808363ffffffff1681526020018281526020019250505060405180910390f35b610edf60048036036020811015610eb357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dbe565b005b610f2360048036036020811015610ef757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fce565b60405180821515815260200191505060405180910390f35b610f43612fee565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b6000610ffb610ff4613117565b848461311f565b6001905092915050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006112d161218a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113175750600a60009054906101000a900460ff16155b611389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5472616e7366657246726f6d206973206c6f636b696e6700000000000000000081525060200191505060405180910390fd5b60006113b360646113a56009548661331690919063ffffffff16565b61339c90919063ffffffff16565b905060011515600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561141357600090505b600061142882856133e690919063ffffffff16565b90508361143487611ab6565b10156114a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6114b3868683613430565b50600082146114eb576114e986600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613430565b505b6001925050509392505050565b600e5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611530613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6000600854905090565b600061171761167b613117565b84611712856001600061168c613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b61311f565b6001905092915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5265737472696374656420746f206d696e746572732e0000000000000000000081525060200191505060405180910390fd5b6117ea8282613591565b6118556000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613630565b5050565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000811161189957600080fd5b806118a333611ab6565b10156118ae57600080fd5b6118b833826138ad565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b606481106119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f7261746520697320746f6f20686967680000000000000000000000000000000081525060200191505060405180910390fd5b6000429050600f548101600e8190555081600d819055505050565b6914542ba12a337c00000081565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611a903382613a71565b50565b60126020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b06613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600954905090565b6000438210611ced576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806146f86027913960400191505060405180910390fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415611d5a57600091505061204e565b82601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611611e4457601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff1681526020019081526020016000206001015491505061204e565b82601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115611ec557600091505061204e565b6000806001830390505b8163ffffffff168163ffffffff161115611fe8576000600283830363ffffffff1681611ef757fe5b0482039050611f0461456f565b601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff161415611fc05780602001519550505050505061204e565b86816000015163ffffffff161015611fda57819350611fe1565b6001820392505b5050611ecf565b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b60136020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122525780601f1061222757610100808354040283529160200191612252565b820191906000526020600020905b81548152906001019060200180831161223557829003601f168201915b5050505050905090565b612264613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900460ff16905090565b600061245b6123a5613117565b84612456856040518060600160405280602581526020016147e260259139600160006123cf613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b61311f565b6001905092915050565b61246d613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461252f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600061255661218a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061259c5750600a60009054906101000a900460ff16155b61260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5472616e73666572206973206c6f636b696e670000000000000000000000000081525060200191505060405180910390fd5b6000612638606461262a6009548661331690919063ffffffff16565b61339c90919063ffffffff16565b905060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561269857600090505b60006126ad82856133e690919063ffffffff16565b9050836126b933611ab6565b101561272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6127378582613ca2565b506000821461276e5761276c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ca2565b505b60019250505092915050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116127e4576000612848565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661287b610f45565b8051906020012061288a613cc0565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001808581526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019450505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612a0e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147656025913960400191505060405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914612b45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145b36022913960400191505060405180910390fd5b87421115612b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806146656026913960400191505060405180910390fd5b612ba8818b613a71565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6011602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b612dc6613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806145f76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b600e5442101561310c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146d46024913960400191505060405180910390fd5b600d54600981905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061478a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061461d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156133295760009050613396565b600082840290508284828161333a57fe5b0414613391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061468b6021913960400191505060405180910390fd5b809150505b92915050565b60006133de83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ccd565b905092915050565b600061342883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613be2565b905092915050565b600061343d848484613d93565b6134fe84613449613117565b6134f9856040518060600160405280602881526020016146ac60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006134af613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b61311f565b600190509392505050565b600080828401905083811015613587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6008546135ae826135a0611299565b61350990919063ffffffff16565b1115613622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f636170206578636565646564000000000000000000000000000000000000000081525060200191505060405180910390fd5b61362c8282614054565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561366c5750600081115b156138a857600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461378c576000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161370f576000613773565b601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083820390506137888684848461421b565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138a7576000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161382a57600061388e565b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083820190506138a38584848461421b565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061471f6021913960400191505060405180910390fd5b61393f826000836144af565b6139aa816040518060600160405280602281526020016145d5602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a01816002546133e690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000613ae084611ab6565b905082601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4613bdc828483613630565b50505050565b6000838311158290613c8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c54578082015181840152602081019050613c39565b50505050905090810190601f168015613c815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000613cb6613caf613117565b8484613d93565b6001905092915050565b6000804690508091505090565b60008083118290613d79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d3e578082015181840152602081019050613d23565b50505050905090810190601f168015613d6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d8557fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147406025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806145906023913960400191505060405180910390fd5b613eaa8383836144af565b613f158160405180606001604052806026815260200161463f602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fa8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156140f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614103600083836144af565b6141188160025461350990919063ffffffff16565b60028190555061416f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061423f436040518060600160405280603481526020016147ae603491396144b4565b905060008463ffffffff161180156142d457508063ffffffff16601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156143455781601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060010181905550614452565b60405180604001604052808263ffffffff16815260200183815250601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b505050565b600064010000000083108290614565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561452a57808201518184015260208101905061450f565b50505050905090810190601f1680156145575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff16815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734d494e453a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d494e453a3a64656c656761746542795369673a207369676e61747572652065787069726564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616e206e6f742073657420746178206e6f772c2074696d65206973206c6f636b65642e4d494e453a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d494e453a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d494e453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c03d773b156f4b005a11d278a098695349eed573b9ae5d0bd7327a2805e9aa2e64736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636fcfff4511610167578063a457c2d7116100ce578063e43252d711610087578063e43252d714610dc6578063e7a324dc14610e0a578063f1127ed814610e28578063f2fde38b14610e9d578063f46eccc414610ee1578063fa93343614610f3b57610295565b8063a457c2d714610bab578063a69df4b514610c0f578063a9059cbb14610c19578063b4b5ea5714610c7d578063c3cda52014610cd5578063dd62ed3e14610d4e57610295565b80638ab1d681116101205780638ab1d68114610a2e5780638da5cb5b14610a7257806390cccda014610aa657806395d89b4114610ac4578063983b2d5614610b475780639ae8ad4514610b8b57610295565b80636fcfff451461089657806370a08231146108f4578063715018a61461094c578063771a3a1d14610956578063782d6fe1146109745780637ecebe00146109d657610295565b80632c547b3d1161020b57806342239927116101c457806342239927146106fc57806342966c681461076a578063552f6da814610798578063585e1af6146107c6578063587cde1e146107e45780635c19a95c1461085257610295565b80632c547b3d146105935780633092afd5146105c7578063313ce5671461060b578063355274ea1461062c578063395093511461064a57806340c10f19146106ae57610295565b80631163c3eb1161025d5780631163c3eb1461043d57806317c81c1d1461048157806318160ddd146104b557806320606b70146104d357806323b872dd146104f1578063251c1aa31461057557610295565b806306fdde031461029a578063095ea7b31461031d57806309fd8212146103815780630d2f0b2e146103db5780630fb5a6b41461041f575b600080fd5b6102a2610f45565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e25780820151818401526020810190506102c7565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe7565b60405180821515815260200191505060405180910390f35b6103c36004803603602081101561039757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611005565b60405180821515815260200191505060405180910390f35b61041d600480360360208110156103f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061105b565b005b610427611162565b6040518082815260200191505060405180910390f35b61047f6004803603602081101561045357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611168565b005b61048961126f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104bd611299565b6040518082815260200191505060405180910390f35b6104db6112a3565b6040518082815260200191505060405180910390f35b61055d6004803603606081101561050757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112c7565b60405180821515815260200191505060405180910390f35b61057d6114f8565b6040518082815260200191505060405180910390f35b61059b6114fe565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610609600480360360208110156105dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611528565b005b61061361164d565b604051808260ff16815260200191505060405180910390f35b610634611664565b6040518082815260200191505060405180910390f35b6106966004803603604081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061166e565b60405180821515815260200191505060405180910390f35b6106fa600480360360408110156106c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611721565b005b61073e6004803603602081101561071257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611859565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107966004803603602081101561078057600080fd5b810190808035906020019092919050505061188c565b005b6107c4600480360360208110156107ae57600080fd5b81019080803590602001909291905050506118bb565b005b6107ce611a0f565b6040518082815260200191505060405180910390f35b610826600480360360208110156107fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a1d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108946004803603602081101561086857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a86565b005b6108d8600480360360208110156108ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a93565b604051808263ffffffff16815260200191505060405180910390f35b6109366004803603602081101561090a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ab6565b6040518082815260200191505060405180910390f35b610954611afe565b005b61095e611c89565b6040518082815260200191505060405180910390f35b6109c06004803603604081101561098a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c93565b6040518082815260200191505060405180910390f35b610a18600480360360208110156109ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612054565b6040518082815260200191505060405180910390f35b610a7060048036036020811015610a4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206c565b005b610a7a61218a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aae6121b4565b6040518082815260200191505060405180910390f35b610acc6121ba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b0c578082015181840152602081019050610af1565b50505050905090810190601f168015610b395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b8960048036036020811015610b5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061225c565b005b610b93612381565b60405180821515815260200191505060405180910390f35b610bf760048036036040811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612398565b60405180821515815260200191505060405180910390f35b610c17612465565b005b610c6560048036036040811015610c2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254c565b60405180821515815260200191505060405180910390f35b610cbf60048036036020811015610c9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061277a565b6040518082815260200191505060405180910390f35b610d4c600480360360c0811015610ceb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050612850565b005b610db060048036036040811015610d6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bb4565b6040518082815260200191505060405180910390f35b610e0860048036036020811015610ddc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c3b565b005b610e12612d59565b6040518082815260200191505060405180910390f35b610e7a60048036036040811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff169060200190929190505050612d7d565b604051808363ffffffff1681526020018281526020019250505060405180910390f35b610edf60048036036020811015610eb357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dbe565b005b610f2360048036036020811015610ef757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fce565b60405180821515815260200191505060405180910390f35b610f43612fee565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b6000610ffb610ff4613117565b848461311f565b6001905092915050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006112d161218a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113175750600a60009054906101000a900460ff16155b611389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5472616e7366657246726f6d206973206c6f636b696e6700000000000000000081525060200191505060405180910390fd5b60006113b360646113a56009548661331690919063ffffffff16565b61339c90919063ffffffff16565b905060011515600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561141357600090505b600061142882856133e690919063ffffffff16565b90508361143487611ab6565b10156114a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6114b3868683613430565b50600082146114eb576114e986600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613430565b505b6001925050509392505050565b600e5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611530613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6000600854905090565b600061171761167b613117565b84611712856001600061168c613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b61311f565b6001905092915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5265737472696374656420746f206d696e746572732e0000000000000000000081525060200191505060405180910390fd5b6117ea8282613591565b6118556000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613630565b5050565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000811161189957600080fd5b806118a333611ab6565b10156118ae57600080fd5b6118b833826138ad565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b606481106119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f7261746520697320746f6f20686967680000000000000000000000000000000081525060200191505060405180910390fd5b6000429050600f548101600e8190555081600d819055505050565b6914542ba12a337c00000081565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611a903382613a71565b50565b60126020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b06613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600954905090565b6000438210611ced576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806146f86027913960400191505060405180910390fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415611d5a57600091505061204e565b82601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611611e4457601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff1681526020019081526020016000206001015491505061204e565b82601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115611ec557600091505061204e565b6000806001830390505b8163ffffffff168163ffffffff161115611fe8576000600283830363ffffffff1681611ef757fe5b0482039050611f0461456f565b601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff161415611fc05780602001519550505050505061204e565b86816000015163ffffffff161015611fda57819350611fe1565b6001820392505b5050611ecf565b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b60136020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122525780601f1061222757610100808354040283529160200191612252565b820191906000526020600020905b81548152906001019060200180831161223557829003601f168201915b5050505050905090565b612264613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900460ff16905090565b600061245b6123a5613117565b84612456856040518060600160405280602581526020016147e260259139600160006123cf613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b61311f565b6001905092915050565b61246d613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461252f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600061255661218a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061259c5750600a60009054906101000a900460ff16155b61260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5472616e73666572206973206c6f636b696e670000000000000000000000000081525060200191505060405180910390fd5b6000612638606461262a6009548661331690919063ffffffff16565b61339c90919063ffffffff16565b905060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561269857600090505b60006126ad82856133e690919063ffffffff16565b9050836126b933611ab6565b101561272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6127378582613ca2565b506000821461276e5761276c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ca2565b505b60019250505092915050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116127e4576000612848565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661287b610f45565b8051906020012061288a613cc0565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001808581526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019450505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612a0e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147656025913960400191505060405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914612b45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145b36022913960400191505060405180910390fd5b87421115612b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806146656026913960400191505060405180910390fd5b612ba8818b613a71565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6011602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b612dc6613117565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806145f76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b600e5442101561310c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146d46024913960400191505060405180910390fd5b600d54600981905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061478a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061461d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156133295760009050613396565b600082840290508284828161333a57fe5b0414613391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061468b6021913960400191505060405180910390fd5b809150505b92915050565b60006133de83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ccd565b905092915050565b600061342883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613be2565b905092915050565b600061343d848484613d93565b6134fe84613449613117565b6134f9856040518060600160405280602881526020016146ac60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006134af613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b61311f565b600190509392505050565b600080828401905083811015613587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6008546135ae826135a0611299565b61350990919063ffffffff16565b1115613622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f636170206578636565646564000000000000000000000000000000000000000081525060200191505060405180910390fd5b61362c8282614054565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561366c5750600081115b156138a857600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461378c576000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161370f576000613773565b601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083820390506137888684848461421b565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138a7576000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161382a57600061388e565b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083820190506138a38584848461421b565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061471f6021913960400191505060405180910390fd5b61393f826000836144af565b6139aa816040518060600160405280602281526020016145d5602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a01816002546133e690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000613ae084611ab6565b905082601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4613bdc828483613630565b50505050565b6000838311158290613c8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c54578082015181840152602081019050613c39565b50505050905090810190601f168015613c815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000613cb6613caf613117565b8484613d93565b6001905092915050565b6000804690508091505090565b60008083118290613d79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d3e578082015181840152602081019050613d23565b50505050905090810190601f168015613d6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d8557fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147406025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806145906023913960400191505060405180910390fd5b613eaa8383836144af565b613f158160405180606001604052806026815260200161463f602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613be29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fa8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156140f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614103600083836144af565b6141188160025461350990919063ffffffff16565b60028190555061416f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061423f436040518060600160405280603481526020016147ae603491396144b4565b905060008463ffffffff161180156142d457508063ffffffff16601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156143455781601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060010181905550614452565b60405180604001604052808263ffffffff16815260200183815250601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b505050565b600064010000000083108290614565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561452a57808201518184015260208101905061450f565b50505050905090810190601f1680156145575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff16815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734d494e453a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d494e453a3a64656c656761746542795369673a207369676e61747572652065787069726564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616e206e6f742073657420746178206e6f772c2074696d65206973206c6f636b65642e4d494e453a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d494e453a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d494e453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c03d773b156f4b005a11d278a098695349eed573b9ae5d0bd7327a2805e9aa2e64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a
-----Decoded View---------------
Arg [0] : taxRate (uint256): 10
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode Sourcemap
34169:10916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23418:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25524:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44803:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43738:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34335:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44176:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44523:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24493:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35430:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33319:659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34302:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44609:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43270:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24345:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34598:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26897:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34681:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34883:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43000:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43833:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34368:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36413:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36706:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35308:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24656:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2714:148;;;:::i;:::-;;44713:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39320:1253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35844:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44403:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2072:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34266:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23620:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43167:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45000:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27618:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44925:67;;;:::i;:::-;;32686:625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38634:255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37244:1189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25226:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44289:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35646:117;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35169:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;3017:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34217:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44071:97;;;:::i;:::-;;23418:83;23455:13;23488:5;23481:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23418:83;:::o;25524:169::-;25607:4;25624:39;25633:12;:10;:12::i;:::-;25647:7;25656:6;25624:8;:39::i;:::-;25681:4;25674:11;;25524:169;;;;:::o;44803:114::-;44863:4;44887:13;:22;44901:7;44887:22;;;;;;;;;;;;;;;;;;;;;;;;;44880:29;;44803:114;;;:::o;43738:87::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43810:7:::1;43801:6;;:16;;;;;;;;;;;;;;;;;;43738:87:::0;:::o;34335:29::-;;;;:::o;44176:105::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44266:7:::1;44248:15;;:25;;;;;;;;;;;;;;;;;;44176:105:::0;:::o;44523:78::-;44560:7;44587:6;;;;;;;;;;;44580:13;;44523:78;:::o;24493:100::-;24546:7;24573:12;;24566:19;;24493:100;:::o;35430:122::-;35472:80;35430:122;:::o;33319:659::-;33417:4;33452:7;:5;:7::i;:::-;33442:17;;:6;:17;;;:27;;;;33464:5;;;;;;;;;;;33463:6;33442:27;33434:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33510:17;33530:29;33555:3;33530:20;33541:8;;33530:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;33510:49;;33599:4;33574:29;;:13;:21;33588:6;33574:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;33570:75;;;33632:1;33620:13;;33570:75;33655:22;33680:21;33691:9;33680:6;:10;;:21;;;;:::i;:::-;33655:46;;33741:6;33720:17;33730:6;33720:9;:17::i;:::-;:27;;33712:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33784:53;33803:6;33811:9;33822:14;33784:18;:53::i;:::-;;33865:1;33852:9;:14;33848:101;;33883:54;33902:6;33910:15;;;;;;;;;;;33927:9;33883:18;:54::i;:::-;;33848:101;33966:4;33959:11;;;;33319:659;;;;;:::o;34302:26::-;;;;:::o;44609:96::-;44655:7;44682:15;;;;;;;;;;;44675:22;;44609:96;:::o;43270:99::-;2294:12;:10;:12::i;:::-;2284:22;;:6;;;;;;;;;;;:22;;;2276:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43356:5:::1;43337:7;:16;43345:7;43337:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;43270:99:::0;:::o;24345:83::-;24386:5;24411:9;;;;;;;;;;;24404:16;;24345:83;:::o;34598:75::-;34634:7;34661:4;;34654:11;;34598:75;:::o;26897:218::-;26985:4;27002:83;27011:12;:10;:12::i;:::-;27025:7;27034:50;27073:10;27034:11;:25;27046:12;:10;:12::i;:::-;27034:25;;;;;;;;;;;;;;;:34;27060:7;27034:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;27002:8;:83::i;:::-;27103:4;27096:11;;26897:218;;;;:::o;34681:148::-;43418:7;:19;43426:10;43418:19;;;;;;;;;;;;;;;;;;;;;;;;;43410:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34749:17:::1;34755:2;34759:6;34749:5;:17::i;:::-;34771:50;34794:1;34798:10;:14;34809:2;34798:14;;;;;;;;;;;;;;;;;;;;;;;;;34814:6;34771:14;:50::i;:::-;34681:148:::0;;:::o;34883:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;43000:159::-;43062:1;43053:6;:10;43045:19;;;;;;43108:6;43083:21;43093:10;43083:9;:21::i;:::-;:31;;43075:40;;;;;;43126:25;43132:10;43144:6;43126:5;:25::i;:::-;43000:159;:::o;43833:230::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43917:3:::1;43910:4;:10;43902:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;43952:12;43967:15;43952:30;;44016:8;;44006:7;:18;43993:10;:31;;;;44051:4;44035:13;:20;;;;43583:1;43833:230:::0;:::o;34368:47::-;34403:12;34368:47;:::o;36413:149::-;36501:7;36533:10;:21;36544:9;36533:21;;;;;;;;;;;;;;;;;;;;;;;;;36526:28;;36413:149;;;:::o;36706:104::-;36770:32;36780:10;36792:9;36770;:32::i;:::-;36706:104;:::o;35308:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;24656:119::-;24722:7;24749:9;:18;24759:7;24749:18;;;;;;;;;;;;;;;;24742:25;;24656:119;;;:::o;2714:148::-;2294:12;:10;:12::i;:::-;2284:22;;:6;;;;;;;;;;;:22;;;2276:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2821:1:::1;2784:40;;2805:6;;;;;;;;;;;2784:40;;;;;;;;;;;;2852:1;2835:6;;:19;;;;;;;;;;;;;;;;;;2714:148::o:0;44713:82::-;44752:7;44779:8;;44772:15;;44713:82;:::o;39320:1253::-;39428:7;39475:12;39461:11;:26;39453:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:19;39566:14;:23;39581:7;39566:23;;;;;;;;;;;;;;;;;;;;;;;;;39544:45;;39620:1;39604:12;:17;;;39600:58;;;39645:1;39638:8;;;;;39600:58;39770:11;39718;:20;39730:7;39718:20;;;;;;;;;;;;;;;:38;39754:1;39739:12;:16;39718:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;39714:147;;39805:11;:20;39817:7;39805:20;;;;;;;;;;;;;;;:38;39841:1;39826:12;:16;39805:38;;;;;;;;;;;;;;;:44;;;39798:51;;;;;39714:147;39958:11;39922;:20;39934:7;39922:20;;;;;;;;;;;;;;;:23;39943:1;39922:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;39918:88;;;39993:1;39986:8;;;;;39918:88;40018:12;40045;40075:1;40060:12;:16;40045:31;;40087:428;40102:5;40094:13;;:5;:13;;;40087:428;;;40124:13;40166:1;40157:5;40149;:13;40148:19;;;;;;;;40140:5;:27;40124:43;;40209:20;;:::i;:::-;40232:11;:20;40244:7;40232:20;;;;;;;;;;;;;;;:28;40253:6;40232:28;;;;;;;;;;;;;;;40209:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40295:11;40279:2;:12;;;:27;;;40275:229;;;40334:2;:8;;;40327:15;;;;;;;;;40275:229;40383:11;40368:2;:12;;;:26;;;40364:140;;;40423:6;40415:14;;40364:140;;;40487:1;40478:6;:10;40470:18;;40364:140;40087:428;;;;;40532:11;:20;40544:7;40532:20;;;;;;;;;;;;;;;:27;40553:5;40532:27;;;;;;;;;;;;;;;:33;;;40525:40;;;;;39320:1253;;;;;:::o;35844:39::-;;;;;;;;;;;;;;;;;:::o;44403:112::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44502:5:::1;44477:13;:22;44491:7;44477:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;44403:112:::0;:::o;2072:79::-;2110:7;2137:6;;;;;;;;;;;2130:13;;2072:79;:::o;34266:29::-;;;;:::o;23620:87::-;23659:13;23692:7;23685:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23620:87;:::o;43167:95::-;2294:12;:10;:12::i;:::-;2284:22;;:6;;;;;;;;;;;:22;;;2276:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43250:4:::1;43231:7;:16;43239:7;43231:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;43167:95:::0;:::o;45000:82::-;45045:4;45069:5;;;;;;;;;;;45062:12;;45000:82;:::o;27618:269::-;27711:4;27728:129;27737:12;:10;:12::i;:::-;27751:7;27760:96;27799:15;27760:96;;;;;;;;;;;;;;;;;:11;:25;27772:12;:10;:12::i;:::-;27760:25;;;;;;;;;;;;;;;:34;27786:7;27760:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27728:8;:129::i;:::-;27875:4;27868:11;;27618:269;;;;:::o;44925:67::-;2294:12;:10;:12::i;:::-;2284:22;;:6;;;;;;;;;;;:22;;;2276:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44979:5:::1;44971;;:13;;;;;;;;;;;;;;;;;;44925:67::o:0;32686:625::-;32764:4;32803:7;:5;:7::i;:::-;32789:21;;:10;:21;;;:31;;;;32815:5;;;;;;;;;;;32814:6;32789:31;32781:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32857:17;32877:29;32902:3;32877:20;32888:8;;32877:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;32857:49;;32950:4;32921:33;;:13;:25;32935:10;32921:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;32917:79;;;32983:1;32971:13;;32917:79;33006:22;33031:21;33042:9;33031:6;:10;;:21;;;;:::i;:::-;33006:46;;33096:6;33071:21;33081:10;33071:9;:21::i;:::-;:31;;33063:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33139:41;33154:9;33165:14;33139;:41::i;:::-;;33210:1;33197:9;:14;33193:89;;33228:42;33243:15;;;;;;;;;;;33260:9;33228:14;:42::i;:::-;;33193:89;33299:4;33292:11;;;;32686:625;;;;:::o;38634:255::-;38726:7;38751:19;38773:14;:23;38788:7;38773:23;;;;;;;;;;;;;;;;;;;;;;;;;38751:45;;38829:1;38814:12;:16;;;:67;;38880:1;38814:67;;;38833:11;:20;38845:7;38833:20;;;;;;;;;;;;;;;:38;38869:1;38854:12;:16;38833:38;;;;;;;;;;;;;;;:44;;;38814:67;38807:74;;;38634:255;;;:::o;37244:1189::-;37437:23;35472:80;37566:6;:4;:6::i;:::-;37550:24;;;;;;37593:12;:10;:12::i;:::-;37632:4;37487:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37463:200;;;;;;37437:226;;37676:18;35692:71;37788:9;37816:5;37840:6;37721:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37697:175;;;;;;37676:196;;37885:14;37990:15;38024:10;37926:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37902:158;;;;;;37885:175;;38073:17;38093:26;38103:6;38111:1;38114;38117;38093:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38073:46;;38159:1;38138:23;;:9;:23;;;;38130:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38231:6;:17;38238:9;38231:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;38222:5;:28;38214:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38327:6;38308:15;:25;;38300:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38394:31;38404:9;38415;38394;:31::i;:::-;38387:38;;;;37244:1189;;;;;;:::o;25226:151::-;25315:7;25342:11;:18;25354:5;25342:18;;;;;;;;;;;;;;;:27;25361:7;25342:27;;;;;;;;;;;;;;;;25335:34;;25226:151;;;;:::o;44289:106::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44383:4:::1;44358:13;:22;44372:7;44358:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44289:106:::0;:::o;35646:117::-;35692:71;35646:117;:::o;35169:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3017:244::-;2294:12;:10;:12::i;:::-;2284:22;;:6;;;;;;;;;;;:22;;;2276:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3126:1:::1;3106:22;;:8;:22;;;;3098:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:8;3187:38;;3208:6;;;;;;;;;;;3187:38;;;;;;;;;;;;3245:8;3236:6;;:17;;;;;;;;;;;;;;;;;;3017:244:::0;:::o;34217:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;44071:97::-;43546:6;;;;;;;;;;;43532:20;;:10;:20;;;43524:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43659:10:::1;;43640:15;:29;;43632:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44147:13:::2;;44136:8;:24;;;;44071:97::o:0;624:106::-;677:15;712:10;705:17;;624:106;:::o;30763:346::-;30882:1;30865:19;;:5;:19;;;;30857:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30963:1;30944:21;;:7;:21;;;;30936:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31047:6;31017:11;:18;31029:5;31017:18;;;;;;;;;;;;;;;:27;31036:7;31017:27;;;;;;;;;;;;;;;:36;;;;31085:7;31069:32;;31078:5;31069:32;;;31094:6;31069:32;;;;;;;;;;;;;;;;;;30763:346;;;:::o;15319:471::-;15377:7;15627:1;15622;:6;15618:47;;;15652:1;15645:8;;;;15618:47;15677:9;15693:1;15689;:5;15677:17;;15722:1;15717;15713;:5;;;;;;:10;15705:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15781:1;15774:8;;;15319:471;;;;;:::o;16266:132::-;16324:7;16351:39;16355:1;16358;16351:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;16344:46;;16266:132;;;;:::o;14429:136::-;14487:7;14514:43;14518:1;14521;14514:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;14507:50;;14429:136;;;;:::o;26167:321::-;26273:4;26290:36;26300:6;26308:9;26319:6;26290:9;:36::i;:::-;26337:121;26346:6;26354:12;:10;:12::i;:::-;26368:89;26406:6;26368:89;;;;;;;;;;;;;;;;;:11;:19;26380:6;26368:19;;;;;;;;;;;;;;;:33;26388:12;:10;:12::i;:::-;26368:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26337:8;:121::i;:::-;26476:4;26469:11;;26167:321;;;;;:::o;13965:181::-;14023:7;14043:9;14059:1;14055;:5;14043:17;;14084:1;14079;:6;;14071:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14137:1;14130:8;;;13965:181;;;;:::o;33983:179::-;34095:4;;34067:24;34085:5;34067:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:32;;34059:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34127:27;34139:7;34148:5;34127:11;:27::i;:::-;33983:179;;:::o;41013:937::-;41119:6;41109:16;;:6;:16;;;;:30;;;;;41138:1;41129:6;:10;41109:30;41105:838;;;41178:1;41160:20;;:6;:20;;;41156:380;;41249:16;41268:14;:22;41283:6;41268:22;;;;;;;;;;;;;;;;;;;;;;;;;41249:41;;41309:17;41341:1;41329:9;:13;;;:60;;41388:1;41329:60;;;41345:11;:19;41357:6;41345:19;;;;;;;;;;;;;;;:34;41377:1;41365:9;:13;41345:34;;;;;;;;;;;;;;;:40;;;41329:60;41309:80;;41408:17;41438:6;41428:9;:16;41408:36;;41463:57;41480:6;41488:9;41499;41510;41463:16;:57::i;:::-;41156:380;;;;41574:1;41556:20;;:6;:20;;;41552:380;;41645:16;41664:14;:22;41679:6;41664:22;;;;;;;;;;;;;;;;;;;;;;;;;41645:41;;41705:17;41737:1;41725:9;:13;;;:60;;41784:1;41725:60;;;41741:11;:19;41753:6;41741:19;;;;;;;;;;;;;;;:34;41773:1;41761:9;:13;41741:34;;;;;;;;;;;;;;;:40;;;41725:60;41705:80;;41804:17;41834:6;41824:9;:16;41804:36;;41859:57;41876:6;41884:9;41895;41906;41859:16;:57::i;:::-;41552:380;;;;41105:838;41013:937;;;:::o;29907:418::-;30010:1;29991:21;;:7;:21;;;;29983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30063:49;30084:7;30101:1;30105:6;30063:20;:49::i;:::-;30146:68;30169:6;30146:68;;;;;;;;;;;;;;;;;:9;:18;30156:7;30146:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;30125:9;:18;30135:7;30125:18;;;;;;;;;;;;;;;:89;;;;30240:24;30257:6;30240:12;;:16;;:24;;;;:::i;:::-;30225:12;:39;;;;30306:1;30280:37;;30289:7;30280:37;;;30310:6;30280:37;;;;;;;;;;;;;;;;;;29907:418;;:::o;40581:424::-;40672:23;40698:10;:21;40709:9;40698:21;;;;;;;;;;;;;;;;;;;;;;;;;40672:47;;40730:24;40757:20;40767:9;40757;:20::i;:::-;40730:47;;40843:9;40819:10;:21;40830:9;40819:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;40914:9;40870:54;;40897:15;40870:54;;40886:9;40870:54;;;;;;;;;;;;40937:60;40952:15;40969:9;40980:16;40937:14;:60::i;:::-;40581:424;;;;:::o;14868:192::-;14954:7;14987:1;14982;:6;;14990:12;14974:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15014:9;15030:1;15026;:5;15014:17;;15051:1;15044:8;;;14868:192;;;;;:::o;24988:175::-;25074:4;25091:42;25101:12;:10;:12::i;:::-;25115:9;25126:6;25091:9;:42::i;:::-;25151:4;25144:11;;24988:175;;;;:::o;42839:153::-;42884:4;42901:15;42949:9;42938:20;;42977:7;42970:14;;;42839:153;:::o;16894:278::-;16980:7;17012:1;17008;:5;17015:12;17000:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17039:9;17055:1;17051;:5;;;;;;17039:17;;17163:1;17156:8;;;16894:278;;;;;:::o;28377:539::-;28501:1;28483:20;;:6;:20;;;;28475:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28585:1;28564:23;;:9;:23;;;;28556:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28640:47;28661:6;28669:9;28680:6;28640:20;:47::i;:::-;28720:71;28742:6;28720:71;;;;;;;;;;;;;;;;;:9;:17;28730:6;28720:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28700:9;:17;28710:6;28700:17;;;;;;;;;;;;;;;:91;;;;28825:32;28850:6;28825:9;:20;28835:9;28825:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28802:9;:20;28812:9;28802:20;;;;;;;;;;;;;;;:55;;;;28890:9;28873:35;;28882:6;28873:35;;;28901:6;28873:35;;;;;;;;;;;;;;;;;;28377:539;;;:::o;29197:378::-;29300:1;29281:21;;:7;:21;;;;29273:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29351:49;29380:1;29384:7;29393:6;29351:20;:49::i;:::-;29428:24;29445:6;29428:12;;:16;;:24;;;;:::i;:::-;29413:12;:39;;;;29484:30;29507:6;29484:9;:18;29494:7;29484:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29463:9;:18;29473:7;29463:18;;;;;;;;;;;;;;;:51;;;;29551:7;29530:37;;29547:1;29530:37;;;29560:6;29530:37;;;;;;;;;;;;;;;;;;29197:378;;:::o;41958:704::-;42137:18;42158:76;42165:12;42158:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;42137:97;;42266:1;42251:12;:16;;;:85;;;;;42325:11;42271:65;;:11;:22;42283:9;42271:22;;;;;;;;;;;;;;;:40;42309:1;42294:12;:16;42271:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;42251:85;42247:339;;;42402:8;42353:11;:22;42365:9;42353:22;;;;;;;;;;;;;;;:40;42391:1;42376:12;:16;42353:40;;;;;;;;;;;;;;;:46;;:57;;;;42247:339;;;42482:33;;;;;;;;42493:11;42482:33;;;;;;42506:8;42482:33;;;42443:11;:22;42455:9;42443:22;;;;;;;;;;;;;;;:36;42466:12;42443:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42573:1;42558:12;:16;42530:14;:25;42545:9;42530:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;42247:339;42624:9;42603:51;;;42635:8;42645;42603:51;;;;;;;;;;;;;;;;;;;;;;;;41958:704;;;;;:::o;32134:92::-;;;;:::o;42670:161::-;42745:6;42776:5;42772:1;:9;42783:12;42764:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42821:1;42807:16;;42670:161;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://c03d773b156f4b005a11d278a098695349eed573b9ae5d0bd7327a2805e9aa2e
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.