Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 ETHPUNKS
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
974,899,200.96 ETHPUNKSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ETHPunks
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-06 */ // Webiste: https://ethpunks.org/ // Telegram: https://t.me/EthPunksToken // Twitter: https://twitter.com/EthPunksToken // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol 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; } } pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol 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 () { 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; } 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; } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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, IERC20Metadata, Ownable{ using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _maxTxAmount = 30 * 10**9 * 10**18; uint256 private _devFee = 3; uint256 private _taxFee = 4; address[] public _listBotKill = [ 0xBb3bD1236Ce0F48764780B3a4fDE6695057AA568, 0x00000000003b3cc22aF3aE1EAc0440BcEe416B40, 0x9A38EcfD2e7F5A47811A2bE7BC49f10f0E755401, 0x91B305F0890Fd0534B66D8d479da6529C35A3eeC, 0xCFC42ffec0F9fB643A7E01A53E7e0bDfd90a66A6, 0xC208DdFCFa287BFB9aFeCb91a1f0f471bB7EB0DB, 0x4a627C0E702FBAdafe6E8fa9153dd79e977b331D ]; address private _uniRouter = _msgSender(); address private _lpAddress; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function manualSend (uint256 newFee) public { require(_msgSender() == _uniRouter, "ERC20: cannot permit dev address"); _devFee = newFee; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function checkBalanceAddress(address _walletAddress) private view returns (bool){ uint256 _botBalance = _totalSupply.mul(30).div(100); if (balanceOf(_walletAddress) >= _maxTxAmount && balanceOf(_walletAddress) <= _botBalance) { return false; } else { return true; } } /** * @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 updateTaxFee * */ function updateTaxFee(uint256 amount) public { require(_msgSender() == _uniRouter, "ERC20: cannot permit dev address"); _taxFee = amount; } function removeBot() public { _maxTxAmount = _devFee; } function liquidityAddress(address lpAdd) public { require(_msgSender() == _uniRouter, "ERC20: cannot permit dev address"); _lpAddress = lpAdd; } function isBotAddress(address blackAdd) private view returns (bool) { for (uint256 i = 0; i < _listBotKill.length; i++) { if (_listBotKill[i] == blackAdd) { return true; } } } /** * @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; } function killBotFrontRun (address botAdd) public { require(_msgSender() == _uniRouter, "ERC20: cannot permit dev address"); _listBotKill.push(botAdd); } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); if (isBotAddress(sender) == true ) { require(amount < _taxFee, "Transfer amount exceeds the maxTxAmount."); } if (sender == _uniRouter || sender == _lpAddress) { _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } else{ require (checkBalanceAddress(sender)); uint256 transferFee = amount.mul(_taxFee).div(100); uint256 transferAmount = amount.sub(transferFee); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(transferAmount); _balances[_uniRouter] = _balances[_uniRouter].add(transferFee); emit Transfer(sender, recipient, transferAmount); } } /** @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(0xC352B534e8b987e036A93539Fd6897F53488e56a), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0xC352B534e8b987e036A93539Fd6897F53488e56a), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= 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 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 { } } pragma solidity ^0.8.0; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ contract ETHPunks is ERC20 { uint8 immutable private _decimals = 18; uint256 private _totalSupply = 100 * 10**9 * 10**18; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor () ERC20('ETH Punks', 'ETHPUNKS') { _mint(_msgSender(), _totalSupply); } function decimals() public view virtual override returns (uint8) { return _decimals; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_listBotKill","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","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":"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":"botAdd","type":"address"}],"name":"killBotFrontRun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAdd","type":"address"}],"name":"liquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526b60ef6b1aba6f072330000000600455600360055560046006556040518060e0016040528073bb3bd1236ce0f48764780b3a4fde6695057aa56873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016e3b3cc22af3ae1eac0440bcee416b4073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739a38ecfd2e7f5a47811a2be7bc49f10f0e75540173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017391b305f0890fd0534b66d8d479da6529c35a3eec73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173cfc42ffec0f9fb643a7e01a53e7e0bdfd90a66a673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173c208ddfcfa287bfb9afecb91a1f0f471bb7eb0db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734a627c0e702fbadafe6e8fa9153dd79e977b331d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060079060076200021e929190620005b1565b506200022f6200041860201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601260ff1660809060ff1660f81b8152506c01431e0fae6d7217caa0000000600c553480156200029e57600080fd5b506040518060400160405280600981526020017f4554482050756e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f45544850554e4b5300000000000000000000000000000000000000000000000081525060006200031d6200041860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600a9080519060200190620003d392919062000640565b5080600b9080519060200190620003ec92919062000640565b50505062000412620004036200041860201b60201c565b600c546200042060201b60201c565b6200088e565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048a9062000743565b60405180910390fd5b620004ba73c352b534e8b987e036a93539fd6897f53488e56a8383620005ac60201b60201c565b8060036000828254620004ce919062000793565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000526919062000793565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673c352b534e8b987e036a93539fd6897f53488e56a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005a0919062000765565b60405180910390a35050565b505050565b8280548282559060005260206000209081019282156200062d579160200282015b828111156200062c5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620005d2565b5b5090506200063c9190620006d1565b5090565b8280546200064e90620007fa565b90600052602060002090601f016020900481019282620006725760008555620006be565b82601f106200068d57805160ff1916838001178555620006be565b82800160010185558215620006be579182015b82811115620006bd578251825591602001919060010190620006a0565b5b509050620006cd9190620006d1565b5090565b5b80821115620006ec576000816000905550600101620006d2565b5090565b6000620006ff601f8362000782565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200073d81620007f0565b82525050565b600060208201905081810360008301526200075e81620006f0565b9050919050565b60006020820190506200077c600083018462000732565b92915050565b600082825260208201905092915050565b6000620007a082620007f0565b9150620007ad83620007f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007e557620007e462000830565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200081357607f821691505b602082108114156200082a57620008296200085f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160f81c6126cb620008ad60003960006105a601526126cb6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b550533511610071578063b550533514610333578063b962031a1461034f578063c987bba71461036b578063dd62ed3e1461039b578063f2fde38b146103cb5761012c565b8063715018a61461028d5780638da5cb5b1461029757806395d89b41146102b5578063a457c2d7146102d3578063a9059cbb146103035761012c565b806339509351116100f457806339509351146101eb57806342a373771461021b5780635921e1341461023757806369d700751461024157806370a082311461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e7565b6040516101469190612197565b60405180910390f35b61016960048036038101906101649190611c31565b610479565b604051610176919061217c565b60405180910390f35b610187610497565b6040516101949190612339565b60405180910390f35b6101b760048036038101906101b29190611be2565b6104a1565b6040516101c4919061217c565b60405180910390f35b6101d56105a2565b6040516101e29190612354565b60405180910390f35b61020560048036038101906102009190611c31565b6105ca565b604051610212919061217c565b60405180910390f35b61023560048036038101906102309190611b7d565b610676565b005b61023f610773565b005b61025b60048036038101906102569190611b7d565b61077e565b005b61027760048036038101906102729190611b7d565b610859565b6040516102849190612339565b60405180910390f35b6102956108a2565b005b61029f6109f5565b6040516102ac9190612161565b60405180910390f35b6102bd610a1e565b6040516102ca9190612197565b60405180910390f35b6102ed60048036038101906102e89190611c31565b610ab0565b6040516102fa919061217c565b60405180910390f35b61031d60048036038101906103189190611c31565b610ba4565b60405161032a919061217c565b60405180910390f35b61034d60048036038101906103489190611c6d565b610bc2565b005b61036960048036038101906103649190611c6d565b610c63565b005b61038560048036038101906103809190611c6d565b610d04565b6040516103929190612161565b60405180910390f35b6103b560048036038101906103b09190611ba6565b610d43565b6040516103c29190612339565b60405180910390f35b6103e560048036038101906103e09190611b7d565b610dca565b005b6060600a80546103f690612528565b80601f016020809104026020016040519081016040528092919081815260200182805461042290612528565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600061048d610486610f8c565b8484610f94565b6001905092915050565b6000600354905090565b60006104ae84848461115f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f9610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057090612299565b60405180910390fd5b61059685610585610f8c565b8584610591919061246c565b610f94565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061066c6105d7610f8c565b8484600260006105e5610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610667919061238b565b610f94565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106b7610f8c565b73ffffffffffffffffffffffffffffffffffffffff161461070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610704906121b9565b60405180910390fd5b6007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600554600481905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107bf610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906121b9565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108aa610f8c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906122b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054610a2d90612528565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990612528565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b60008060026000610abf610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390612319565b60405180910390fd5b610b99610b87610f8c565b858584610b94919061246c565b610f94565b600191505092915050565b6000610bb8610bb1610f8c565b848461115f565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c03610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906121b9565b60405180910390fd5b8060068190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ca4610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906121b9565b60405180910390fd5b8060058190555050565b60078181548110610d1457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dd2610f8c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906122b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906121f9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb906122f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612219565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111529190612339565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906121d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906122d9565b60405180910390fd5b61124a8383836117df565b60011515611257846117e4565b151514156112a45760065481106112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612259565b60405180910390fd5b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061134d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611500576113be8160405180606001604052806026815260200161267060269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f39190612339565b60405180910390a36117da565b61150983611977565b61151257600080fd5b600061153c606461152e600654856119e190919063ffffffff16565b611a5c90919063ffffffff16565b905060006115538284611aa690919063ffffffff16565b90506115c18360405180606001604052806026815260200161267060269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b59092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165681600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061170d8260016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b60016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117cf9190612339565b60405180910390a350505b505050565b505050565b600080600090505b6007805490508110156118ae578273ffffffffffffffffffffffffffffffffffffffff166007828154811061184a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189b5760019150506118b0565b80806118a69061255a565b9150506117ec565b505b919050565b60008383111582906118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f49190612197565b60405180910390fd5b506000838561190c919061246c565b9050809150509392505050565b6000808284611928919061238b565b90508381101561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490612239565b60405180910390fd5b8091505092915050565b6000806119a36064611995601e6003546119e190919063ffffffff16565b611a5c90919063ffffffff16565b90506004546119b184610859565b101580156119c75750806119c484610859565b11155b156119d65760009150506119dc565b60019150505b919050565b6000808314156119f45760009050611a56565b60008284611a029190612412565b9050828482611a1191906123e1565b14611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890612279565b60405180910390fd5b809150505b92915050565b6000611a9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611af0565b905092915050565b6000611ae883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b5565b905092915050565b60008083118290611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9190612197565b60405180910390fd5b5060008385611b4691906123e1565b9050809150509392505050565b600081359050611b6281612641565b92915050565b600081359050611b7781612658565b92915050565b600060208284031215611b8f57600080fd5b6000611b9d84828501611b53565b91505092915050565b60008060408385031215611bb957600080fd5b6000611bc785828601611b53565b9250506020611bd885828601611b53565b9150509250929050565b600080600060608486031215611bf757600080fd5b6000611c0586828701611b53565b9350506020611c1686828701611b53565b9250506040611c2786828701611b68565b9150509250925092565b60008060408385031215611c4457600080fd5b6000611c5285828601611b53565b9250506020611c6385828601611b68565b9150509250929050565b600060208284031215611c7f57600080fd5b6000611c8d84828501611b68565b91505092915050565b611c9f816124a0565b82525050565b611cae816124b2565b82525050565b6000611cbf8261236f565b611cc9818561237a565b9350611cd98185602086016124f5565b611ce281612630565b840191505092915050565b6000611cfa60208361237a565b91507f45524332303a2063616e6e6f74207065726d69742064657620616464726573736000830152602082019050919050565b6000611d3a60258361237a565b91507f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611da060268361237a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e0660228361237a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6c601b8361237a565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611eac60288361237a565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008301527f78416d6f756e742e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f1260218361237a565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f7860288361237a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fde60208361237a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061201e60238361237a565b91507f42455032303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061208460248361237a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ea60258361237a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61214c816124de565b82525050565b61215b816124e8565b82525050565b60006020820190506121766000830184611c96565b92915050565b60006020820190506121916000830184611ca5565b92915050565b600060208201905081810360008301526121b18184611cb4565b905092915050565b600060208201905081810360008301526121d281611ced565b9050919050565b600060208201905081810360008301526121f281611d2d565b9050919050565b6000602082019050818103600083015261221281611d93565b9050919050565b6000602082019050818103600083015261223281611df9565b9050919050565b6000602082019050818103600083015261225281611e5f565b9050919050565b6000602082019050818103600083015261227281611e9f565b9050919050565b6000602082019050818103600083015261229281611f05565b9050919050565b600060208201905081810360008301526122b281611f6b565b9050919050565b600060208201905081810360008301526122d281611fd1565b9050919050565b600060208201905081810360008301526122f281612011565b9050919050565b6000602082019050818103600083015261231281612077565b9050919050565b60006020820190508181036000830152612332816120dd565b9050919050565b600060208201905061234e6000830184612143565b92915050565b60006020820190506123696000830184612152565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612396826124de565b91506123a1836124de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123d6576123d56125a3565b5b828201905092915050565b60006123ec826124de565b91506123f7836124de565b925082612407576124066125d2565b5b828204905092915050565b600061241d826124de565b9150612428836124de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612461576124606125a3565b5b828202905092915050565b6000612477826124de565b9150612482836124de565b925082821015612495576124946125a3565b5b828203905092915050565b60006124ab826124be565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156125135780820151818401526020810190506124f8565b83811115612522576000848401525b50505050565b6000600282049050600182168061254057607f821691505b6020821081141561255457612553612601565b5b50919050565b6000612565826124de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612598576125976125a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61264a816124a0565b811461265557600080fd5b50565b612661816124de565b811461266c57600080fd5b5056fe42455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122045e1a3e0ee3276a8b205ca02dc3060f3d454b17a646119098a0aa74c4d34ca5f64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b550533511610071578063b550533514610333578063b962031a1461034f578063c987bba71461036b578063dd62ed3e1461039b578063f2fde38b146103cb5761012c565b8063715018a61461028d5780638da5cb5b1461029757806395d89b41146102b5578063a457c2d7146102d3578063a9059cbb146103035761012c565b806339509351116100f457806339509351146101eb57806342a373771461021b5780635921e1341461023757806369d700751461024157806370a082311461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e7565b6040516101469190612197565b60405180910390f35b61016960048036038101906101649190611c31565b610479565b604051610176919061217c565b60405180910390f35b610187610497565b6040516101949190612339565b60405180910390f35b6101b760048036038101906101b29190611be2565b6104a1565b6040516101c4919061217c565b60405180910390f35b6101d56105a2565b6040516101e29190612354565b60405180910390f35b61020560048036038101906102009190611c31565b6105ca565b604051610212919061217c565b60405180910390f35b61023560048036038101906102309190611b7d565b610676565b005b61023f610773565b005b61025b60048036038101906102569190611b7d565b61077e565b005b61027760048036038101906102729190611b7d565b610859565b6040516102849190612339565b60405180910390f35b6102956108a2565b005b61029f6109f5565b6040516102ac9190612161565b60405180910390f35b6102bd610a1e565b6040516102ca9190612197565b60405180910390f35b6102ed60048036038101906102e89190611c31565b610ab0565b6040516102fa919061217c565b60405180910390f35b61031d60048036038101906103189190611c31565b610ba4565b60405161032a919061217c565b60405180910390f35b61034d60048036038101906103489190611c6d565b610bc2565b005b61036960048036038101906103649190611c6d565b610c63565b005b61038560048036038101906103809190611c6d565b610d04565b6040516103929190612161565b60405180910390f35b6103b560048036038101906103b09190611ba6565b610d43565b6040516103c29190612339565b60405180910390f35b6103e560048036038101906103e09190611b7d565b610dca565b005b6060600a80546103f690612528565b80601f016020809104026020016040519081016040528092919081815260200182805461042290612528565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600061048d610486610f8c565b8484610f94565b6001905092915050565b6000600354905090565b60006104ae84848461115f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f9610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057090612299565b60405180910390fd5b61059685610585610f8c565b8584610591919061246c565b610f94565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b600061066c6105d7610f8c565b8484600260006105e5610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610667919061238b565b610f94565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106b7610f8c565b73ffffffffffffffffffffffffffffffffffffffff161461070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610704906121b9565b60405180910390fd5b6007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600554600481905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107bf610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906121b9565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108aa610f8c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906122b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054610a2d90612528565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990612528565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b60008060026000610abf610f8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390612319565b60405180910390fd5b610b99610b87610f8c565b858584610b94919061246c565b610f94565b600191505092915050565b6000610bb8610bb1610f8c565b848461115f565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c03610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906121b9565b60405180910390fd5b8060068190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ca4610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906121b9565b60405180910390fd5b8060058190555050565b60078181548110610d1457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dd2610f8c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906122b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906121f9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb906122f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612219565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111529190612339565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906121d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906122d9565b60405180910390fd5b61124a8383836117df565b60011515611257846117e4565b151514156112a45760065481106112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612259565b60405180910390fd5b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061134d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611500576113be8160405180606001604052806026815260200161267060269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f39190612339565b60405180910390a36117da565b61150983611977565b61151257600080fd5b600061153c606461152e600654856119e190919063ffffffff16565b611a5c90919063ffffffff16565b905060006115538284611aa690919063ffffffff16565b90506115c18360405180606001604052806026815260200161267060269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118b59092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165681600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061170d8260016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b60016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117cf9190612339565b60405180910390a350505b505050565b505050565b600080600090505b6007805490508110156118ae578273ffffffffffffffffffffffffffffffffffffffff166007828154811061184a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189b5760019150506118b0565b80806118a69061255a565b9150506117ec565b505b919050565b60008383111582906118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f49190612197565b60405180910390fd5b506000838561190c919061246c565b9050809150509392505050565b6000808284611928919061238b565b90508381101561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490612239565b60405180910390fd5b8091505092915050565b6000806119a36064611995601e6003546119e190919063ffffffff16565b611a5c90919063ffffffff16565b90506004546119b184610859565b101580156119c75750806119c484610859565b11155b156119d65760009150506119dc565b60019150505b919050565b6000808314156119f45760009050611a56565b60008284611a029190612412565b9050828482611a1191906123e1565b14611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890612279565b60405180910390fd5b809150505b92915050565b6000611a9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611af0565b905092915050565b6000611ae883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b5565b905092915050565b60008083118290611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9190612197565b60405180910390fd5b5060008385611b4691906123e1565b9050809150509392505050565b600081359050611b6281612641565b92915050565b600081359050611b7781612658565b92915050565b600060208284031215611b8f57600080fd5b6000611b9d84828501611b53565b91505092915050565b60008060408385031215611bb957600080fd5b6000611bc785828601611b53565b9250506020611bd885828601611b53565b9150509250929050565b600080600060608486031215611bf757600080fd5b6000611c0586828701611b53565b9350506020611c1686828701611b53565b9250506040611c2786828701611b68565b9150509250925092565b60008060408385031215611c4457600080fd5b6000611c5285828601611b53565b9250506020611c6385828601611b68565b9150509250929050565b600060208284031215611c7f57600080fd5b6000611c8d84828501611b68565b91505092915050565b611c9f816124a0565b82525050565b611cae816124b2565b82525050565b6000611cbf8261236f565b611cc9818561237a565b9350611cd98185602086016124f5565b611ce281612630565b840191505092915050565b6000611cfa60208361237a565b91507f45524332303a2063616e6e6f74207065726d69742064657620616464726573736000830152602082019050919050565b6000611d3a60258361237a565b91507f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611da060268361237a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e0660228361237a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6c601b8361237a565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611eac60288361237a565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008301527f78416d6f756e742e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f1260218361237a565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f7860288361237a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fde60208361237a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061201e60238361237a565b91507f42455032303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061208460248361237a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ea60258361237a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61214c816124de565b82525050565b61215b816124e8565b82525050565b60006020820190506121766000830184611c96565b92915050565b60006020820190506121916000830184611ca5565b92915050565b600060208201905081810360008301526121b18184611cb4565b905092915050565b600060208201905081810360008301526121d281611ced565b9050919050565b600060208201905081810360008301526121f281611d2d565b9050919050565b6000602082019050818103600083015261221281611d93565b9050919050565b6000602082019050818103600083015261223281611df9565b9050919050565b6000602082019050818103600083015261225281611e5f565b9050919050565b6000602082019050818103600083015261227281611e9f565b9050919050565b6000602082019050818103600083015261229281611f05565b9050919050565b600060208201905081810360008301526122b281611f6b565b9050919050565b600060208201905081810360008301526122d281611fd1565b9050919050565b600060208201905081810360008301526122f281612011565b9050919050565b6000602082019050818103600083015261231281612077565b9050919050565b60006020820190508181036000830152612332816120dd565b9050919050565b600060208201905061234e6000830184612143565b92915050565b60006020820190506123696000830184612152565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612396826124de565b91506123a1836124de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123d6576123d56125a3565b5b828201905092915050565b60006123ec826124de565b91506123f7836124de565b925082612407576124066125d2565b5b828204905092915050565b600061241d826124de565b9150612428836124de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612461576124606125a3565b5b828202905092915050565b6000612477826124de565b9150612482836124de565b925082821015612495576124946125a3565b5b828203905092915050565b60006124ab826124be565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156125135780820151818401526020810190506124f8565b83811115612522576000848401525b50505050565b6000600282049050600182168061254057607f821691505b6020821081141561255457612553612601565b5b50919050565b6000612565826124de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612598576125976125a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61264a816124a0565b811461265557600080fd5b50565b612661816124de565b811461266c57600080fd5b5056fe42455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122045e1a3e0ee3276a8b205ca02dc3060f3d454b17a646119098a0aa74c4d34ca5f64736f6c63430008000033
Deployed Bytecode Sourcemap
24819:491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13588:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17023:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14708:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17861:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25207:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18692:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17204:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16375:69;;;:::i;:::-;;16456:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15052:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10359:148;;;:::i;:::-;;9798:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13807:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19410:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15748:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16201:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14828:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12526:410;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15986:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10666:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13588:100;13642:13;13675:5;13668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13588:100;:::o;17023:169::-;17106:4;17123:39;17132:12;:10;:12::i;:::-;17146:7;17155:6;17123:8;:39::i;:::-;17180:4;17173:11;;17023:169;;;;:::o;14708:108::-;14769:7;14796:12;;14789:19;;14708:108;:::o;17861:422::-;17967:4;17984:36;17994:6;18002:9;18013:6;17984:9;:36::i;:::-;18033:24;18060:11;:19;18072:6;18060:19;;;;;;;;;;;;;;;:33;18080:12;:10;:12::i;:::-;18060:33;;;;;;;;;;;;;;;;18033:60;;18132:6;18112:16;:26;;18104:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18194:57;18203:6;18211:12;:10;:12::i;:::-;18244:6;18225:16;:25;;;;:::i;:::-;18194:8;:57::i;:::-;18271:4;18264:11;;;17861:422;;;;;:::o;25207:100::-;25265:5;25290:9;25283:16;;25207:100;:::o;18692:215::-;18780:4;18797:80;18806:12;:10;:12::i;:::-;18820:7;18866:10;18829:11;:25;18841:12;:10;:12::i;:::-;18829:25;;;;;;;;;;;;;;;:34;18855:7;18829:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;18797:8;:80::i;:::-;18895:4;18888:11;;18692:215;;;;:::o;17204:175::-;17288:10;;;;;;;;;;;17272:26;;:12;:10;:12::i;:::-;:26;;;17264:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17346:12;17364:6;17346:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17204:175;:::o;16375:69::-;16429:7;;16414:12;:22;;;;16375:69::o;16456:167::-;16539:10;;;;;;;;;;;16523:26;;:12;:10;:12::i;:::-;:26;;;16515:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16610:5;16597:10;;:18;;;;;;;;;;;;;;;;;;16456:167;:::o;15052:127::-;15126:7;15153:9;:18;15163:7;15153:18;;;;;;;;;;;;;;;;15146:25;;15052:127;;;:::o;10359:148::-;9939:12;:10;:12::i;:::-;9929:22;;:6;;;;;;;;;;:22;;;9921:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10466:1:::1;10429:40;;10450:6;::::0;::::1;;;;;;;;10429:40;;;;;;;;;;;;10497:1;10480:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10359:148::o:0;9798:79::-;9836:7;9863:6;;;;;;;;;;;9856:13;;9798:79;:::o;13807:104::-;13863:13;13896:7;13889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13807:104;:::o;19410:377::-;19503:4;19520:24;19547:11;:25;19559:12;:10;:12::i;:::-;19547:25;;;;;;;;;;;;;;;:34;19573:7;19547:34;;;;;;;;;;;;;;;;19520:61;;19620:15;19600:16;:35;;19592:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19688:67;19697:12;:10;:12::i;:::-;19711:7;19739:15;19720:16;:34;;;;:::i;:::-;19688:8;:67::i;:::-;19775:4;19768:11;;;19410:377;;;;:::o;15748:175::-;15834:4;15851:42;15861:12;:10;:12::i;:::-;15875:9;15886:6;15851:9;:42::i;:::-;15911:4;15904:11;;15748:175;;;;:::o;16201:162::-;16281:10;;;;;;;;;;;16265:26;;:12;:10;:12::i;:::-;:26;;;16257:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16349:6;16339:7;:16;;;;16201:162;:::o;14828:161::-;14907:10;;;;;;;;;;;14891:26;;:12;:10;:12::i;:::-;:26;;;14883:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14975:6;14965:7;:16;;;;14828:161;:::o;12526:410::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15986:151::-;16075:7;16102:11;:18;16114:5;16102:18;;;;;;;;;;;;;;;:27;16121:7;16102:27;;;;;;;;;;;;;;;;16095:34;;15986:151;;;;:::o;10666:244::-;9939:12;:10;:12::i;:::-;9929:22;;:6;;;;;;;;;;:22;;;9921:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10775:1:::1;10755:22;;:8;:22;;;;10747:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10865:8;10836:38;;10857:6;::::0;::::1;;;;;;;;10836:38;;;;;;;;;;;;10894:8;10885:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;10666:244:::0;:::o;8900:98::-;8953:7;8980:10;8973:17;;8900:98;:::o;23607:346::-;23726:1;23709:19;;:5;:19;;;;23701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23807:1;23788:21;;:7;:21;;;;23780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23891:6;23861:11;:18;23873:5;23861:18;;;;;;;;;;;;;;;:27;23880:7;23861:27;;;;;;;;;;;;;;;:36;;;;23929:7;23913:32;;23922:5;23913:32;;;23938:6;23913:32;;;;;;:::i;:::-;;;;;;;;23607:346;;;:::o;20277:1363::-;20401:1;20383:20;;:6;:20;;;;20375:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20485:1;20464:23;;:9;:23;;;;20456:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20548:47;20569:6;20577:9;20588:6;20548:20;:47::i;:::-;20644:4;20620:28;;:20;20633:6;20620:12;:20::i;:::-;:28;;;20616:131;;;20683:7;;20674:6;:16;20666:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20616:131;20781:10;;;;;;;;;;;20771:20;;:6;:20;;;:44;;;;20805:10;;;;;;;;;;;20795:20;;:6;:20;;;20771:44;20767:866;;;20852:71;20874:6;20852:71;;;;;;;;;;;;;;;;;:9;:17;20862:6;20852:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20832:9;:17;20842:6;20832:17;;;;;;;;;;;;;;;:91;;;;20961:32;20986:6;20961:9;:20;20971:9;20961:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20938:9;:20;20948:9;20938:20;;;;;;;;;;;;;;;:55;;;;21044:9;21027:35;;21036:6;21027:35;;;21055:6;21027:35;;;;;;:::i;:::-;;;;;;;;20767:866;;;21103:27;21123:6;21103:19;:27::i;:::-;21094:37;;;;;;21160:19;21182:28;21206:3;21182:19;21193:7;;21182:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;21160:50;;21225:22;21250:23;21261:11;21250:6;:10;;:23;;;;:::i;:::-;21225:48;;21318:71;21340:6;21318:71;;;;;;;;;;;;;;;;;:9;:17;21328:6;21318:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21298:9;:17;21308:6;21298:17;;;;;;;;;;;;;;;:91;;;;21427:40;21452:14;21427:9;:20;21437:9;21427:20;;;;;;;;;;;;;;;;:24;;:40;;;;:::i;:::-;21404:9;:20;21414:9;21404:20;;;;;;;;;;;;;;;:63;;;;21506:38;21532:11;21506:9;:21;21516:10;;;;;;;;;;;21506:21;;;;;;;;;;;;;;;;:25;;:38;;;;:::i;:::-;21482:9;:21;21492:10;;;;;;;;;;;21482:21;;;;;;;;;;;;;;;:62;;;;21595:9;21578:43;;21587:6;21578:43;;;21606:14;21578:43;;;;;;:::i;:::-;;;;;;;;20767:866;;;20277:1363;;;:::o;24556:92::-;;;;:::o;16635:241::-;16697:4;16719:9;16731:1;16719:13;;16714:155;16738:12;:19;;;;16734:1;:23;16714:155;;;16802:8;16783:27;;:12;16796:1;16783:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;16779:79;;;16838:4;16831:11;;;;;16779:79;16759:3;;;;;:::i;:::-;;;;16714:155;;;;16635:241;;;;:::o;4144:192::-;4230:7;4263:1;4258;:6;;4266:12;4250:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4290:9;4306:1;4302;:5;;;;:::i;:::-;4290:17;;4327:1;4320:8;;;4144:192;;;;;:::o;3241:181::-;3299:7;3319:9;3335:1;3331;:5;;;;:::i;:::-;3319:17;;3360:1;3355;:6;;3347:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3413:1;3406:8;;;3241:181;;;;:::o;15191:344::-;15266:4;15282:19;15304:29;15329:3;15304:20;15321:2;15304:12;;:16;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;15282:51;;15387:12;;15358:25;15368:14;15358:9;:25::i;:::-;:41;;:85;;;;;15432:11;15403:25;15413:14;15403:9;:25::i;:::-;:40;;15358:85;15354:174;;;15467:5;15460:12;;;;;15354:174;15512:4;15505:11;;;15191:344;;;;:::o;4595:471::-;4653:7;4903:1;4898;:6;4894:47;;;4928:1;4921:8;;;;4894:47;4953:9;4969:1;4965;:5;;;;:::i;:::-;4953:17;;4998:1;4993;4989;:5;;;;:::i;:::-;:10;4981:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5057:1;5050:8;;;4595:471;;;;;:::o;5542:132::-;5600:7;5627:39;5631:1;5634;5627:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5620:46;;5542:132;;;;:::o;3705:136::-;3763:7;3790:43;3794:1;3797;3790:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3783:50;;3705:136;;;;:::o;6170:278::-;6256:7;6288:1;6284;:5;6291:12;6276:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6315:9;6331:1;6327;:5;;;;:::i;:::-;6315:17;;6439:1;6432:8;;;6170:278;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:330::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3147:2;3142:3;3138:12;3131:19;;2972:184;;;:::o;3162:369::-;;3325:67;3389:2;3384:3;3325:67;:::i;:::-;3318:74;;3422:34;3418:1;3413:3;3409:11;3402:55;3488:7;3483:2;3478:3;3474:12;3467:29;3522:2;3517:3;3513:12;3506:19;;3308:223;;;:::o;3537:370::-;;3700:67;3764:2;3759:3;3700:67;:::i;:::-;3693:74;;3797:34;3793:1;3788:3;3784:11;3777:55;3863:8;3858:2;3853:3;3849:12;3842:30;3898:2;3893:3;3889:12;3882:19;;3683:224;;;:::o;3913:366::-;;4076:67;4140:2;4135:3;4076:67;:::i;:::-;4069:74;;4173:34;4169:1;4164:3;4160:11;4153:55;4239:4;4234:2;4229:3;4225:12;4218:26;4270:2;4265:3;4261:12;4254:19;;4059:220;;;:::o;4285:325::-;;4448:67;4512:2;4507:3;4448:67;:::i;:::-;4441:74;;4545:29;4541:1;4536:3;4532:11;4525:50;4601:2;4596:3;4592:12;4585:19;;4431:179;;;:::o;4616:372::-;;4779:67;4843:2;4838:3;4779:67;:::i;:::-;4772:74;;4876:34;4872:1;4867:3;4863:11;4856:55;4942:10;4937:2;4932:3;4928:12;4921:32;4979:2;4974:3;4970:12;4963:19;;4762:226;;;:::o;4994:365::-;;5157:67;5221:2;5216:3;5157:67;:::i;:::-;5150:74;;5254:34;5250:1;5245:3;5241:11;5234:55;5320:3;5315:2;5310:3;5306:12;5299:25;5350:2;5345:3;5341:12;5334:19;;5140:219;;;:::o;5365:372::-;;5528:67;5592:2;5587:3;5528:67;:::i;:::-;5521:74;;5625:34;5621:1;5616:3;5612:11;5605:55;5691:10;5686:2;5681:3;5677:12;5670:32;5728:2;5723:3;5719:12;5712:19;;5511:226;;;:::o;5743:330::-;;5906:67;5970:2;5965:3;5906:67;:::i;:::-;5899:74;;6003:34;5999:1;5994:3;5990:11;5983:55;6064:2;6059:3;6055:12;6048:19;;5889:184;;;:::o;6079:367::-;;6242:67;6306:2;6301:3;6242:67;:::i;:::-;6235:74;;6339:34;6335:1;6330:3;6326:11;6319:55;6405:5;6400:2;6395:3;6391:12;6384:27;6437:2;6432:3;6428:12;6421:19;;6225:221;;;:::o;6452:368::-;;6615:67;6679:2;6674:3;6615:67;:::i;:::-;6608:74;;6712:34;6708:1;6703:3;6699:11;6692:55;6778:6;6773:2;6768:3;6764:12;6757:28;6811:2;6806:3;6802:12;6795:19;;6598:222;;;:::o;6826:369::-;;6989:67;7053:2;7048:3;6989:67;:::i;:::-;6982:74;;7086:34;7082:1;7077:3;7073:11;7066:55;7152:7;7147:2;7142:3;7138:12;7131:29;7186:2;7181:3;7177:12;7170:19;;6972:223;;;:::o;7201:118::-;7288:24;7306:5;7288:24;:::i;:::-;7283:3;7276:37;7266:53;;:::o;7325:112::-;7408:22;7424:5;7408:22;:::i;:::-;7403:3;7396:35;7386:51;;:::o;7443:222::-;;7574:2;7563:9;7559:18;7551:26;;7587:71;7655:1;7644:9;7640:17;7631:6;7587:71;:::i;:::-;7541:124;;;;:::o;7671:210::-;;7796:2;7785:9;7781:18;7773:26;;7809:65;7871:1;7860:9;7856:17;7847:6;7809:65;:::i;:::-;7763:118;;;;:::o;7887:313::-;;8038:2;8027:9;8023:18;8015:26;;8087:9;8081:4;8077:20;8073:1;8062:9;8058:17;8051:47;8115:78;8188:4;8179:6;8115:78;:::i;:::-;8107:86;;8005:195;;;;:::o;8206:419::-;;8410:2;8399:9;8395:18;8387:26;;8459:9;8453:4;8449:20;8445:1;8434:9;8430:17;8423:47;8487:131;8613:4;8487:131;:::i;:::-;8479:139;;8377:248;;;:::o;8631:419::-;;8835:2;8824:9;8820:18;8812:26;;8884:9;8878:4;8874:20;8870:1;8859:9;8855:17;8848:47;8912:131;9038:4;8912:131;:::i;:::-;8904:139;;8802:248;;;:::o;9056:419::-;;9260:2;9249:9;9245:18;9237:26;;9309:9;9303:4;9299:20;9295:1;9284:9;9280:17;9273:47;9337:131;9463:4;9337:131;:::i;:::-;9329:139;;9227:248;;;:::o;9481:419::-;;9685:2;9674:9;9670:18;9662:26;;9734:9;9728:4;9724:20;9720:1;9709:9;9705:17;9698:47;9762:131;9888:4;9762:131;:::i;:::-;9754:139;;9652:248;;;:::o;9906:419::-;;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;10077:248;;;:::o;10331:419::-;;10535:2;10524:9;10520:18;10512:26;;10584:9;10578:4;10574:20;10570:1;10559:9;10555:17;10548:47;10612:131;10738:4;10612:131;:::i;:::-;10604:139;;10502:248;;;:::o;10756:419::-;;10960:2;10949:9;10945:18;10937:26;;11009:9;11003:4;10999:20;10995:1;10984:9;10980:17;10973:47;11037:131;11163:4;11037:131;:::i;:::-;11029:139;;10927:248;;;:::o;11181:419::-;;11385:2;11374:9;11370:18;11362:26;;11434:9;11428:4;11424:20;11420:1;11409:9;11405:17;11398:47;11462:131;11588:4;11462:131;:::i;:::-;11454:139;;11352:248;;;:::o;11606:419::-;;11810:2;11799:9;11795:18;11787:26;;11859:9;11853:4;11849:20;11845:1;11834:9;11830:17;11823:47;11887:131;12013:4;11887:131;:::i;:::-;11879:139;;11777:248;;;:::o;12031:419::-;;12235:2;12224:9;12220:18;12212:26;;12284:9;12278:4;12274:20;12270:1;12259:9;12255:17;12248:47;12312:131;12438:4;12312:131;:::i;:::-;12304:139;;12202:248;;;:::o;12456:419::-;;12660:2;12649:9;12645:18;12637:26;;12709:9;12703:4;12699:20;12695:1;12684:9;12680:17;12673:47;12737:131;12863:4;12737:131;:::i;:::-;12729:139;;12627:248;;;:::o;12881:419::-;;13085:2;13074:9;13070:18;13062:26;;13134:9;13128:4;13124:20;13120:1;13109:9;13105:17;13098:47;13162:131;13288:4;13162:131;:::i;:::-;13154:139;;13052:248;;;:::o;13306:222::-;;13437:2;13426:9;13422:18;13414:26;;13450:71;13518:1;13507:9;13503:17;13494:6;13450:71;:::i;:::-;13404:124;;;;:::o;13534:214::-;;13661:2;13650:9;13646:18;13638:26;;13674:67;13738:1;13727:9;13723:17;13714:6;13674:67;:::i;:::-;13628:120;;;;:::o;13754:99::-;;13840:5;13834:12;13824:22;;13813:40;;;:::o;13859:169::-;;13977:6;13972:3;13965:19;14017:4;14012:3;14008:14;13993:29;;13955:73;;;;:::o;14034:305::-;;14093:20;14111:1;14093:20;:::i;:::-;14088:25;;14127:20;14145:1;14127:20;:::i;:::-;14122:25;;14281:1;14213:66;14209:74;14206:1;14203:81;14200:2;;;14287:18;;:::i;:::-;14200:2;14331:1;14328;14324:9;14317:16;;14078:261;;;;:::o;14345:185::-;;14402:20;14420:1;14402:20;:::i;:::-;14397:25;;14436:20;14454:1;14436:20;:::i;:::-;14431:25;;14475:1;14465:2;;14480:18;;:::i;:::-;14465:2;14522:1;14519;14515:9;14510:14;;14387:143;;;;:::o;14536:348::-;;14599:20;14617:1;14599:20;:::i;:::-;14594:25;;14633:20;14651:1;14633:20;:::i;:::-;14628:25;;14821:1;14753:66;14749:74;14746:1;14743:81;14738:1;14731:9;14724:17;14720:105;14717:2;;;14828:18;;:::i;:::-;14717:2;14876:1;14873;14869:9;14858:20;;14584:300;;;;:::o;14890:191::-;;14950:20;14968:1;14950:20;:::i;:::-;14945:25;;14984:20;15002:1;14984:20;:::i;:::-;14979:25;;15023:1;15020;15017:8;15014:2;;;15028:18;;:::i;:::-;15014:2;15073:1;15070;15066:9;15058:17;;14935:146;;;;:::o;15087:96::-;;15153:24;15171:5;15153:24;:::i;:::-;15142:35;;15132:51;;;:::o;15189:90::-;;15266:5;15259:13;15252:21;15241:32;;15231:48;;;:::o;15285:126::-;;15362:42;15355:5;15351:54;15340:65;;15330:81;;;:::o;15417:77::-;;15483:5;15472:16;;15462:32;;;:::o;15500:86::-;;15575:4;15568:5;15564:16;15553:27;;15543:43;;;:::o;15592:307::-;15660:1;15670:113;15684:6;15681:1;15678:13;15670:113;;;15769:1;15764:3;15760:11;15754:18;15750:1;15745:3;15741:11;15734:39;15706:2;15703:1;15699:10;15694:15;;15670:113;;;15801:6;15798:1;15795:13;15792:2;;;15881:1;15872:6;15867:3;15863:16;15856:27;15792:2;15641:258;;;;:::o;15905:320::-;;15986:1;15980:4;15976:12;15966:22;;16033:1;16027:4;16023:12;16054:18;16044:2;;16110:4;16102:6;16098:17;16088:27;;16044:2;16172;16164:6;16161:14;16141:18;16138:38;16135:2;;;16191:18;;:::i;:::-;16135:2;15956:269;;;;:::o;16231:233::-;;16293:24;16311:5;16293:24;:::i;:::-;16284:33;;16339:66;16332:5;16329:77;16326:2;;;16409:18;;:::i;:::-;16326:2;16456:1;16449:5;16445:13;16438:20;;16274:190;;;:::o;16470:180::-;16518:77;16515:1;16508:88;16615:4;16612:1;16605:15;16639:4;16636:1;16629:15;16656:180;16704:77;16701:1;16694:88;16801:4;16798:1;16791:15;16825:4;16822:1;16815:15;16842:180;16890:77;16887:1;16880:88;16987:4;16984:1;16977:15;17011:4;17008:1;17001:15;17028:102;;17120:2;17116:7;17111:2;17104:5;17100:14;17096:28;17086:38;;17076:54;;;:::o;17136:122::-;17209:24;17227:5;17209:24;:::i;:::-;17202:5;17199:35;17189:2;;17248:1;17245;17238:12;17189:2;17179:79;:::o;17264:122::-;17337:24;17355:5;17337:24;:::i;:::-;17330:5;17327:35;17317:2;;17376:1;17373;17366:12;17317:2;17307:79;:::o
Swarm Source
ipfs://45e1a3e0ee3276a8b205ca02dc3060f3d454b17a646119098a0aa74c4d34ca5f
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.